Question

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?

Was it helpful?

Solution 2

I solved this issue and blogged about it here.

OTHER TIPS

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';

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top