Getting a strange error for an old site I am trying to move to a new server - The new server is Win2008 64bit with IIS7.
This site is working perfectly on an IIS6 Win2003 server, but I have just moved it over and run the site but I get the following error
Provider cannot be found. It may not be properly installed.
From looking around people seem to to just say enable 32 bit applications in the App pool and it will be fine? Unfortunately I did this and it didn't work? It seems to be falling over here
'*************************************************************************
'Open Database Connection
'*************************************************************************
function openDB()
on error resume next
set connTemp = server.createobject("adodb.connection")
connTemp.Open connString
if err.number <> 0 then
dim errMsg
errMsg = "" _
& "<b>Module :</b> scripts/_INCappDBConn_.asp : openDB()<br /><br />" _
& "<b>Number :</b> " & err.number & "<br /><br />" _
& "<b>Page :</b> " & Request.ServerVariables("PATH_INFO") & "<br /><br />" _
& "<b>Desc :</b> " & err.Description
call errorDB("",errMsg)
end if
on error goto 0
if UCase(dbLocked) = "Y" then
call errorDB("<b>" & LangText("ErrStoreClosed","") & "</b>","")
closeDB()
end if
end function
Just wondering if anyone can shed any light on what is going in?