Page 37 of 81 FirstFirst ... 27353637383947 ... LastLast
Results 361 to 370 of 805
  1. #361
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by strelitzia View Post
    I've experienced this bug today for a client in Australia who takes international orders in other currencies. I've located the cause of the problem and have made some edits to resolve the situation. Once I've tested it to be sure it doesn't cause any problems I'll add the changes to a clean downloaded copy and send them over for the mods to approve.
    Awesome!!
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #362
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    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
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  3. #363
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by Carbonless View Post
    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..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #364
    Join Date
    Jan 2007
    Location
    Illinois, USA
    Posts
    312
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    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!





    Quote Originally Posted by DivaVocals View Post
    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..
    NTO: building a better network thru collaboration
    www.needtoorder.com | www.coffeewitheinstein.com

  5. #365
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by Carbonless View Post
    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!
    Wish I had an answer, but since Super Orders doesn't touch the file that is coughing up the error (includes/classes/shopping_cart.php), it's difficult for me to offer any insight..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #366
    Join Date
    Jun 2007
    Location
    Bronx, New York, United States
    Posts
    681
    Plugin Contributions
    8

    Default Re: Super Orders v4.0 Support Thread

    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:

    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 ($resultMYSQL_NUM);
                    
    $cu $row[0];
                    
    $cv $row[1];
                    
    ?>
    <!-- EOF added to get currency type and value for totals -->
    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
    $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 hope this helps anyone.

  7. #367
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    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:
    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
    which is baffling because we never installed the plugin COWOA.

    Thanks for any help to resolve this issue.

    Thanks for any help on this.

  8. #368
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by SweatingItOut View Post
    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:
    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
    which is baffling because we never installed the plugin COWOA.

    Thanks for any help to resolve this issue.

    Thanks for any help on this.
    Whoever installed this for you installed the files which are meant for stores who have Super Orders and COWOA installed.. (they are CLEARLY marked in the fileset..)
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #369
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: Super Orders v4.0 Support Thread

    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.

  10. #370
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by jeking View Post
    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.
    There isn't.. I'd started working on it before I left for vacation.. won't be back for a week.. if you want to tackle it feel free..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

 

 
Page 37 of 81 FirstFirst ... 27353637383947 ... LastLast

Similar Threads

  1. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1877
    Last Post: 6 May 2025, 05:10 PM
  2. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 PM
  3. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  4. OLD Super Orders 2.0 (See v3.0 thread instead)
    By BlindSide in forum All Other Contributions/Addons
    Replies: 2019
    Last Post: 17 Jan 2012, 05:43 AM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR