somdow
somdow

Reputation: 6318

Moving an ASP site

First let me say i never dealt with ASP before so i think its an easy fix but again, im a noob. I was asked to move a site from one location to another. When i did, i noticed that when i loaded the site in the new location, i would just see raw code. Obviously that's bad so I did a little investigation and it turns out i needed a Windows server. I went and got one. I re-uploaded the files to the new server and it partly works.

this is the original one(location i mean) http://www.lesbijoux.com/

And this is the same site on the new server. http://lesbijoux.com.previewdns.com/

although it comes up, there are visually 3 errors on the site (2 up top and one in the footer)

plus, the footer links don't work.

I copied all contents from the old server to the new server as is so that said, all the files should be the same in both places. When i click the footer links on the new non-working site, they lead to a "Default.asp" file (with a capital D ) which lead to 404s. I went on the server and the only "default" file i see starts like this "default.asp" (with a lowercase d). But again, on the old server it works so I'm not understanding the issue.

To test i rename the "default.asp" to "Default.asp" and the links just dong go anywhere.

My question is, is a move from windows to windows not enough? am i missing something? If i can be pointed in the right direction i appreciate it and thank you in advanced.

Upvotes: 0

Views: 639

Answers (2)

Ricardo Souza
Ricardo Souza

Reputation: 16446

It seems your server does not support ASP or is missing some configs for it to work. The main thing to look at is to contact your host provider and ask it to enable ASP processing (as Tim B James explained in the comments).

If your hosting provider can't enable this for you, you will be out of luck and will need a new server that supports it.

TIP: If you have access to a Plesk control pannel, going into the configuration section for this site gives you the ability to eneble or disable ASP, PHP, ASP.NET, etc.

Upvotes: 1

Related Questions