Internal Server Error

Status
Not open for further replies.

ajddtogo

New Member
Messages
6
Reaction score
0
Points
0
I have uploaded my site coded in php but each time i try to access it, it says this message :
*************************
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, no-reply@x10hosting.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
*********************************
I have used the same script on other web hosting services with any kind of error.
I have also chmoded my files like it says on this thread : http://x10hosting.com/forums/free-hosting/130901-internal-server-error-contact-server-administrator.html . But nothing !!!!
I don't know what to do plz help.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Looks like your .htaccess file might be the problem then (a request for /foonothere.html on your add on domain gives a 500 error)

1. If you use mod_rewrite, make sure you have the line

RewriteBase /

before any RewriteRule

2. If that does not help, try posting the contents of .htaccess here.
 

ajddtogo

New Member
Messages
6
Reaction score
0
Points
0
Still not work thsis is what you asked me
--------------------------------------
Options -Indexes

php_flag magic_quotes_gpc off

RedirectMatch (.*)/languages/(.*).php$ "ErrorDocument 404 /index.html"
RedirectMatch (.*)/templates_c/(.*).php$ "ErrorDocument 404 /index.html"
RedirectMatch (.*)/uploades/(.*).php$ "ErrorDocument 404 /index.html"
RedirectMatch (.*)/include/(.*).xml$ "ErrorDocument 404 /index.html"
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Remove the line:

php_flag magic_quotes_gpc off
 
Status
Not open for further replies.
Top