Have you gotten any answer to this problem? I am getting the same thing and, if I can't resolve it, I'd rather not use the mod.
NEXT QUEST:
Has anyone found any instructions to UNinstall the COWOA mod?
Printable View
I just asked that question two posts ago.
I deleted the appropriate code from the files ... but would like to have an uninstall .sql .....
I guess no one has the answer. I,also, had to go through and pick out all the pieces.
I only use PayPal. I really like FEC and COWOA, but has cost so much in sales. I have had several customers call. And I am beyond frustration level. :frusty::frusty:
What files did you modify/delete? Do customers still show up in admin? Wondering how you do this because all information will go directly to PayPal.
I found the answer in a (much) earlier post on this thread:
Which is what I just done and seems to be working fine now :)Quote:
I replaced modules/pages/login/header_php.php with the origional code from the over-writes folder.
I have a ZenCart 1.3.8a site, www.lifering.com, on which COWOA has been performing brilliantly for months. However, I recently got an update notice from ZC about a patch for PHP 5.3 - it apparently breaks ZC extravagantly. I consulted my ISP about their upgrade plans, and they're going to upgrade to PHP 5.3 in about 2 weeks, which means I need to get cracking.
The patch contains 11 files, of which one is part of COWOA:
/<ADMIN>/orders.php
(I changed the name of /admin last summer per another patch.)
I put the patch file in WinMerge and compared it against my production file and there are exactly 5 differences, but - how do I know what they may break? I don't have a test site. WinMerge will only produce a diff file in HTML, and I can't upload HTML to show you.
Has anybody done this and was it OK? Is anybody running COWOA successfully on PHP 5.3??
OK, for the record, and because I only have a short time before PHP 5.3 rolls out, I went ahead and put it in. I modified the orders.php in the patch by putting back in the two sections that referenced COWOA, and leaving untouched the patched code that didn't. For the record, in case it helps someone else, here are the changes I made.
In every case below, the first line is from the patch; the second line is from the production COWOA file.
First:
date_purchased from " . TABLE_ORDERS . "
versus
date_purchased, COWOA_order from " . TABLE_ORDERS . "
I think we're safe with the COWOA entry from that. Changed.
Second:
$zc_max_days = zen_date_diff($check_status->fields['date_purchased'], date('Y-m-d H:i:s', time())) + DOWNLOAD_MAX_DAYS;
versus
$zc_max_days = date_diff($check_status->fields['date_purchased'], date('Y-m-d H:i:s', time())) + DOWNLOAD_MAX_DAYS;
No COWOA mentions; keep the patch version.
Third:
date_purchased from " . TABLE_ORDERS . "
versus
date_purchased, COWOA_order from " . TABLE_ORDERS . "
Keep the COWOA version.
Fourth:
EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n\n" .
EMAIL_TEXT_INVOICE_URL . ' ' . zen_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n\n" .
EMAIL_TEXT_DATE_ORDERED . ' ' . zen_date_long($check_status->fields['date_purchased']) . "\n\n" .
versus
EMAIL_TEXT_ORDER_NUMBER . ' ' . $oID . "\n\n";
if(!$check_status->fields['COWOA_order']) {
$message .= EMAIL_TEXT_INVOICE_URL . ' ' . zen_catalog_href_link(FILENAME_CATALOG_ACCOUNT_HISTORY_INFO, 'order_id=' . $oID, 'SSL') . "\n\n";
}
$message .= EMAIL_TEXT_DATE_ORDERED . ' ' . zen_date_long($check_status->fields['date_purchased']) . "\n\n" .
Damn if I'm sure, but I think I need to keep the COWOA stuff here.
Last:
$zc_max_days = zen_date_diff($check_status->fields['date_purchased'], date('Y-m-d H:i:s', time())) + DOWNLOAD_MAX_DAYS;
versus
$zc_max_days = date_diff($check_status->fields['date_purchased'], date('Y-m-d H:i:s', time())) + DOWNLOAD_MAX_DAYS;
Keep the patch version.
After I rolled this out, I ran a full purchase transaction and it worked correctly. I hope it all still works after the PHP upgrade.