Stuart Sammels
|
| Posted: 05/20/2002, 3:41 PM |
|
I have a site built using codecharge. It is an expanded bookstore example(www.kumitrading.com) hosted by readyhosting.com.
The main site is working fine but the SSL side stopped working after several months. I sent readyhosting a support ticket and they told me they changed the "FSO" on the SSL side for security reasons.
What is FSO? Why do the html pages work and the ASP pages don't?
This is the error I get:
Server object error 'ASP 0177 : 800401f3' Server.CreateObject Failed /users/kumitradingcom/TemplateObj.asp, line 38
Any help would be appreciated.
|
|
|
 |
DaveRexel
|
| Posted: 05/20/2002, 4:16 PM |
|
object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
Invalid class string
This error will usually be caused by one of two things...
A mistype in the Server.CreateObject method
-ex
-set conn = Server.CreateObject("adodd.connection")
as you can see, the adodd, should be adodb
Another possible cause, would be trying to use an object that has not been installed on the server.
-ex.
-set obj = Server.CreateObject("some.class")
this would give you the error because more than likely, you don't have some.class installed on the server. The class for the object you are trying to use must be downloaded and registered for it to work.
The first one can be solved by carefully going through your code to try to catch the mistype. the second one must be dealt with by the server adminstrator.
- FSO = File System Object
Maybe support has a fix, have opened a support-form at CC support?
Greetings
Dave
|
|
|
 |
Mehmet Ozdemir
|
| Posted: 05/20/2002, 5:54 PM |
|
Stuart
line 38 of TemplateObj.asp is:
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
I would say that they are locking down the use of the FSO, therefore user context that your site is running under cannot instanciate the object.
|
|
|
 |
Stuart Sammels
|
| Posted: 05/20/2002, 8:31 PM |
|
Mehmet,
Is there a way to get around this or what can I do to fix this?
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
Thanks
|
|
|
 |
Nicole
|
| Posted: 05/21/2002, 2:38 AM |
|
Stuart,
Please refer to these articles http://www.15seconds.com/faq/Errors/472.htm
and http://support.microsoft.com/support/kb/articles/q175/8/04.asp
|
|
|
 |
|