PDA

View Full Version : Form not Submitting


NYColt
6-7-02, 09:11 AM
What is up with Form.pl at Pow web?
When a visitor clicks submit it takes them to a Pow web page.
This submit has always worked before.

This is my broken submit link.

http://www.northeastbartenders.com/hire.html

Please advise.

NYColt

BerksWebGuy
6-7-02, 09:25 AM
In your form method...take out the http://www.powweb.com. It should look like this:

<form METHOD="POST" action="/powweb-bin/FormMail.pl" >

You shouldn't be calling the script from powweb main site...but from a subfolder of theirs. Give it a shot.

Good Luck

NYColt
6-7-02, 09:30 AM
nope that didn't help

BerksWebGuy
6-7-02, 11:18 AM
I bet it is...just give it a try...your page still has not been changed. Make sure you refresh it when you try. I will try also to when you reply.

MannInc
6-7-02, 11:32 AM
You have the form tag as this:

<FORM action="http://www.powweb.com/powweb-bin/FormMail.pl" method="POST">

Change it to (as suggested):

<FORM method="POST" action="/powweb-bin/FormMail.pl">

and it should work. You don't want to call it from PowWeb's site, but the server your site resides on. Each server has it's own powweb-bin with several preinstalled scripts.

Hope this helps!

NYColt
6-7-02, 04:24 PM
Yep thanks, that worked.