"This Page Isn't Working" error 500
"This Page Isn't Working" error 500
I have installed the latest Gbook and followed the htm file for installation and uploaded all the files yet when I go to the page it states "This page isn't working and error 500 under it. I have tried other browsers and another computer but same results. I have searched the forum but I do not see anybody with my problem.
Re: "This Page Isn't Working" error 500
500 is a server-side error. You will need to check in your server error logs to see the exact error message.
P.s.: maybe you made a syntax error in the settings.php file? Does it load with the original file?
P.s.: maybe you made a syntax error in the settings.php file? Does it load with the original file?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: "This Page Isn't Working" error 500
Just checked and it did load with original settings.php
Re: "This Page Isn't Working" error 500
Wierd! I changed my admin password to a more simple one with no special characters and it works now.
Re: "This Page Isn't Working" error 500
Then it most likely was a PHP syntax error; if you use ' in the password you need to escape it with \
Wrong:
Correct:
Wrong:
Code: Select all
$settings['apass'] = 'ab'cd';
Code: Select all
$settings['apass'] = 'ab\'cd';
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Re: "This Page Isn't Working" error 500
First off, check your server logs for more details on what's causing the issue. Could be a server config thing. Also, make sure your file permissions are on point. Sometimes it's just a little tweak that sorts it out.