Hello all, very new to digital point and I'm very new to all this. I have downloaded a free template awhile ago and tweaked it to my liking...on my contact page I have a form set up where a person enters their name, email and a msg and a button to post but when I test it I get this: Any suggestions on what I need to do? 405 Method not allowed Method Not Allowed The requested method POST is not allowed for the URL /ultimateav.ca/contact.html. S
I'm guessing there is an error to where the form is being posted to, but i can't say without looking ate the actual code.
I'm fairly certain that you are missing something in the little section of code for your form. You code is: <form method="post" action="MISSING PART"> <p><label for="name">Name: </label><input type="text" name="name" id="name" /></p> <p><label for="email">E-mail: </label><input type="text" name="email" id="email" /></p> <p><label for="msg">Message: </label><textarea name="message" id="msg" rows="5" cols="25"></textarea></p> <p><label for="submit"> </label><input type="submit" id="submit" value="send" class="btn" /></p> </form> You are missing a "Go to destination" for the action="??????" part of the form. Sort that out and I think it should work. Actual page your working from is @ http://ultimateav.ca/contact.html