1

I have found shtml.exe in my localhost URL.Url is : localhost/germain/_vti_bin/shtml.exe/reservations.htm.

When i enterd this url the page shows a 403 error.

enter image description here

But in the case of live site it works fine.Look this link : http://www.germainesluau.com/_vti_bin/shtml.exe/reservations.htm

is there any settings have to change in htaccess?

Please give me an advise?

Preethy
  • 722
  • 2
  • 10
  • 27

1 Answers1

4

The live server has FrontPage extensions installed.

# curl -I http://www.germainesluau.com/_vti_bin/shtml.exe/reservations.htm
HTTP/1.1 200 OK
Date: Fri, 04 Jan 2013 08:57:04 GMT
Server: Apache/2.2.22 (Unix) FrontPage/5.0.2.2635
Content-Length: 18680
Content-Type: text/html; charset=windows-1252

Your local system, presumably, does not. It looks like you can get them from here.

Personally, I'd rewrite the site to avoid them. They aren't a common tool for server side logic these days. (I don't remember seeing anyone else use this this century).

Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
  • thanks for your valuable reply.Actually I did'nt developed this site.My task is to solve a payment problem.So that i download all the files form the server and setup it in my localhost.How can i solve this shtml.exe problem in my localhost – Preethy Jan 05 '13 at 04:54
  • Install FrontPage Extensions as per the paragraph immediately following the HTTP response header data. – Quentin Jan 05 '13 at 08:51