0
votes
1answer
21 views

YII migrations and bu default values for table columns

public function up(){ $this->createTable('POST', array( 'id' => 'pk', 'isremoved' => 'integer NOT NULL', 'removaldate' => 'timestamp NULL', ...
3
votes
1answer
142 views

Laravel Migration add field after data is in table?

I have a migration called CreateItemsTable; I ran that, I have items in that table, now I need to add a new field to the table. I can't just add a field to the migration file and migrate:refresh ...
0
votes
0answers
64 views

Maximum execution time of ___ seconds exceeded Drupal 7 in batch

I have a problem with Drupal 7, only default language used. Migrating one non Drupal forum db to Drupal. As forum has a lot of records in db, doing everything in batches. But here comes a problem. ...
0
votes
1answer
102 views

FuelPHP - php oil refine migrate PDO Error

I'm trying to setup my fuelphp on ubuntu12, nginx in a development environment. Everything was working for me except when I try to do php oil refine migrate. I was faced with the following error ...
1
vote
1answer
211 views

Laravel Migrations - Table Prefix Issue

I'm building a dummy site to test Laravel 3.x. I'm creating my site migrations right now. Everything was doing just fine until the following error showed up: SQLSTATE[42s02]: Base table or view not ...
0
votes
1answer
35 views

Migrating OpenCart problems

I just migrated my OpenCart store to a different server. I have changed the config.php files from the root and admin folders. I can access the main page and the admin back-end, but when I go to a ...
-2
votes
1answer
74 views

Workflow migrations phalcon

Time ago I worked with yii framework. In yii framework with yiic shell I make migration file and write actions for db: create table, alter table, create index and any actions with another (no db). ...
4
votes
1answer
58 views

Upgrading from PHP 5.2 to PHP 5.3 - Backward Incompatible Changes - How to detect easily?

I am looking to upgrade a large PHP website from 5.2 to 5.3 and potentially beyond afterwards. The inherited codebase I am working on is very large, 800,000+ lines of code, and for the most part ...
0
votes
0answers
46 views

CakePHP migrations: difference between individual migration files, schema.php, map.php

Some of our code creates or destroys index tables as needed but most of the time we use migrations to keep db changes in sync from localhost, to staging and then production. Cake's migration ...
0
votes
2answers
229 views

Create table in migration with ENGINE clause fails

I am trying to do a migration using Yii and create new table in up() method. It works fine as long as I don't add the ENGINE=InnoDB clause. In that case - it gives me an error near ENGINE. public ...
0
votes
2answers
62 views

Easiest way to move data to other database

I have two versions of my blog: the 1st is written in PHP and uses MySQL, but the 2nd, the new one, is written in Python and uses Postgres. My goal is to move data from one to other. Table names and ...
0
votes
1answer
79 views

filter products data in magento

I need to migrate only active products i am using the below code to get all product collection Mage::getModel('catalog/product')->getCollection(); can anybody tell me how can i filter only ...
1
vote
1answer
91 views

PHP version update from 4.4 to 5.3.6 broke site

Somehow when moving a site to a newer server, the php code broke. We did have it tested with a temporary site first, but it still broke. All of the dynamic links for listings no longer work. I have a ...
-1
votes
1answer
99 views

Cakephp 1.3 appfog database configuration

i just moving my blog to appfog. I am currently using cakephp 1.3.x. I know I need to upgrade, I am already working on it. But in the meantime, I would like to get my blog working. I am not able to ...
1
vote
1answer
411 views

Laravel setup of migrations using Artisan is failing

I am trying to set up migrations for the first time and when I run php artisan migrate:install from within the root folder of my project I get the following SQLSTATE error: SQLSTATE[HY000] ...
1
vote
3answers
88 views

Can I keep hashed passwords after a migration to a new databse structure?

I made a website time ago. Raw php with SQL. Now I am doing a new version with CakePHP, this implies a lot of conventions that I want to follow, that is, I'd like to keep things the cakePHP way as ...
0
votes
0answers
42 views

Is it possible to gradually migrate from Windows to Linux for an application?

I would appreciate some sanity checking and comments on a plan. I have a very successful business site that has been built (unprofessionally) in Classic ASP accessing an MS SQL db, hosted on a third ...
0
votes
1answer
171 views

FuelPHP: Create Table When Using 'oil generate model' Confusion

I am totally new to FuelPHP, ORM and migrations in general so sorry if I come accross like a noob but I've been struggling with this for a few hours now so I thought I'd ask for help. I think I'm ...
2
votes
2answers
127 views

Tool or approach for PHP product migration from PHP 5.2 to PHP 5.4

Existing product developed in core PHP is built in PHP 5.2 and now we want to migrate the product to PHP 5.4. CodeSniffer can detect compatibility for version and generate report with warnings and ...
2
votes
4answers
166 views

Database sync or migration tool

It is really a pain keeping production and development databases in sync manually. Is there any tool that allows one to keep the two databases in sync? Something like the amazing Laravel framework's ...
1
vote
0answers
60 views

Display symfony2 pages in raw PHP

I'm having a problem with migration, raw php to Symfony2. As it seems quite large application I've decided to partially migrate to SF2. I'm trying to include SF2 pages in my Raw PHP. More like ...
2
votes
4answers
611 views

Generating Migration from existing Databse in Yii or Laravel

I have a question. Im working on a project that has a fairly complex database (150+ tables). In order to be able to maintain changes ive decided to add migrations. preferably with yii or laravel. ...
7
votes
2answers
3k views

Step by step migration from Zend Framework 1 to 2

I have to migrate an application from Zend Framework 1.12.0 to version 2. There seem to be no migration guides yet. I have already studied ZF2 coding conventions and I adopted dependency injection ...
-3
votes
1answer
88 views

How long will it take to get started with Aptana with a php/ajax site? [closed]

I have a pretty big site with javascript, php and AJAX calls and its made in Dreamweaver. I want to get started with Aptana, but I have no idea where to start, and the guides I've seen don't help ...
0
votes
3answers
74 views

How to migrate from Kohana 2 (placed into project folder) to Kohana 3 (installed is a module) in Ubuntu 12.10?

After updating to Ubuntu 12.10 I found that Kohana 2 don't work. I see only blank pages with 200 OK status (ob_end_flush in system/core/Kohana.php don't calling). So, is it possible to migrate to ...
0
votes
1answer
119 views

CodeIgniter White Screen after migrating from DSO to FCGI

I've encountered a problem where codeigniter returns a whitescreen to me. Note: this was working fine when I was still in DSO. Note: I have tried changing the value of $config['uri_protocol'] ...
2
votes
2answers
840 views

migrations with yii

I am trying to install a user module in my yii based webapp. I have to migrate the files in my webapp/protected/modules/user/migrations I run yiic migrate --migrationPath=user.migrations as it ...
4
votes
3answers
2k views

Populating a database in a Laravel migration file

I'm just learning Laravel, and have a working migration file creating a users table. I am trying to populate a user record as part of the migration: public function up() { Schema::create('users', ...
0
votes
2answers
320 views

CodeIgniter - ci_sessions migrations

I was wondering if someone can help out. Im just getting into using migrations with CodeIgniter, but im having trouble trying to figure out how to convert SQL to the migrations. Is there anyone out ...
3
votes
1answer
265 views

Wordpress untraceable white screen of death on migration

My problem was, after migrating a website to another server using backup buddy, I came upon a the white screen of death. I turned on debug mode in Wordpress and still no errors, just white screen. ...
0
votes
0answers
86 views

Migration to the new mysqlnd [closed]

Since I upgraded to the newest PHP version and went through many of the changes that were made, on has to wonder if now mysqli is the better alternative instead of PDO, since PDO does not have support ...
0
votes
2answers
114 views

Provider switched from PHP4 to PHP5, gallery wont load picture [closed]

My provider switched, so now my PHP code doesn't load the main pictures in gallery. It's bound on MySQL. $Zeilen_pro_Seite = 1; if($Anfangsposition == "") { $Anfangsposition=0; } $start = ...
1
vote
1answer
154 views

CakeDC Migrations plugin cannot initialize schema_migrations table.

I'm trying to use https://github.com/CakeDC/migrations plugin in my CakePHP app. After installing, the first step is to run Console/cake Migrations.migration -p Migrations to initialize the ...
1
vote
0answers
32 views

IPB v3 version of ipsclass->txt_truncate()

I am currently migrating an old IPB v2.x to a newer 3.x, however, I couldn't find the exact equivalent of this old syntax: $this->ipsclass->txt_truncate();
8
votes
2answers
577 views

Migrating legacy users to symfony2

I'm moving from expressionengine to symfony2 and I'm looking for the best way to migrate the user passwords. The goal is to let legacy users log in with their existing credentials, while passwords for ...
3
votes
1answer
47 views

Rails/PHP Coexistence

I currently have an application that is built w/ PHP/MySQL using the Laravel Framework. I want to migrate this application over to Ruby on Rails but I total teardown/rebuild is not feasible. I am ...
1
vote
4answers
3k views

Prestashop 1.5 - Import huge data(categories, products, customers, addresses) from another prestashop 1.4 installation,

i have prestashop 1.5 installed on server A, on server B there is prestashop 1.4 installed with thousands of products and database size is about 500mb. I want to import all those products, categories, ...
1
vote
1answer
180 views

Why do certain MySQL fields want a default value now?

I am copying a system from an old server to a new(er) one for a company, I had no involvement with the development of the previous system. They have a current (complex) web page that inserts records ...
4
votes
1answer
641 views

PDO - passing a field name as a variable

I'm just migrating my code from mysql_query style commands to PDO style and I ran into a problem. THe old code looked like this : $query_list_menu = "SELECT ".$_GET['section_name']." from ...
0
votes
1answer
192 views

How to Modify a column of a table with Propel Migration and Symfony

I've got a huge problem with a propel migration in a symfony project. For the very first time, I tried to alter a column of table, but I always got the following error on CLI: $ php symfony propel:up ...
0
votes
1answer
197 views

How Integrate existing wordpress blog into a new web-site?

I had a wordpress blog which was hosted in the public_html directory but in order to add more features I have developed a seperate web-site. I have a new index page and several other pages to serve my ...
2
votes
2answers
233 views

Migrating from fusebox ColdFusion to PHP

I am currently working on converting a ColdFusion website, using Fusebox framework, to PHP. The site contains like 20,000 lines of ColdFusion code. My dilemma is, should I switch to Fusebox-PHP (as it ...
2
votes
1answer
114 views

How does Zend Server deal with database migrations during application deployment

So I've been playing around with Zend Server to deploy and manage my PHP Applications. The application deployment and roll back is kind of neat, but how does it deal with database migrations if there ...
0
votes
1answer
228 views

PHP 4 to PHP 5 - isset checks on boolean if statements

Scenario: We are in the process of converting an application from PHP 4 to PHP 5. The application needs to be able to work on PHP 4 for a little while, which means no PHP 5 specific elements can be ...
7
votes
1answer
206 views

Why php array gets slower with newer php versions, and how to go around that?

I have a php based system working perfectly since 2006, which has a backend (CLI, cron) process, processing millions of records, using a big tree-like structure in memory. I've noticed great ...
0
votes
2answers
577 views

ereg() to preg_match() for PHP 5.3/4 migration using regular expression [duplicate]

Possible Duplicate: Converting ereg expressions to preg My Plan: Open each PHP file and read its lines one by one. If there is a ereg() function replace it with preg_match() and the pattern ...
7
votes
1answer
896 views

Writing a MySQL database find/replace script in PHP

I'm currently in the process of redeveloping my bespoke website to a WordPress-driven CMS. The website I've been working on is simply my existing URL plus /dev/, i.e. http://my.website.com/dev/. ...
0
votes
1answer
85 views

framework best for migrating an existing donation website to a php framework?

which framework would be best to migrate an existing donation processing php website to a php framework ?? please provide some justifications for your answer .. Three frameworks are in my mind : ...
0
votes
2answers
379 views

MySQL to SQL Server - Incorrect syntax near the keyword 'mictest'

First, I tried to migrate my databases with SQL Server Migration Assistant for MySql and it worked fine. But now, I have some problems with my code. I had this line on MYSQL version : $fct="SELECT ...
0
votes
2answers
290 views

typo3 migration to new server not working

I trying to move a typo3 website to a new server.I moved all the files across and created a new database and imported all the tables from the old database. I then updated the localconf.php file with ...

1 2 3