Viewing 11 replies - 1 through 11 (of 11 total)
  • I am having the exact same issue. I have followed the suggest troubleshooting in the FAQ to no avail. This is issue is spread across 5 different sites (and 2 WP versions). I have tried disabling (on all 5 sites) all extensions except for Contact Form 7 as well as set to default theme…same issue. These sites are all hosted on one server (the contact forms worked before migrating to this server) so I’m fairly positive the issue is concentric to this server. However, I have test PHPsendmail and works fine and WordPress is able to send out from the server for new registration, comments, etc.
    What are Contact Form 7’s requirements for the server?

    Thanks in advance for any help.

    Thread Starter areed622

    (@areed622)

    Where is your site hosted (what hosting company?)

    I host it myself so have full control of the server. Anything else using phpsendmail works just fine so I’m curious if there is some special php module that needs loaded or something of that sort.

    Is PHP mail() enabled on the server?

    Yes and it is functioning. Have tested with the following script:

    <?php
    $to = “me@example.com”;
    $subject = “Test PHP Sendmail”;
    $message = “Hello! This is a simple email message.”;
    $from = “test@example.com”;
    $headers = “From:” . $from;
    mail($to,$subject,$message,$headers);
    echo “Mail Sent.”;
    ?>

    The email delivers.

    Thread Starter areed622

    (@areed622)

    My mail is sending as well. Its just that the ajax gif keeps spinning even though the mail has been send and has been received on the mail server.

    Mine, unfortunately, isn’t sending out (Just the Contact Form mail… everything else sends)

    Thread Starter areed622

    (@areed622)

    did you add the outgoing mail server to your php.ini file?

    Yes I have. I am the admin of the mail server as well and have verified that when using Contact Form it doesn’t even try to talk to the SMTP server, but everything else goes through fine.

    Thread Starter areed622

    (@areed622)

    I tried disabling each other plugin. I didn’t change themes…. CF7 has worked with this theme for several years. I think the problem started after the last upgrade for CF7.

    I may try to disable the ajax that displays the spinning wheel. What do you think?

    Thread Starter areed622

    (@areed622)

    I just tried a vanilla 2011 theme… same problem.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘[Plugin: Contact Form 7] Spinning JS wheel keeps spinning’ is closed to new replies.