Re: Error 500 :S
Posted: 13 Nov 2011, 20:35
I have chmoded the whole folder to 705, still don't work :S
Code: Select all
ini_set('display_errors','On');
error_reporting(E_ALL);
2. At me, this problem was becouse of a setting in my Host CP, that would not update. I fixed it, and it works!gouxim wrote:Error 500 is indeed just a generic PHP error. Do you have access to the error logs to see why/where this is happening?
Otherwise you can also try to add that at the begining of your PHP code:It should force the display of all PHP errors in your browser.Code: Select all
ini_set('display_errors','On'); error_reporting(E_ALL);