+ Reply to Thread
Results 1 to 9 of 9

Thread: Stopped recieving info from forms??
      
   

  1. #1
    chadzog is offline Sergeant
    Join Date
    Oct 2006
    Posts
    33

    Default Stopped recieving info from forms??

    My form has been working well on my site, and as of today (Oct 1st). I haven't been getting any of the information from the forms. I added the form to multiple pages on my site 2 weeks ago and has been working smoothly. All of this information is sent to a hotmail account. I've also tried to send this information to an additional gmail accound w/o success, but it has been going fine to my hotmail acct so I havent' worried about it too much. Any suggestions would help.

    My site is http://www.kansascityconcrete.net

    Thanks,

    Chad

  2. #2
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Stopped recieving info from forms??

    Well- if nothing has been changed in the form or on the website- then possibly the problem with gmail or hotmail.

    I have sent you a test with all the fields filled in with test

    Let me know if you received it. Also- please post the php code you are
    using to process the form and we will have a look.

    Andy
    PHP- is a blast!

  3. #3
    chadzog is offline Sergeant
    Join Date
    Oct 2006
    Posts
    33

    Default Re: Stopped recieving info from forms??

    i'm receiving other email w/ my hotmail and gmail accounts just not the form data.

    all of a sudden stopped receiving it w/ my other sites as well, http://www.kansascityconcrete.net , and http://www.kansascitypooldeck.com

    here is the php code. for kansascityconcrete.net

    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "resurfacebros********.com";"referredlocal******.c om";
    $mailsubj = "concrete.net lead";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>>

  4. #4
    chadzog is offline Sergeant
    Join Date
    Oct 2006
    Posts
    33

    Default Re: Stopped recieving info from forms??

    meant to put http://www.kansascityconcrete.info as my additional site.

    could this be a server issue.?

  5. #5
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Stopped recieving info from forms??

    In this line;
    $mailto = "resurfacebros********.com";"referredlocal@gma il.c om";
    change the ; to a , like so and get rid of the space in the last com
    like so;

    $mailto = "resurfacebros ********.com","referredlocal ******.com";

    Save/Publish and test.

    I rather doubt that it is a server issue. Have you checked your e-mail accounts and made sure that....
    1- you have not reached account size limit
    2- that the mail is now going into your spam folders

    Andy
    PHP- is a blast!

  6. #6
    chadzog is offline Sergeant
    Join Date
    Oct 2006
    Posts
    33

    Default Re: Stopped recieving info from forms??

    didn't work. this is an issue with all of my sites. never had problems. email account isn't full and nothing in spam. thanks for your attention

    http://www.kansascityconcrete.net
    http://www.kansascityconcrete.info
    http://www.kansascitypooldeck.com

  7. #7
    chadzog is offline Sergeant
    Join Date
    Oct 2006
    Posts
    33

    Default Re: Stopped recieving info from forms??

    tried switching the email to a gmail account only. previously i had these going to both a gmail and hotmail on one website and only a hotmail account on the other two websites. seems to be working fine now. I wonder if it has something to do w/ MSN changing their email lately w/ the windows live hotmail

  8. #8
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Stopped recieving info from forms??

    Sorry- noticed something I hadn't before. Try the $mailto line like so

    $mailto = "resurfacebros********.com, referredlocal******.com";

    Had too many double quotes in there.

    Andy
    PHP- is a blast!

  9. #9
    chadzog is offline Sergeant
    Join Date
    Oct 2006
    Posts
    33

    Default Re: Stopped recieving info from forms??

    cool, i'll try it that way. I tried hotmail on its own and gmail. hotmail didn't work. gmail worked perfect. I truly think hotmail's new version has some issues.

    i'll give your suggestion a shot so i can get it to both. thanks again

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49