Symfony 1.2 and Dorctrine
2008 Oct 30th @ 12:27:16
No Comments »
Categories
If you are planning on using Doctrine with Symfony 1.2, it must be enabled in the project configuration.
Go to %symfony_project_directory%/config/ProjectConfiguration.class.php and change the setup method:
public function setup()
{
$this->setPlugins(array('sfDoctrinePlugin'));
}
That’s it. It should work now.
