| Post |
|
Guest
| Pablete 3:53 am June 28, 2007
| |
|
|
Hello, can you help me with this ?
On submit, a green "ERR" message appears at the top of the form
I´m testing with
Browser: IE6
URL: http://www.pabletes.com.ar/?page_id=26
cForms version: 5
Other Plugins: NO
Wordpress: 2.0.2
Thanks,
Pablo
|
|
|
Admin
| Oliver Munich, Germany posts 6094 6:58 am June 28, 2007
| |
|
|
If you see this error, the form and thus plugin usually works fine to the point of sending the email.
- please double check your Form Admin / Email Options settings thoroughly for correct email address(es)
- Try alternative admin email addresses
- Do you receive any emails from W (e.g. passwords, comments notifications)?
- Check your PHP servers mail() function
- Can you check your mail servers log files?
The issue has very likely to do with either a local mail server problem, a malformed email address or a general issue with the PHP function mail(); – if the latter is the case and your blog is using wp_mail(); you may want to try and replace all instances of @mail with wp_mail in cforms.php (search &replace).
You may want to check with your hosting provider first.
|
|
|
|
|
Guest
| Pablete 3:52 am June 29, 2007
| |
|
|
Hi Oliver…
I´ve tried those things but i couldn´t solve it.
- Everything is ok
- i changed the address but it´s the same
- I receive mails from WP without any problem
- I changed @mail for wp_mail but and now i don´t get any message, but the mail is still missing. If i disable ajax i get the same message "Error…."
- I can´t check the log
Any other idea ?
Thanks
I get this message
Warning: mail() [function.mail]: SMTP server response: 550 Sender address must be specified.
|
|
|
Admin
| Oliver Munich, Germany posts 6094 6:59 am June 29, 2007
| |
|
|
When and where do you get this warning message? After you changed to wp_mail?
You could try one more thing, and that is: search the hardcoded FROM: address, just look for "From:" and replace whatever comes after that with an email you're positive that your mail server knows and accepts:
Look for all:
$headers = "From: \\"".get_option('blo [....] ">" . $eol;
And change to,e g.:
$headers = "From: <youremail@domain.com>" . $eol;
I can also offer to take a quick look at your form configuration, just use the BACKUP button on the main admin page and reply to my email (just send you one).
|
|
|
|
|
Guest
| Pablete 7:02 pm June 30, 2007
| |
|
|
Excellent !!!! That´s the solution for this problem !
Here is what i did :
1) Keep the mail function (It wasn´t necessary to change @mail for wp_mail )
2) Change $headers = "From: \\"".get_option('blo [....] ">" . $eol;
FOR
$headers = "From: <wordpress@mydomain.com>" . $eol;
That solved the problem !!!!!
Thanks Oliver
|
|
|
Admin
| Oliver Munich, Germany posts 6094 7:16 pm June 30, 2007
| |
|
|
Excellent!
In hindsight, I think I should've left the FROM: config field in the admin interface for better flexibility – despite the risk that I may actually get even more support requests for mal-configured ones ;-)
|
|
|
|