[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-31 Thread Eno
On Thu, 29 Oct 2009, Zach wrote: Ok, so it ended up being a simple issue... one of the parameters had a numeric value with a decimal... which was breaking my url. If I remove the dot first, everything works fine. Thanks everyone for their ideas. Does anyone know why the dot works in

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-29 Thread Zach
Hi Eno, I am not using a virtual host... This is an existing application that has been working fine for over a year. Everything else on the site works great, it's just this one URL that I am having a problem with. What is the difference between the dev environment and the production environment

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-29 Thread Zach
Ok, so it ended up being a simple issue... one of the parameters had a numeric value with a decimal... which was breaking my url. If I remove the dot first, everything works fine. Thanks everyone for their ideas. Does anyone know why the dot works in the dev environment but not the prod

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-28 Thread Sid Bachtiar
1. Did you clear cache? ./symfony cc 2. Do you have mod_rewrite enabled on your production server? On Thu, Oct 29, 2009 at 8:56 AM, Zach zach...@gmail.com wrote: I've been stuck on this for quite some time and hope someone can help me. It's probably something simple that I am overlooking

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-28 Thread Zach
Thanks for the fast reply! 1. yes I did symfony cc 2. yes... I have RewriteEngine On in the .htaccess (that enables mod_rewrite right?) On Oct 28, 3:07 pm, Sid Bachtiar sid.bacht...@gmail.com wrote: 1. Did you clear cache? ./symfony cc 2. Do you have mod_rewrite enabled on your production

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-28 Thread Sid Bachtiar
2. yes... I have RewriteEngine On in the .htaccess (that enables mod_rewrite right?) Not just there. Your apache web server must have it enabled. If you're on linux: sudo a2enmod rewrite then restart apache On Thu, Oct 29, 2009 at 9:23 AM, Zach zach...@gmail.com wrote: Thanks for the fast

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-28 Thread Eno
On Thu, 29 Oct 2009, Sid Bachtiar wrote: 2. yes... I have RewriteEngine On in the .htaccess (that enables mod_rewrite right?) Not just there. Your apache web server must have it enabled. If you're on linux: sudo a2enmod rewrite Just remember, a2enmod is Ubuntu/Debian specific - not all

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-28 Thread Zach
ok... so I ran phpinfo() just to check, and yes I do have mod_rewrite listed under the loaded modules. On Oct 28, 3:31 pm, Sid Bachtiar sid.bacht...@gmail.com wrote: 2. yes... I have RewriteEngine On in the .htaccess (that enables mod_rewrite right?) Not just there. Your apache web server

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-28 Thread Eno
On Wed, 28 Oct 2009, Zach wrote: ok... so I ran phpinfo() just to check, and yes I do have mod_rewrite listed under the loaded modules. Is your vhost configured to look at .htaccess files and allow directives in them? The AllowOverride directive (or something like that). On Oct 28,