Forum Moderators: open
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
so. please tell me what could be the problem.
If you are using Internet Explorer, choose Tools > Internet Options > Advanced. Scroll down until you see "Show Friendly HTTP error messages" and uncheck that.
Click apply, close, and refresh your page.
You should see the real database error being thrown.
i have tried giving full permission for the file and also for the database folder. previously the database was on the root folder. and now i have moved the database to a folder.
i have tried even in mozilla even their i get the same internal sever error message.
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Web Server at virtualdatings.com
i hope the problem mighbe in this part
strConn = "provider=microsoft.jet.oledb.4.0;data source=" & server.mappath("database.mdb")
Set ConStr = Server.CreateObject("ADODB.Connection")
ConStr.Open strConn
from the above script i have change to the below script by addind db/ to the databasename
strConn = "provider=microsoft.jet.oledb.4.0;data source=" & server.mappath("db/database.mdb")
Set ConStr = Server.CreateObject("ADODB.Connection")
ConStr.Open strConn
There are so many things that could cause this error, it is not possible to say what your problem is for sure, although (at least on apache) it is most commonly caused by incorrect entries in configuration files and/or .htaccess directives.
Did you check your logs as the error suggests?
it is a matrimonial wesite. i get this error when i try to signup. as a new user. but the data what i type will be recorded in the database and when i try to refresh the page i get the message that username already choosen. so please try anothe one. while i try to signup the info is getting recorded in the database. and i can login. i can modify the details. and also i can request for the forgot password. everything is working fine. except problem while signingup as a new user.
for the domain virtualdatings.com
Second, with your postings, everyone in the world knows that your database file is currently located at yourdomain.com/db/database.mdb (making it much easier to hack). So I suggest you once again move it to a new folder.
Since the data is being written to the database, it looks like the error is occuring later in the code, after the data has been written. Maybe you're trying to do a different database call later? Maybe you're trying to refresh to a different page that is not accessible?