I am new to Symfony framework. I got Symfony (v1.4.8) on my Netbeans 6.8 and also got the initial success page.
Now, I want to Configure a database using Propel ORM Tool. But in Netbeans I am getting Doctrine as the default tool enabled. I am not even getting the PROPEL commands in my Run Commands window. I configured Netbeans for Symfony as per the instructions at: http://netbeans.org/kb/docs/php/symfony-screencast.html
I tried editing "ProjectConfiguration.class" but of no success. Can anyone help me on this?
Guys... I seemed to have solved it the stupid way. I fixed the Properties.ini and ProjectConfiguration.class.php in the Config folder of my project (which I was doing for a long time) and then restarted my NetBeans.
I had all the Propel Modules loaded up...
In the /config/ProjectConfiguration.class.php edit the line
$this->enablePlugins('sfDoctrinePlugin');
to load the Propel plugin instead:
$this->enablePlugins('sfPropelPlugin');
Also in the /config/properties.ini set
orm=Propel