steffanih Posted August 2, 2010 Posted August 2, 2010 Hello, I have read through the forum on this subject and have yet to find a working solution. I appreciate any help/info you might have for me. Our site is hosted on GoDaddy.com and I have installed the PHP Mailer contribution. My settings are as follows in my email options: Email Transport Method: smtp Email Linefeeds: CRLF Use MIME HTML When Sending Emails: true Verify E-mail Addresses Through DNS: false Send E-mails: true Use PHPmailer class to send email: true PHPmailer Email Option: smtp Smtp Username: ******@*******.com Smtp Password: ************** Smtp Host: [email protected] Smtp Port: 25 Smtp Auth: false Smtp Use SSL: true The settings in my configure files are both: define('SMTP_MAIL_SERVER', 'relay-host.secureserver.net'); define('SMTP_PORT_NUMBER', '25'); define('SMTP_SENDMAIL_FROM', '*********@********.com '); define('SMTP_SENDMAIL_USERNAME', '***********'); define('SMTP_SENDMAIL_PASSWORD', '***********'); define('SMTP_SENDMAIL_SMTPAUTH', 'true'); define('SMTP_FROMEMAIL_NAME', 'Website name'); On checking my PHPinfo. The php.ini file is located in C:/PHP5/php.ini which is somewhere on the GoDaddy side where I cannot modify it. Our site is also a secondary branch on a shared hosting account. Can you see anything unusual here that might be causing all-things-email not to work? Suggestions as to what I can do to get the emails working? thanks.
Guest Posted August 2, 2010 Posted August 2, 2010 Steffani, Is there a reason you don't want to use the standard sendmail option ? Godaddy limits the smtp relays and charges for or denies all relays past the set point. The number of relays depends on your hosting account. Chris
Guest Posted August 2, 2010 Posted August 2, 2010 Steffani, Sorry I missed the comment about the php.ini If you create a new php.ini and upload it to your root it circumvents the default php.ini that Godaddy uses. Chris
steffanih Posted August 2, 2010 Author Posted August 2, 2010 I had tried the sendmail functions first without any luck, so I added the smtp contribution on to see if that would work. Maybe I am missing some sendmail code? Anything weird here? These are my admin/includes/configure defines: <?php define('HTTP_SERVER', 'http://www.************.com'); define('HTTP_CATALOG_SERVER', 'http://www.************.com'); define('HTTPS_CATALOG_SERVER', 'https://www.************.com'); define('ENABLE_SSL_CATALOG', 'true'); define('DIR_FS_DOCUMENT_ROOT', 'D:/Hosting/************/html/************/catalog/'); define('DIR_WS_ADMIN', '/catalog/admin/'); define('DIR_FS_ADMIN', 'D:/Hosting/************/html/************/catalog/admin/'); define('DIR_WS_CATALOG', '/catalog/'); define('DIR_FS_CATALOG', 'D:/Hosting/************/html/************/catalog/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); define('SMTP_MAIL_SERVER', 'relay-host.secureserver.net'); define('SMTP_PORT_NUMBER', '25'); define('SMTP_SENDMAIL_FROM', '************@************.com '); define('SMTP_SENDMAIL_USERNAME', '************'); define('SMTP_SENDMAIL_PASSWORD', '************'); define('SMTP_SENDMAIL_SMTPAUTH', 'true'); define('SMTP_FROMEMAIL_NAME', 'website name*'); define('DB_SERVER', '************'); define('DB_SERVER_USERNAME', '************'); define('DB_SERVER_PASSWORD', '************'); define('DB_DATABASE', '*************'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); ?> and includes/configure.php <?php define('HTTP_SERVER', 'http://www.************.com'); define('HTTPS_SERVER', 'https://www.************.com'); define('ENABLE_SSL', true); define('HTTP_COOKIE_DOMAIN', 'www.************.com'); define('HTTPS_COOKIE_DOMAIN', 'www.************.com'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/catalog/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', 'D:/Hosting/************/html/************/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('SMTP_MAIL_SERVER', 'relay-host.secureserver.net'); define('SMTP_PORT_NUMBER', '25'); define('SMTP_SENDMAIL_FROM', '************@************.com '); define('SMTP_SENDMAIL_USERNAME', '************'); define('SMTP_SENDMAIL_PASSWORD', '************'); define('SMTP_SENDMAIL_SMTPAUTH', 'true'); define('SMTP_FROMEMAIL_NAME', 'website name'); define('DB_SERVER', '************7'); define('DB_SERVER_USERNAME', '************'); define('DB_SERVER_PASSWORD', '************'); define('DB_DATABASE', '************'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); // Credit Card Number Encryption // ** W A R N I N G ** TEXT_ENCRYPTION_PW cannot be changed after first use, the risk of data loss due to encryption // Password stored in value TEXT_ENCRYPTION_PW can be anything from a phrase or your pets name define('TEXT_ENCRYPTION_PW','osCommerce 2.2ms2-051113'); define('USE_ENCRYPTION', true); // to use encryption change value to TRUE ?>
steffanih Posted August 3, 2010 Author Posted August 3, 2010 I tried the other smtp contribution (smtpauth-for-osc2) and I now have the ELO/HELO option in my email options. I've played with my settings again and it appears to be trying to function except i get this error message when trying the contact page. Fatal error: Call to undefined method stdClass::add_html() in catalog\includes\functions\general.php on line 1106 I feel like resetting all of my email to the original setup but I've added several contributions and would not know which files were the ones that control email functioning. I appreciate any help!
Guest Posted November 22, 2010 Posted November 22, 2010 I tried the other smtp contribution (smtpauth-for-osc2) and I now have the ELO/HELO option in my email options. I've played with my settings again and it appears to be trying to function except i get this error message when trying the contact page. Fatal error: Call to undefined method stdClass::add_html() in catalog\includes\functions\general.php on line 1106 I feel like resetting all of my email to the original setup but I've added several contributions and would not know which files were the ones that control email functioning. I appreciate any help! n magazine.com we are having this same issue. our phpmailer features are tuned in, yet a smtp un connection error, plus a standard headers already sent error, as stated in your posts; This all leaves us with a vps from godaddy, and and no customer mail going out. Have you any developments on your end.
germ Posted November 22, 2010 Posted November 22, 2010 n magazine.com we are having this same issue. our phpmailer features are tuned in, yet a smtp un connection error, plus a standard headers already sent error, as stated in your posts; This all leaves us with a vps from godaddy, and and no customer mail going out. Have you any developments on your end. n-magazine.com | floor 13 electronics. confidential - ©2010Sbt. 1121 Site security has been compromised. Hack files now in your catalog folder: google90d5b48e914e8c84.php googlebc89cc7535bc49ad.php googled44a4359dcc7ddd6.php googlee016bb4283a4b794.php There are most likely similarly named files in the /catalog/images folder. Visit the link below: How to Secure Your Site Pay close attention to "SECURING THE ADMIN" - Yours is vulnerable. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
Guest Posted November 22, 2010 Posted November 22, 2010 Site security has been compromised. Hack files now in your catalog folder: google90d5b48e914e8c84.php googlebc89cc7535bc49ad.php googled44a4359dcc7ddd6.php googlee016bb4283a4b794.php There are most likely similarly named files in the /catalog/images folder. Visit the link below: How to Secure Your Site Pay close attention to "SECURING THE ADMIN" - Yours is vulnerable. Is this your doing, or a standard jobby by some punk. we are ssl secured, perhaps gnu licensing clause is at risk of thorough review. (?). any further instructions, as to remove these elements, as its only a mail issue at large. our hackguardian element, and logging, should have a tracable for this type of trespass on property. Have you any developments on your end.
Guest Posted November 22, 2010 Posted November 22, 2010 Jim Posted the link to secure your site. You should take his advice and clean and secure your site before worrying about any other issues. Chris
germ Posted November 22, 2010 Posted November 22, 2010 n magazine.com Is this your doing, or a standard jobby by some punk. we are ssl secured, perhaps gnu licensing clause is at risk of thorough review. (?). any further instructions, as to remove these elements, as its only a mail issue at large. our hackguardian element, and logging, should have a tracable for this type of trespass on property. Have you any developments on your end. n-magazine.com | floor 13 electronics. confidential - ©2010Sbt. 1121 2 For your information, Einstein, SSL has nothing at all to do with site security. Get a clue. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
Recommended Posts
Archived
This topic is now archived and is closed to further replies.