I'm using Classic ASP.
Set theForm = Server.CreateObject("Persits.Upload")
theForm.OverwriteFiles = True
Running the above code produces the error:
Server object error 'ASP 0177 : 800401f3' Server.CreateObject Failed
How can I solve this?
Unregister the Persits Upload DLL and re-register it by using regsvr32. below are the steps to register and unregister the DLL
Registering a DLL
regsvr32 <filename>.dll
or
regsvr32 <path>\<filename>.dll
where is the path to the file, and is the name of the file.
Unregistering a DLL
regsvr32 -u <filename>.dll
or
regsvr32 -u <path>\<filename>.dll
In Classic ASP I was getting this error when the code was moved to a new server. From my little experience with Classic ASP it looked like another DLL registration issue. In my case was the DLL was missing, so it couldn't have been registered. Once it was registered it fixed the problem.
Here is a list of items to check:
Here are is a link for more information:
Using the correct version of MSXML
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With