Awesome!!:clap:
Printable View
Blank White Screen when trying to login OR add items to cart AFTER installing Super Orders 4.0.9 into a fresh install of 1.5.1 with no other mods.
I have triple checked to make sure all files were uploaded and that the core files that had changes, were merged correctly.
ANY known issues with this?
/index.php?main_page=login&action=process (blank screen)
error log:
PHP Fatal error: Call to undefined method shoppingCart::generate_cart_id() in /home/user/public_html/includes/classes/shopping_cart.php on line 174
Known issues are posted here in the support thread.. You could search this thread and see that THIS is not one of them.. Based on the error, this looks like another issue.. Super Orders doesn't touch this file: includes/classes/shopping_cart.php
Sounds like another module you are using which may SHARE files with Super Orders is the culprit which is the cause of the error.. your merges with this other module may not be correct..
Diva
Been racking my brain trying to figure this one out. Just before I installed super orders, I backed up the database and file structure. If I roll it back, everything works as it suppose to (minus having the SO mod installed.) I have one other mad installed, Master Password.
I thought if anyone had experienced this same issue and it was a known fix, it would save me from having to roll back and reinstall...
Thank you for attention to this post!
I'm using:
PHP Version 5.4.16
ZenCart Version 1.5.3
Super Orders Version 4.0.9
So after I performed the upgrades to ZenCart 1.5.3 and later upgraded to PHP 5.4.16, I started to get the following "warning" notices in my logs folder:
[07-Jul-2014 20:59:38 America/New_York] PHP Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\Program Files (x86)\wampserver\www\zencart\admin\orders.php on line 1218
I tracked the down the code to the following lines and noticed that no currency value was being returned in the Amount Applied and Balance Due values:
I know it's not a ground breaking error, but I absolutely despise Warning messages in my log folder. So I made an edit to the file as follows:PHP Code:
<!-- BOF added to get currency type and value for totals -->
<?php $dbc="select currency, currency_value from " . TABLE_ORDERS . " where orders_id ='" . $_GET['oID'] . "'";
$result = mysql_query($dbc);
$row = mysql_fetch_array ($result, MYSQL_NUM);
$cu = $row[0];
$cv = $row[1];
?>
<!-- EOF added to get currency type and value for totals -->
I hope this helps anyone.PHP Code:
<!-- BOF added to get currency type and value for totals -->
<?php
$dbc= $db->execute("select currency, currency_value from " . TABLE_ORDERS . " where orders_id ='" . $_GET['oID'] . "'");
$cu = $dbc->fields['currency'];
$cv = $dbc->fields['currency_value'];
?>
<!-- EOF added to get currency type and value for totals -->
I am using Zen vs. 1.5.1 and the very latest super orders plugin.
PHP Version: 5.2.17 (Zend: 2.2.0) PHP Memory Limit: 18M
Database: MySQL 5.5.32-log
URL: bahamaschequeservices.com/orders
Everything is working great but now customers can't view their past invoices by clicking the View button in the "my account" page.
They get the message "WARNING: An Error occurred, please refresh the page and try again."
Refreshing doesn't work.
It was a new install of the plugin and very little about the shopping cart is customized.
I have found an error in the logs:
which is baffling because we never installed the plugin COWOA.Code:[08-Jul-2014 10:48:53] PHP Fatal error: 1054:Unknown column 'COWOA_order' in 'field list' :: select customers_name, customers_email_address, orders_status,
date_purchased, COWOA_order from orders
where orders_id = '10907' in /hermes/waloraweb033/b41/as.bahamaschequeservice/orders/includes/classes/db/mysql/query_factory.php on line 120
Thanks for any help to resolve this issue.
Thanks for any help on this.
Is there an update of this for Zen 1.5.3? If not, I'd be willing to help create and/or test one. I need it for myself anyway.