Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17
  1. #11
    Join Date
    Nov 2006
    Location
    Papworth, Cambridgeshire, UK
    Posts
    731
    Plugin Contributions
    3

    Default Re: Godaddy email problems...

    Permissions etc are usually set on a per website/vhost basis in a hosted environment.

  2. #12
    Join Date
    Nov 2007
    Posts
    28
    Plugin Contributions
    0

    help question Re: Godaddy email problems...

    Guess I'll be calling them. Everything is automated at GoDaddy so I'm wondering why there would be a difference/permission change? Both accounts are on the exact same hosting plan. Odd, very odd.

    Chuck do you have an AOL IM or MSN we could chat?

  3. #13
    Join Date
    Nov 2007
    Posts
    28
    Plugin Contributions
    0

    help question Re: Godaddy email problems...

    One last thing...

    I am able to send mail via outlook express using their smtpout server and using my authentication credentials, just can't do that in ZenCart...would that make any difference?

    Thanks,
    Steve

  4. #14
    Join Date
    Jan 2004
    Posts
    66,451
    Plugin Contributions
    81

    Default Re: Godaddy email problems...

    Quote Originally Posted by steveo3279 View Post
    I am able to send mail via outlook express using their smtpout server and using my authentication credentials, just can't do that in ZenCart...would that make any difference?
    That's an important fact to know. However, your computer and your webserver are each separate computers. Yours is accessing their network from an external location. The webserver is accessing it from another location, perhaps internal. Maybe they're just not allowing access from your webserver to your mailserver ... and don't know it.
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #15
    Join Date
    Nov 2007
    Posts
    28
    Plugin Contributions
    0

    help question Re: Godaddy email problems...

    I was told by them that the server settings were exactly the same.

    They did say to make sure the sendmail path needs to be set to: /usr/sbin/sendmail
    and use PHP

    Where do I go to make sure that is set correctly?

    Thanks,
    Steve

  6. #16
    Join Date
    Jan 2004
    Posts
    66,451
    Plugin Contributions
    81

    Default Re: Godaddy email problems...

    Quote Originally Posted by steveo3279 View Post
    I
    They did say to make sure the sendmail path needs to be set to: /usr/sbin/sendmail
    and use PHP

    Where do I go to make sure that is set correctly?
    If you tell Zen Cart to use "PHP" as the email transport method, then it will use "whatever the server administrator has configured PHP to use for sending email" ... meaning it's up to "them" to make sure PHP is configured properly ... meaning ... don't worry about the sendmail path.
    .
    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #17
    Join Date
    Nov 2006
    Location
    Papworth, Cambridgeshire, UK
    Posts
    731
    Plugin Contributions
    3

    Default Re: Godaddy email problems...

    Hmm, the 'take two aspirins and call me in the morning response. The simplest way to test is to reduce everything to the lowest common denominator.

    If you take the following code, and paste it into a file, call it mailtest.php or something and edit it to use real email addresses. Then copy it into the main folder of your site, and open it with a browser, with http://www.yourdomain.com/mailtest.php

    Code:
    <?php
    $to      = '[email protected]';
    $subject = 'the subject';
    $message = 'hello';
    $headers = 'From: [email protected]' . "\r\n" .
        'Reply-To: [email protected]' . "\r\n" .
        'X-Mailer: PHP/' . phpversion();
    
    mail($to, $subject, $message, $headers);
    ?>
    It is simply a small piece of PHP code calling the mail() function. If that works, then you have some broken files or similar in your Zen Cart install. If not, your hosts are lying through their teeth.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. E-mail problems at GoDaddy
    By leisbi in forum General Questions
    Replies: 10
    Last Post: 3 Nov 2011, 05:59 AM
  2. Godaddy email problems...
    By danb in forum General Questions
    Replies: 5
    Last Post: 28 May 2011, 01:21 PM
  3. godaddy email problems
    By kaylee_girl in forum General Questions
    Replies: 1
    Last Post: 4 Feb 2011, 09:16 PM
  4. Problems with Godaddy Installation?
    By estore5791 in forum Installing on a Linux/Unix Server
    Replies: 5
    Last Post: 23 Mar 2009, 09:51 PM

Posting Permissions

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