Cannot run the FrontPage Server Extensions on this page:

N

Nigelman

OK I've tried this over and over, I read all the pages from previous people
who've had this problem and I can't figure this out!!! Can someone please
explain how I should fix this problem in an easy and uncomplicated way?
Here's where it is.....
http://www.fukuokafishingadventures.com/reservations.htm
Any help would be great, I've been trying to figure this out for 2 hours now
and give up.

THanks very much,
Nigel
 
T

Tom Pepper Willett

Well, we don't know what you have or haven't done, or have or haven't read
from previous people.

So, the first obvision question: Did you http publish to the remote server
or ftp?
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
| OK I've tried this over and over, I read all the pages from previous
people
| who've had this problem and I can't figure this out!!! Can someone please
| explain how I should fix this problem in an easy and uncomplicated way?
| Here's where it is.....
| http://www.fukuokafishingadventures.com/reservations.htm
| Any help would be great, I've been trying to figure this out for 2 hours
now
| and give up.
|
| THanks very much,
| Nigel
| --
| Fishing is my passion!
 
S

Steve Easton

For starters, you need to move the input and reset buttons and the text box to inside the
table:

This:
<INPUT TYPE=TEXT NAME="Contact_URL1" SIZE=25 MAXLENGTH=25 style="font-weight:
700"></font></TD>
</TR>
</TABLE>
<p>Comments or general questions.</p>
<p><textarea rows="5" name="S1" cols="33"></textarea></p>
<p>Thank you very much.</p>
</BLOCKQUOTE>
<INPUT TYPE=submit VALUE="Submit Form">
<INPUT TYPE=RESET VALUE="Reset Form">

Should be:

<INPUT TYPE=TEXT NAME="Contact_URL1" SIZE=25 MAXLENGTH=25 style="font-weight: 700"></font>
<INPUT TYPE=submit VALUE="Submit Form"><INPUT TYPE=RESET VALUE="Reset Form">
</TD>
</TR>
</TABLE>
<p>Comments or general questions.</p>
<p><textarea rows="5" name="S1" cols="33"></textarea></p>
<p>Thank you very much.</p>
</BLOCKQUOTE>

Also you really need to run that page through an html validator.

Theres a good free one named CSE Lite that you can download from here.

http://www.htmlvalidator.com/lite/


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
B

Bob Lehmann

Well, we don't know what you .... have or haven't read from previous
people.

Geeze, Tom. He clearly stated that he's real *all* the pages from other
people. How can you possibly question someone who's domain name starts with
fukuok?

Plus, I mean crap... he's already spent 2 whole hours trying to figure it
out. And, he's only looking for an "easy and uncomplicated way" to solve it.

Shame on you, Tom. Surely you can do something besides ask questions that
only make things hard and complicated????

Bob Lehmann
 
N

Nigelman

Steve,
I changed the code like you said and you were right I had the submit and
resret buttons outside of the box or cell of the form. SO I've changed it as
you said but no go, I get the same messge. I don't get this because it worked
fine before than I made a small change and I can't do it. Even if I try a
mock one on a new page it won't work. Yes I have installed FP extensions on
my server but it still won't accept my chages..........

Seriously this is stupid because I followed the stupid template and did
everything right (as far as I know) and just won't work anymore.

I suck!

Nigel
 
T

Thomas A. Rowe

Try this, Open the site directly on the server via FP, then insert a default feedback form, and set
it to send to your email address. The email address may need to be one that is associated with you
web site domain name, [email protected]

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WebMaster Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
S

Stefan B Rusynko

1) Remove the email link
<a href="mailto:[email protected]"> for before
<INPUT TYPE=submit VALUE="Submit Form">\
(you can also delete the broken tag <p>@</td>
2) You are saving the results to U-File="reservationsform.txt"
- move reservationsform.txt to the _private folder (which has write permissions) and set your form properties to point to the save
file there
3) Make sure your host has email transport enabled

PS

The space bar is not a design tool

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


| Steve,
| I changed the code like you said and you were right I had the submit and
| resret buttons outside of the box or cell of the form. SO I've changed it as
| you said but no go, I get the same messge. I don't get this because it worked
| fine before than I made a small change and I can't do it. Even if I try a
| mock one on a new page it won't work. Yes I have installed FP extensions on
| my server but it still won't accept my chages..........
|
| Seriously this is stupid because I followed the stupid template and did
| everything right (as far as I know) and just won't work anymore.
|
| I suck!
|
| Nigel
|
| "Steve Easton" wrote:
|
| > For starters, you need to move the input and reset buttons and the text box to inside the
| > table:
| >
| > This:
| > <INPUT TYPE=TEXT NAME="Contact_URL1" SIZE=25 MAXLENGTH=25 style="font-weight:
| > 700"></font></TD>
| > </TR>
| > </TABLE>
| > <p>Comments or general questions.</p>
| > <p><textarea rows="5" name="S1" cols="33">
 
Top