Symfony 1.4 Error 400 on the home page in prod env (not in dev env)?

Try checking if the no_script property on your application setting. Yml file. If should be set to False, clear cache and try again.

Thank you very much Guiman. You have leaded me to the answer. The no_script_name property wasn't the origin of the problem.

Instead, I have my . Htaccess in the web dir which was badly generated (I swear on my pet's head that I havn't edited this file before). Below is the file generated by symfony (the bold attribute isn't working within the code one, look at the last line): Options +FollowSymLinks +ExecCGI RewriteEngine On # uncomment the following line, if you are having trouble # getting no_script_name to work #RewriteBase / # we skip all files with .

Something #RewriteCond %{REQUEST_URI} \..+$ #RewriteCond %{REQUEST_URI}! \. Html$ #RewriteRule .

* - L # we check if the . Html version is here (caching) RewriteRule ^$ index. Html QSA RewriteRule ^(^.

+)$ $1. Html QSA RewriteCond %{REQUEST_FILENAME}! -f # no, so we redirect to our front web controller RewriteRule ^(.*)$ index.

Php QSA,L And this is the updated one (again, look at the last line): Options +FollowSymLinks +ExecCGI RewriteEngine On # uncomment the following line, if you are having trouble # getting no_script_name to work #RewriteBase / # we skip all files with . Something #RewriteCond %{REQUEST_URI} \..+$ #RewriteCond %{REQUEST_URI}! \.

Html$ #RewriteRule . * - L # we check if the . Html version is here (caching) RewriteRule ^$ index.

Html QSA RewriteRule ^(^. +)$ $1. Html QSA RewriteCond %{REQUEST_FILENAME}!

-f # no, so we redirect to our front web controller RewriteRule ^(.*)$ **/myApp/index. Php** QSA,L I don't know what happened but I will check on the symfony website I there are similar issues.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions