Internal Server Error

Status
Not open for further replies.

prbeast10135

New Member
Messages
3
Reaction score
0
Points
0
Hello,

I ran into an Internal Server Error. I ran into this issue at about 10:38am EST and i was in teh .htaccess file just to see what it was. The information is below.

Internal Server Error
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.

Thank you for your help
 

Gouri

Community Paragon
Community Support
Messages
4,565
Reaction score
245
Points
63
Hello,

I ran into an Internal Server Error. I ran into this issue at about 10:38am EST and i was in teh .htaccess file just to see what it was. The information is below.

Internal Server Error
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.

Thank you for your help

Mis configuration of .htaccess leads to 500 internal server error.

Post the .htaccess here then we can check.
 

prbeast10135

New Member
Messages
3
Reaction score
0
Points
0
I am new to web hosting and to be honest i opened the .htaccess to see what it was and i noticed it was blank. I opened it in the code editor and typed the word test and accidentally closed out of it and now i am having this problem. so right now it only has the word "test" in it.
 

Gouri

Community Paragon
Community Support
Messages
4,565
Reaction score
245
Points
63
I am new to web hosting and to be honest i opened the .htaccess to see what it was and i noticed it was blank. I opened it in the code editor and typed the word test and accidentally closed out of it and now i am having this problem. so right now it only has the word "test" in it.

Then remove the "test" word from it.

If you want to have basic .htaccess file then post this in .htaccess file

RewriteEngine on
RewriteBase /

# -Front Page-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
 
Last edited:

prbeast10135

New Member
Messages
3
Reaction score
0
Points
0
Thank you!!! This has fixed the issue. Also, How would i go in adjusting the default page so that when someone types in my domain my custom webpge loads up? Again thank you for solving my issue.
 

Gouri

Community Paragon
Community Support
Messages
4,565
Reaction score
245
Points
63
Thank you!!! This has fixed the issue. Also, How would i go in adjusting the default page so that when someone types in my domain my custom webpge loads up? Again thank you for solving my issue.

In the .htaccess add this

DirectoryIndex index.html index.cgi index.php

there after DirectoryIndex what ever filename you write it will be loaded automatically
 
Status
Not open for further replies.
Top