I started to learn Symfony (http://www.symfony-project.org/jobeet/1_4/
Propel/en/03), but i am blocked on the lesson 3 (The data model).

I followed the instructions, and there are my settings file :

1) I am on Ubuntu 10.10
2) In /etc/apache2/sites-available/
I created the file jobeet : like this

<VirtualHost dev.jobeet.com:80>
  ServerName dev.jobeet.com
  DocumentRoot "/home/user/workspace/web/php/symfony/jobeet/web/"
  DirectoryIndex index.php
  <Directory "/home/user/workspace/web/php/symfony/jobeet/web/">
    AllowOverride All
    Allow from All
  </Directory>

   Alias /sf /usr/share/php/data/symfony/web/sf
  <Directory "/usr/share/php/data/symfony/web/sf">
    AllowOverride All
    Allow from All
  </Directory>
</VirtualHost>

then I do this command :  sudo a2ensite jobeet

In the /etc/hosts  I added the line :
127.0.0.1 dev.jobeet.com

My problem is this :

I get the page http://dev.jobeet.com   as expected in the tutorial
Also I get the page http://dev.jobeet.com/frontend_dev.php as expected

BUT when i try this : http://dev.jobeet.com/frontend_dev.php/job I get
this error message :

The requested URL /frontend_dev.php/job was not found on this server.
Apache/2.2.16 (Ubuntu) Server at dev.jobeet.com Port 80

Of course I have already done this command :
php symfony propel:generate-module --with-show --non-verbose-templates
frontend job JobeetJob

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to