Log In Problem? [message #1130] |
Thu, 18 October 2007 10:12 |
gandrews
Messages: 4 Registered: October 2007
|
Junior Member |
|
|
I am just getting started, and get the following error when going to the logon link from the main page. I have most likely configured something incorrectly, but don't know how to determine the source of this error:
This error (HTTP 500 Internal Server Error) means that the website you are visiting had a server problem which prevented the webpage from displaying.
For more information about HTTP errors, see Help.
|
|
|
|
|
Re: Log In Problem? [message #1133 is a reply to message #1132] |
Thu, 18 October 2007 11:39 |
AJM
Messages: 2368 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
At least that proves that your Apache installation is OK and that PHP scripts can be run as expected.
As for your error with the Radicore login screen I'm afraid the error message you have given me ("Internal Server Error") does not provide any clues. Can you step through with your debugger to see where it is falling over?
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|
|
|
|
|
Re: Log In Problem? [message #1138 is a reply to message #1137] |
Fri, 19 October 2007 18:02 |
AJM
Messages: 2368 Registered: April 2006 Location: Surrey, UK
|
Senior Member |
|
|
You should also have the following settings in your php.ini file so that errors such as these will be reported correctly instead of hidden from view.
error_reporting = E_ALL
display_errors = On
display_startup_errors = On
log_errors = On
error_log = C:/phperror.log [set this pathname as necessary]
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
|
|
|