| Storebuilder
|
|
Install
pws and IIS |
Webserver is required to execute the
asp program.
Please install PWS for windows 98 system
and install IIS for windows NT system.
PWS is available in windows98 second
Edition [Add-on] folder.
after installed PWS, place [storebuilder] folder in the webserver root
directory(default "C:\Inetpub\WWWroot")
and type in "Http://Localhost/storebuilder/storebuilder/main/home.asp" to run
asp
|
|
| How to specify database
path?
|
| Example:
If your PWS or IIS webserver
root directory is "C:\Inetpub\WWWRoot" and your database
file located at "C:\Inetpub\WWWRoot\storebuilder\storebuilder.mdb"
************************************************************************************************
fpath="DBQ="&Server.MapPath("/storebuilder/storebuilder.mdb")
************************************************************************************************
*Note
Server.mappath will bring your program to your server Root directory.
|
|
Microsoft OLE DB Provider
for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access
Driver]General error Unable to open registry key 'Temporary (volatile) Jet
DSN for process 0x418 Thread 0x798 DBC 0xedb0fcc Jet'.
|
| Solution:
The database path specified in
Opendatabase.asp is incorrect. Program cannot find the database
file.
************************************************************************************************
fpath="DBQ="&Server.MapPath("/storebuilder/storebuilder.mdb")
************************************************************************************************
Check the database path in Opendatabase.asp and database file
location. Make sure the database path is correctly specified.
|
|
Microsoft OLE DB Provider
for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Could not find file '(unknown)'.
|
| Solution:
The database path specified in
Opendatabase.asp is incorrect. Program cannot find the database
file.
************************************************************************************************
fpath="DBQ="&Server.MapPath("/storebuilder/storebuilder.mdb")
************************************************************************************************
Check the database path in Opendatabase.asp and database file
location. Make sure the database path is correctly specified.
|
|
"Run time error '3706'
ADO could not find the specified provider."
|
| Solution:
ODBC Driver corrupted or MDAC version
incorrect.
Download and install later MDAC Version to solve this problem.
Download MDAC:
http://www.microsoft.com/data/whatcom.htm
http://www.microsoft.com/data/download.htm
|
|
| Unspecified Error
|
Solution:
- Open opendatabase.asp with Text
Editor e.g. Notepad
- Change the database path:
********************************************************************************************
fpath="DBQ="&Server.MapPath("/storebuilder/storebuilder.mdb")
********************************************************************************************
To:
********************************************************************************************
fpath="DB="&Server.MapPath("/storebuilder/storebuilder.mdb")
********************************************************************************************
- run the asp program and browser display
a different error message.
- change the database path in
opendatabase.asp to original database path:
- Change the database path:
********************************************************************************************
fpath="DB="&Server.MapPath("/storebuilder/storebuilder.mdb")
********************************************************************************************
To:
********************************************************************************************
fpath="DBQ="&Server.MapPath("/storebuilder/storebuilder.mdb")
********************************************************************************************
- Run the asp program again and the
unspecified error shall be solved.
|
|
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid ProgID. For additional information specific to this
message please visit the Microsoft Online Support site located
at: http://www.microsoft.com/contentredirect.asp.
/storebuilder/storebuilder/biuld/post.asp, line 73
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
Page:
POST 1438 bytes to /storebuilder/storebuilder/biuld/post.asp
OR
"Object Server error 'ASP 0177 : 800401f3'
Server Error in Server.CreateObject
/storebuilder/storebuilder/biuld/post.asp, line 73
800401f3"
|
Solution:
Server do not have aspsmartupload component
which is required to run Upload function.
This problem can be solved by installing smartupload component to server.
download smartupload at:
http://www.aspfree.com/asp/setupupload.asp
http://www.aspfree.com/components/specificcat.asp?componentcatid=14&componentcatName=Upload
If installing component is not allowed.
Please download post.zip(upload function removed) at:
http://www.etoshop.com/support/post.zip
unzip the file and replace post.asp.
Server do not have aspsmartupload component
which is required to run Upload function.
This problem can be solved by installing smartupload component to server.
|
|
|