tags:

views:

132

answers:

2

I use Symfony Sandbox structure in my development. Now, thinking of future ugrades, I want to separate the Symfony application out from my application and put it in a separate folder. The only problem is that it seems my application and Symfony are hopelessly intermingled together.

Anyone has any idea how to separate the Symfony engines out from my sandbox application?

+1  A: 

After the proper installation of symfony you just have to change the path in config/ProjectConfiguration.class.php from

require_once dirname(__FILE__).'/../lib/symfony/autoload/sfCoreAutoload.class.php';

to your new symfony library directory, like this:

require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php';

bb
A: 

I solved this issue and blogged about it here.

Ngu Soon Hui
Why the downvote? My solution was a tested one, though.
Ngu Soon Hui