Page 2 of 2

Re: Error 500 :S

Posted: 13 Nov 2011, 20:35
by .HD.
I have chmoded the whole folder to 705, still don't work :S

Re: Error 500 :S

Posted: 14 Nov 2011, 14:41
by gouxim
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:

Code: Select all

ini_set('display_errors','On'); 
error_reporting(E_ALL); 
It should force the display of all PHP errors in your browser.

Re: Error 500 :S

Posted: 15 Nov 2011, 08:11
by .HD.
Yesss :D

Thank you so much everybody! I found it out! :)

If somebody else has this problem, here is the solution:

1.
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:

Code: Select all

ini_set('display_errors','On'); 
error_reporting(E_ALL); 
It should force the display of all PHP errors in your browser.
2. At me, this problem was becouse of a setting in my Host CP, that would not update. I fixed it, and it works!

(There was a security thing with cURL)