Click here to Skip to main content
15,892,674 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello everyone ,

I have a question my contact form in joomla. Last 8 months i used it and there isn't any problem. But from last 1-2 week it doesn't work.


When i click the send button , it's give me this error :

Not Found

The requested URL /info@mysite.com was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


In this error , i checked my url and my url is : www.mysite.com/info@mysite.com is it normal ?



I updated website to the latest joomla version.

Do you have any suggestion , about this problem ?
Posted

1 solution

You have an email link or form that's missing the mailto: protocol:
HTML
<a href="info@mysite.com">
<form action="info@mysite.com">

You need to add the protocol:
HTML
<a href="mailto:info@mysite.com">
<form action="mailto:info@mysite.com">
 
Share this answer
 
v2
Comments
kozmikadam 30-Oct-15 11:45am    
Hi Richard ,
I know , but i didn't wrote any code for this form components. It's a standart for joomla.
Richard Deeming 30-Oct-15 11:47am    
Then contact your hosting company to find out what has changed.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900