I think i followed the instructions in the README.txt
correctly to create the virtual directory in IIS manager,
and creatinge the system DSN through the ODBC Data
Source Administrator as I get the login sceen when I
type in the URL into my web browser.
After I enter the username and password of bugsadmin
and select the "Mangement" project (there is no "Site
Admin" option as indicated in the README file), I get the
following error:
Technical Information (for support personnel)
Error Type:
Provider (0x80004005)
Unspecified error
/bugs/login.asp, line 33
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322)
Page:
POST 76 bytes to /bugs/login.asp
POST Data:
txtUser_Name=bugsadmin&txtPassword=bugsadmin&lstPro
ject=Management&x=47&y=15
Time:
Friday, November 05, 2004, 2:45:06 PM
Thank you in advance.
stella.ko@amec.com
Logged In: YES
user_id=1181063
Hi,
I had the same problem, which was solved by replacing
Conn.Open "bugs", , "" in login.asp with:
Dim path_to_db
path_to_db = "the path..."
Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="
& path_to_db
Logged In: NO
Thanks very much, tbionic - that did the trick!