could someone offer a coherent explanation of path notation, as in when and how to use ../mydirectory/subdirectory. I keep getting errors like this on my website:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
/QuickQuote/QuickQuoteProc.asp, line 59
I know that it's due to incorrect path references, because the asp code runs fine on my personal web server, but as soon as I upload it to my web hosting service, I get a lot of these errors. In this particular case, it's coming from a global.asa file which is trying to access a database. The offending line of code looks like this:
"DefaultDir=c:\inetpub\ & _ "Uid=Admin;Pwd=;"
I realize that this direct path although valid on my local PPC, it won't necessarily work on my hosting provider's server.
What I don't know how to do is properly change it. In the past I've just fooled around with it in order to get it to work right, (by adding ../ or / to a path name) but I never really understood it.
Anyone have a rule of thumb to follow on this? How much water would there be in the ocean if it weren't for sponges?
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
/QuickQuote/QuickQuoteProc.asp, line 59
I know that it's due to incorrect path references, because the asp code runs fine on my personal web server, but as soon as I upload it to my web hosting service, I get a lot of these errors. In this particular case, it's coming from a global.asa file which is trying to access a database. The offending line of code looks like this:
"DefaultDir=c:\inetpub\ & _ "Uid=Admin;Pwd=;"
I realize that this direct path although valid on my local PPC, it won't necessarily work on my hosting provider's server.
What I don't know how to do is properly change it. In the past I've just fooled around with it in order to get it to work right, (by adding ../ or / to a path name) but I never really understood it.
Anyone have a rule of thumb to follow on this? How much water would there be in the ocean if it weren't for sponges?