View Single Post
  #2 (permalink)  
Old Jan 7th, 2008, 03:16
Monie Monie is offline
Most Reputable Member
Join Date: Feb 2004
Location: Borneo
Age: 27
Posts: 1,604
Blog Entries: 2
Thanks: 0
Thanked 4 Times in 3 Posts
Send a message via Yahoo to Monie
Re: Got an error on the search feature

Error codes in ASP can drive you crazy sometimes.

First, this in general means there is a PERMISSION problem getting to the DATABASE. Usually this happens when you do a security patch on your server, reboot your server, or install firewall software. All of these things can cause your web user to lose permission to access the critical files (like your database).

So first, check the basics. Make sure that IUSR has write permission to both the directory holding the database file and to any temp directories being used. Make sure that the DSN connection string is actually pointed at the directory you are working on! Check out my Connection String Here!

Even if you thought these were set properly, a reboot or a security upgrade might have unset them. Check them out!

Next, look into any other security blocks that may have been added. Have you added any anti virus or firewall software recently? Try turning it off and see if that helps. If it does, turn the software back on and then go into its configuration, and allow access to the directories in question.

Hope that's helps..
Cheers..

Last edited by Monie; Jan 7th, 2008 at 03:21.
Reply With Quote