vote up 0 vote down star

I have a Symfony 1.2.4 application, taken and modified from the Symfony sandbox application, there was no effort made to make sure that the Symfony engine was separated from my application, so now the Symfony engine is just a folder inside my application.

What is the best way to upgrade from Symfony 1.2.4 to 1.2.7? Any ideas?

flag

49% accept rate

4 Answers

vote up 1 vote down check

I have found the solution.

First, one has to move the Symfony framework from sandbox application, then upgrade the Symfony framework using PEAR as detailed in this post.

link|flag
vote up 0 vote down

You should also consider using SVN and/or installing symfony in the lib/vendor folder of your project. This will make symfony project dependant which is just useful in case of multiple symfony projects on the same server.

link|flag
Hmm... If installing the Symfony in the folder of my project, that will cause a problem when I need to upgrade my Symfony version, isn't it? – Ngu Soon Hui May 8 at 11:55
vote up 1 vote down

The easiest way:

download new sandboxed version of symfony, take data and lib fonders from that archive and out it in your project folder (overwriting existing data and lib folders). after that clean your projects cache and rebuild model (and forms and filters).

php symfony clear:cache
php symfony propel:build-all

or if using doctrine:

php symfony clear:cache
php symfony doctrine:build-all

this will always work for minor revisions ( 1.2.3 to 1.2.9 or 1.1.2 to 1.1.5). for upgrades from 1.0 to 1.1 or 1.2 or 1.3 you will have additional steps ( you have detailed instructions for that in documentation)

link|flag
vote up 0 vote down

Symfony 1.2 is a Stable version, what does it mean?

Stable : The symfony team is commited to fix bugs and security problems for stable releases until the end of the maintenance. In average, we release a bug fix version a month. These versions never contain new features, even small ones, but only bug fixes. So, they are always backward compatible, easy and safe to upgrade to.

Like Oncle Tom said, if you're working on multiple Symfony projects, it will be easier to update them if they're sharing the same Symfony library.

Checkout the Symfony lib from the SVN Repository :

daemon@dev:/home/dev/symfony$ svn co http://svn.symfony-project.com/branches/1.2

Edit your config/ProjectConfiguration.class.php :

#require_once dirname(__FILE__).'/../lib/vendor/symfony/lib/autoload/sfCoreAutoload.class.php';
require_once '/home/dev/symfony/1.2/lib/autoload/sfCoreAutoload.class.php'; // use the shared lib instead
sfCoreAutoload::register();

class ProjectConfiguration extends sfProjectConfiguration
{
  public function setup()
  {
    // for compatibility / remove and enable only the plugins you want
    $this->enableAllPluginsExcept(array('sfPropelPlugin', 'sfCompat10Plugin'));
  }
}

Then you're done. You're now using a shared and easy to update Symfony library, and you have updated your project.

To start new projects :

daemon@dev:/home/dev/sfProjects$ php /home/dev/symfony/1.2/data/bin/symfony generate:project Project

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.