HuwD
HuwD

Reputation: 1800

ASP File Permissions

I'm a ASP.NET developer who was contacted by a client asking me to make some changes to their site after someone told them it was ASP.NET. It wasn't, it was classic ASP but she seemed at her wits end with it so I said I would give it a go. However I have very little experience with Classic ASP.

Am currently trying to update a form. Have copied the entire site and database to my local machine and got it up and running. I have set the Anonymous user to my windows user to allow me to connect to the database using windows authentication.

The difficulty I am having is when I go to edit an existing record using the edit form and click save on my local machine I get the following error:

Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/xtpropertyedit.asp, line 200

800401f3 

However it works fine on the hosted version of the site. I imagine this is an permissions issue. I have tried adding my user with full permissions to the root folder of the site on my local machine but that doesn't seem to make a difference.

Set Jpeg = Server.CreateObject("Persits.Jpeg")    '** Line 200 **

Any ideas?

Upvotes: 0

Views: 767

Answers (1)

Kul-Tigin
Kul-Tigin

Reputation: 16950

AspJpeg is a paid third-party component and seems like it's not installed on your development computer. It can be used without any limitation for 30 days.

Upvotes: 2

Related Questions