HI,

I am newbie to web-designing and trying to to configure NMS formmail step-by-step as shown on http://www.ironspider.ca/forms/nmsform.htm on a local XAMPP installation.

PATH TO CGI-BIN: E:\E:\xampp\cgi-bin Path to Perl: E:\xampp\perl\bin\perl.exe Path to SendMail : E:\xampp\sendmail\sendmail.exe PATH to feedback form: http://127.0.0.1/xampp/form.html

CODE OF FORM.HTML
-----------------
<html> <head> <title> Form Function Test</title> </head> <body>

This is a simple form

<form action="E:\xampp\cgi-bin\FormMail.pl" method="POST">

First Name <input type="text" name="fname" />

Last Name <input type="text" name="lname" />

E-Mail       <input type="text" name="email" />

Pls Enter Your Comments:
<textarea name="comm" rows="10" cols="30"></textarea>

<input type="submit" value="Submit Feedback" /> </form> </body> </html>

When i hit submit Firefox gives me an error "Firefox does not know how to open this address because the protocol isn't associated with any program.

When i run the localhost\cgi-bin\FormMail.pl in Google Chrome it provides the following Error:

GET request The HTML form fails to specify the POST method, so it would not be correct for this script to take any action in response to your request.

If you are attempting to configure this form to run with FormMail, you need to set the request method to POST in the opening form tag, like this: <form action="/cgi-bin/FormMail.pl" method="post">

FormMail © 2001-2003 London Perl Mongers ------------------------------------------------------------------------------------------------------------------------

Pls help me resolve this error.

Thanks for your kind suggestion and time.

In reply to Path to Perl on local web host by rseni

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.