vote up 0 vote down star

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?

flag

49% accept rate

2 Answers

vote up 1 vote down

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

link|flag
vote up -1 vote down check

I solved this issue and blogged about it here.

link|flag
Why the downvote? My solution was a tested one, though. – Ngu Soon Hui Aug 25 at 14:50

Your Answer

Get an OpenID
or

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