Re: [symfony-users] Multiple projects, changing the httpd.conf file

2011-06-05 Thread Gábor Fási
The following is how I set up a new project. The steps are for linux, but the same logic was applicable on windows when I last checked. First, edit /etc/hosts (IIRC it's somewhere under c:\windows with the same name) to add a new domain: 127.0.0.1 projectname.local Edit httpd.conf to add a

[symfony-users] Multiple projects, changing the httpd.conf file

2011-06-04 Thread Parijat Kalia
Hello! Coming back onto the symfony mailing list after long. I now have a new project that I am undertaking and running into a slight few niggles with seeing it over my localhost. Let me explain: 1. My original project exists here : c:\dev\sfproject. I introduce a new project in

Re: [symfony-users] Multiple projects, changing the httpd.conf file

2011-06-04 Thread Haris Fauzi
If you use alias directive: Alias /sf some_directory Then when you access anything under it you should put the subdirectory: http://localhost:8080/sf/frontend_dev.php Instead of going to root directory like you did. Otherwise you won't get to the files under some_directory. Regards, Haris On

Re: [symfony-users] Multiple projects, changing the httpd.conf file

2011-06-04 Thread Parijat Kalia
Hi Harris, that did not work. I had the same configuration when I had a single project and it would take me to the project title just fine. Any further ideas? On Sat, Jun 4, 2011 at 8:10 PM, Haris Fauzi haris.fa...@gmail.com wrote: If you use alias directive: Alias /sf some_directory Then