Page 3 of 3 FirstFirst 123
Results 21 to 30 of 30
  1. #21
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Email Stopped Working! Please Help!

    Try this temporary debug measure:

    Create a new file: /includes/extra_configures/email_debugging.php
    Contents of the file is just this line:
    Code:
    <?php define('EMAIL_SYSTEM_DEBUG','5');
    Then try sending a contact-us message.
    It should display a barrage of debug info on-screen when it tries to send. I'll need to see that info.
    .

    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.

  2. #22
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    113
    Plugin Contributions
    0

    Default Re: Email Stopped Working! Please Help!

    Quote Originally Posted by DrByte View Post
    Interesting. It just worked fine for me.
    Yeah, seems like it works, and gives a successful message, but the mail is never received!


    Quote Originally Posted by DrByte View Post
    Try this temporary debug measure:

    Create a new file: /includes/extra_configures/email_debugging.php
    Contents of the file is just this line:
    Code:
    <?php define('EMAIL_SYSTEM_DEBUG','5');
    Then try sending a contact-us message.
    It should display a barrage of debug info on-screen when it tries to send. I'll need to see that info.
    Thanks DrByte, I'll give that a try now, and get you the info right after!
    ********************************
    I did actually get it to work, but not the way I wanted. I created an email through my domain, and used that for the ZC setup. This works fine. With the Contact-us, the customer will never know which email is used, so only left mail sent through the admin.

    ZC says that the "from" email can be over-ridden from the mail module, but that doesn't work. Still arrives with the new email address.

    To avoid having to send a new email to all customers, I decided to just "relay" to gmail as well!
    *****************************************
    Now with that said, I will try your debug idea, DrByte, and report the results!
    Would be nice to fix the original problem! Thanks for your continued help!

  3. #23
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    113
    Plugin Contributions
    0

    Default Re: Email Stopped Working! Please Help!

    Well, DrByte, that totally didn't work! In FireFox, I just get a blank page after sending. In IE, it gives me a blank page with a 500 error!

    If I uploaded the file before going to the contact page, the site wouldn't even load! Tried navigating to the contact page and uploading the file just before send, but result was a blank page anyway!

  4. #24
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Email Stopped Working! Please Help!

    I don't understand why that would give a blank screen, unless you copy-and-pasted and it somehow copied some extra characters, visible or not.
    .

    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. #25
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    113
    Plugin Contributions
    0

    Default Re: Email Stopped Working! Please Help!

    Quote Originally Posted by DrByte View Post
    I don't understand why that would give a blank screen, unless you copy-and-pasted and it somehow copied some extra characters, visible or not.
    Ok, not sure what's wrong, but first copied your code directly into a new file and put open & close php tags around it. That's probably what gave me the blank screen!

    Now, I tried pasting your code and just added a closing php tag! Nothing happens! Looks like mail is sent, and get success screen, but no mail delivered!

    Then tried your code exactly with nothing else, and same as above! Nothing happens!

    Confused....

  6. #26
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    113
    Plugin Contributions
    0

    Default Re: Email Stopped Working! Please Help!

    UPDATE:
    Now really strange... I replaced the ZC setup data with the new email and setup details and figured I would test to make sure it still works. However, I forgot to remove the debugging script, and... Got the data like you said!

    Only issue is that it is working with the new email!

    Not sure I should post it here, so going to send you a PM, DrByte!

  7. #27
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Email Stopped Working! Please Help!

    The details you posted show the email correspondence with your GD server.
    It *should* do the same thing with your GA server if you change the settings to that.
    .

    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.

  8. #28
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: Email Stopped Working! Please Help!

    Also note that when you set your port to 465 or set your mailserver name to smtp.gmail.com, Zen Cart will attempt to connect to gmail over SSL. If your hosting company has busted their server such that it can't connect using SSL (perhaps a broken or expired or incorrectly configured certificate at the server level?) then the SSL connection to the gmail server farm will fail.
    .

    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.

  9. #29
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    113
    Plugin Contributions
    0

    Default Re: Email Stopped Working! Please Help!

    Quote Originally Posted by DrByte View Post
    Also note that when you set your port to 465 or set your mailserver name to smtp.gmail.com, Zen Cart will attempt to connect to gmail over SSL. If your hosting company has busted their server such that it can't connect using SSL (perhaps a broken or expired or incorrectly configured certificate at the server level?) then the SSL connection to the gmail server farm will fail.
    Thanks DrByte, that makes sense. will give it another try today This time I'll try leaving the port and other settings as they are, and just changing to the gmail address. As far as I know, gmail has never been able to connect without the ssl port, but I'll play around to see if I can get the data!

    I appreciate your continued help, DrByte!

  10. #30
    Join Date
    Jan 2011
    Location
    Ohio
    Posts
    113
    Plugin Contributions
    0

    Default Re: Email Stopped Working! Please Help!

    Well DrByte, all attempts to run the debug fail when using the gmail address. either I get error, failed to connect, or it appears to send and nothing happens.

    Tried every combination setting I could think of, and the only way the debug runs is when I have the domain mail settings in there!

    Interesting thing I heard... Talking to my neighbor, and she said that she heard on the news that Google was having some "mail" problems! Because of the fact that it was working just fine, and all of a sudden stopped, guess it is very possible that gmail itself is the cause!

    Maybe it's good that I setup the domain mail, this way the copies sent to gmail are just "a backup"!

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. v151 Adding products to cart sudenly stopped working. Please help.
    By The Sacred Wheel in forum General Questions
    Replies: 2
    Last Post: 8 Sep 2013, 06:08 AM
  2. Urgent help please. All attributes stopped working!
    By michaelchu in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 7 Jul 2012, 10:24 PM
  3. Shopping cart stopped working please help
    By adam123 in forum General Questions
    Replies: 1
    Last Post: 1 Nov 2011, 11:29 AM
  4. Attributes Stopped Working - Please Help!
    By patstuckemeyer in forum General Questions
    Replies: 1
    Last Post: 29 Sep 2008, 12:25 AM
  5. UPSXML just stopped working, PLEASE HELP!
    By technicallynorth in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 5 Dec 2007, 03:51 AM

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