I'm trying to set up Symfony 1.4.18 in a Linux environment. I'm running Ubuntu 12.04LTS.
The issue is that once I get to the Symfony setup page where you should see "Symfony Project Created" graphically, all I get is it in text form.
For some reason it is not accessing the /sf folder. I've added in the alias, but it still isn't rendering correctly. This is the info I added to the end of the httpd.conf file:
<VirtualHost 127.0.0.1:8080>
DocumentRoot "/var/www/sfproject/web"
DirectoryIndex index.php
<Directory "/var/www/sfproject/web">
AllowOverride All
Allow from All
</Directory>
Alias /sf /var/www/sfproject/lib/vendor/symfony/data/web/sf
<Directory "/var/www/sfproject/lib/vendor/symfony/data/web/sf">
AllowOverride All
Allow from All
</Directory>
As you can see, I modified the path to reflect the way my system is set up. var/www is my root web folder; I based everything off of that.
When I access the page in my browser I type "http://localhost/sfproject/web/index.php", not "http://localhost:8080/index.php/" as per the Symfony instructions. Perhaps this will shed some light on the issue.
Thanks for the help, and God Bless! :)
http://localhost:8080/index.php/as you setup your virtualhost to do so? – olivierw Jun 23 '12 at 7:06