Forum Moderators: open

Message Too Old, No Replies

troubles with asp form after moving to another host

         

karinakro

8:50 am on Mar 22, 2010 (gmt 0)

10+ Year Member



Hi everyone!

I'm not an ASP expert, so I have no idea what to do in this situation. One of my clients has recently moved to another host. After the relocation all the asp forms stopped working.

The redirection occurs successfully, but no data is saved.

Could someone point me in direction of what might be wrong?

Karina

[edited by: marcel at 9:08 am (utc) on Mar 22, 2010]
[edit reason] removed specifics [/edit]

marcel

9:10 am on Mar 22, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



but no data is saved

Is the data saved to a Database, or to the file system (or something else)?

The first thing I would check is to see if the permissions are correct DB Access, File System write privileges etc.

karinakro

4:40 am on Mar 23, 2010 (gmt 0)

10+ Year Member



thank you so much for the tip!

I'll take a look at permission settings.

marcel

7:09 am on Mar 23, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I forgot to add that most times when I see a problem like this; no data saved and also no error, the developer has probably 'swallowed' any error messages with an 'On Error Resume Next' statement.

<% On Error Resume Next %>

If you can find this code in the processing page, remove it for the time being and see what, if any error occurs.