Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Your message could not be sent at this time.
Author Message
on_edge Offline
Junior Member
**

Posts: 5
Joined: Mar 2010
Reputation: 0
Post: #1
Your message could not be sent at this time.
Getting this error message. Captcha phrase is correctly entered. Tried multiple email addresses. Won't send. Tested public & private keys in WP-reCAPTCHA by posting a comment. It worked fine. Any thoughts?
11-03-2010 06:08 PM
Find all posts by this user Quote this message in a reply
Sam Offline
Administrator
*******

Posts: 60
Joined: Oct 2009
Reputation: 0
Post: #2
RE: Your message could not be sent at this time.
The reason you are getting that message is not because the reCAPTCHA phrase is wrong, but because WordPress could not send your email out.

It sounds like it may be a problem with the PHP configuration on your server - the reCAPTCHA Form plugin just uses the WordPress wp_mail() function to send email (which is essentially just using the standard PHP mail() function).

Your host should be able to check that it is enabled and configured correctly for you.
11-03-2010 08:37 PM
Visit this user's website Find all posts by this user Quote this message in a reply
squeak24 Offline
Junior Member
**

Posts: 2
Joined: Mar 2010
Reputation: 0
Post: #3
RE: Your message could not be sent at this time.
I am also experiencing the same problem, it has only started happening since reCAPTCHA changed servers to Google. Is there any reference to the IP in this plugin?
23-03-2010 07:47 PM
Find all posts by this user Quote this message in a reply
Sam Offline
Administrator
*******

Posts: 60
Joined: Oct 2009
Reputation: 0
Post: #4
RE: Your message could not be sent at this time.
The plugin uses the functionality from the reCAPTCHA library (recaptchalib.php) - the reCAPTCHA server URLs are:

Code:
define("RECAPTCHA_API_SERVER", "http://api.recaptcha.net");
define("RECAPTCHA_API_SECURE_SERVER", "https://api-secure.recaptcha.net");
define("RECAPTCHA_VERIFY_SERVER", "api-verify.recaptcha.net");

(the above is specified in the library not the plugin by the way)
24-03-2010 11:59 AM
Visit this user's website Find all posts by this user Quote this message in a reply
squeak24 Offline
Junior Member
**

Posts: 2
Joined: Mar 2010
Reputation: 0
Post: #5
RE: Your message could not be sent at this time.
(24-03-2010 11:59 AM)Sam Wrote:  The plugin uses the functionality from the reCAPTCHA library (recaptchalib.php) - the reCAPTCHA server URLs are:

Code:
define("RECAPTCHA_API_SERVER", "http://api.recaptcha.net");
define("RECAPTCHA_API_SECURE_SERVER", "https://api-secure.recaptcha.net");
define("RECAPTCHA_VERIFY_SERVER", "api-verify.recaptcha.net");

(the above is specified in the library not the plugin by the way)

Hi,


Can you do the following:
Zip up the extension directory you are currently using and attach it to this email
Overwrite recaptchalib.php with the one from http://code.google.com/p/recaptcha/downl...p-1.10.zip
- Ben

This is what the people at reCAPTCHA have told me to do, haven't done it yet, have been away for a couple of days and only just got back. Looks like there may have been a change with the recaptchalib.php
25-03-2010 10:21 PM
Find all posts by this user Quote this message in a reply
Local Offline
Junior Member
**

Posts: 5
Joined: Mar 2010
Reputation: 0
Post: #6
RE: Your message could not be sent at this time.
(25-03-2010 10:21 PM)squeak24 Wrote:  Hi,

Can you do the following:
Zip up the extension directory you are currently using and attach it to this email
Overwrite recaptchalib.php with the one from http://code.google.com/p/recaptcha/downl...p-1.10.zip
- Ben

This is what the people at reCAPTCHA have told me to do, haven't done it yet, have been away for a couple of days and only just got back. Looks like there may have been a change with the recaptchalib.php

No need to download the library v1.10 as its the same throughout within the plugin.
In reading through my mail server I've noticed as to why it cannot be sent for my side and maybe a few others.

When the mail gets sent my server likes to have an email to send to, in which the case states it doesn't.

Code:
To: My Wordpress Blog <>
Subject: New Message From My Wordpress Blog
X-PHP-Script: www.domain.com/index.php for ***.***.***.***, ***.***.***.***
Date: Wed, 31 Mar 2010 14:36:40 +0000
Return-Path: example@example
From: TESTING <example@example>
Message-ID: <dfc34d00f08ab97b0ff1aa5cc71c544e@www.domain.com>
X-Priority: 3
X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version 2.0.4]
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="UTF-8"

You have received a message from domain.  Message details are as follows:

Date and Time: Wednesday 31st March 2010 14:36:40

IP address: ***.***.***.*** (***.***.***.***)

Message: TESTING CONTACT FORM please reply if received!!

** Edited due to security reasons but all else is as shown.

In the first line there is no email address to send my emails to, this used to work perfectly fine before upgrading to 2.9 and 1.2:
Code:
To: My Wordpress Blog <>
(This post was last modified: 31-03-2010 05:56 PM by Local.)
31-03-2010 05:01 PM
Find all posts by this user Quote this message in a reply
Sam Offline
Administrator
*******

Posts: 60
Joined: Oct 2009
Reputation: 0
Post: #7
RE: Your message could not be sent at this time.
Are you trying this out on a live web server or locally with WAMPServer or similar?

Could you tell me what version of PHP you have installed please?
01-04-2010 12:43 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Local Offline
Junior Member
**

Posts: 5
Joined: Mar 2010
Reputation: 0
Post: #8
RE: Your message could not be sent at this time.
(01-04-2010 12:43 PM)Sam Wrote:  Are you trying this out on a live web server or locally with WAMPServer or similar?

Could you tell me what version of PHP you have installed please?

Live webserver
PHP version 5.2.13

the mail(); works fine on other plugins just not this one.
01-04-2010 03:45 PM
Find all posts by this user Quote this message in a reply
Sam Offline
Administrator
*******

Posts: 60
Joined: Oct 2009
Reputation: 0
Post: #9
RE: Your message could not be sent at this time.
Is there an email address shown in the plugin settings (it defaults to the original blog administrator's email address), and if so is the address shown valid and complete, without spaces before or after the address?
01-04-2010 09:50 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Local Offline
Junior Member
**

Posts: 5
Joined: Mar 2010
Reputation: 0
Post: #10
RE: Your message could not be sent at this time.
(01-04-2010 09:50 PM)Sam Wrote:  Is there an email address shown in the plugin settings (it defaults to the original blog administrator's email address), and if so is the address shown valid and complete, without spaces before or after the address?

Sam the plug-in is installed as you've written in your instructions. If it was a simple error as that I believe I would of fixed this by now.

The E-Mail address is as it should be within the plug-in settings.
NO NEED FOR CONTINUED SUPPORT ON THIS ERROR!

I found out it was the reCAPTCHA site getting my keys wrong causing these errors on sending.
(This post was last modified: 06-04-2010 04:51 PM by Local.)
06-04-2010 04:12 PM
Find all posts by this user Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  WP 3.0.1 Your message could not be sent at this time. webgyrl 2 87 20-08-2010 04:07 PM
Last Post: webgyrl

Forum Jump: