Page 36 of 81 FirstFirst ... 26343536373846 ... LastLast
Results 351 to 360 of 805
  1. #351
    Join Date
    Apr 2014
    Location
    USA
    Posts
    3
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    New Install 1.5.1
    Super Orders 4.0

    I did a clean install of Super Orders along with a few other plugins. Once I completed the install of Super Ordres I took a look at my log folder and found it pretty full of the following errors...

    Code:
    [24-Apr-2014 12:52:33 America/Phoenix] PHP Fatal error:  1062:Duplicate entry 'customersBatchStatusUpdate' for key 1 :: INSERT INTO admin_pages
              SET page_key = 'customersBatchStatusUpdate',
                  language_key = 'BOX_CUSTOMERS_SUPER_BATCH_STATUS',
                  main_page = 'FILENAME_SUPER_BATCH_STATUS',
                  page_params = '',
                  menu_key = 'customers',
                  display_on_menu = 'Y',
                  sort_order = 10319 in /home/content/32/9303332/html/includes/classes/db/mysql/query_factory.php on line 120
    Code:
    [24-Apr-2014 12:53:34 America/Phoenix] PHP Fatal error:  1062:Duplicate entry 'customersSuperDataSheet' for key 1 :: INSERT INTO admin_pages
              SET page_key = 'customersSuperDataSheet',
                  language_key = 'BOX_CUSTOMERS_SUPER_DATA_SHEET',
                  main_page = 'FILENAME_SUPER_DATA_SHEET',
                  page_params = '',
                  menu_key = 'customers',
                  display_on_menu = 'N',
                  sort_order = 10321 in /home/content/32/9303332/html/includes/classes/db/mysql/query_factory.php on line 120
    Code:
    [24-Apr-2014 12:50:33 America/Phoenix] PHP Fatal error:  1062:Duplicate entry 'configSuperOrders' for key 1 :: INSERT INTO admin_pages
              SET page_key = 'configSuperOrders',
                  language_key = 'BOX_CONFIGURATION_SUPER_ORDERS',
                  main_page = 'FILENAME_CONFIGURATION',
                  page_params = 'gID=48',
                  menu_key = 'configuration',
                  display_on_menu = 'Y',
                  sort_order = 10313 in /home/content/32/9303332/html/includes/classes/db/mysql/query_factory.php on line 120
    /home/content/32/9303332/html/includes/classes/db/mysql/query_factory.php on line 120:
    Code:
    trigger_error($this->error_number . ':' . $this->error_text . ' :: ' . $this->zf_sql, E_USER_ERROR);
    From my basic understanding of this... somehow I've got customersBatchStatusUpdate, customersSuperDataSheet, and configSuperOrders attempting to double fill each table in the database... but I don't know enough about any of that to solve it. Last time I went into phpMYAdmin, I killed something on my site and had to do another DataBase restore. Which is what I did just before installing this plugin. I don't remember having set up super orders before, on the old database, so I did a new install...

    Other than these errors filling my log, it seems to be running correctly. If you have some insight on what I can do to fix these errors I'd appreciate it.

    @cjcraven my order numbers all appear black... maybe it wasn't included in this version. ?_?

  2. #352
    Join Date
    Apr 2014
    Location
    USA
    Posts
    3
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    If I could edit my post above, I would... but I decided to simply reset and install the essentials. I'm going to give it a few days to make sure those few plugins work (edit order and super orders being among them). Hopefully the database reset cleared any duplicate tables *crosses fingers*

    So far no error logs. But I may be back if they pop up again.

  3. #353
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by DivaVocals View Post
    and in my reply, I state that the right link is in the readme.. I have NO CONTROL over the downloads area..
    Link in the Downloads has been updated. In future, just lemme know!
    .

    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.

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

    Default Re: Super Orders v4.0 Support Thread

    This might have been addressed in another reply (but since there are well over 300 replies, I can't be certain).

    If anyone is seeing slashes in any of the comments sections while in the back this particular bit might be helpful for you. You will need to edit in two places.

    [BE SURE TO SAVE A BACKUP COPY BEFORE YOU START!!!!!!!]

    /admin/orders.php (or /admin/superorders.php)
    Around line 1335, find:

    PHP Code:
    // BEGIN TY TRACKER 9 - DEFINE TRACKING INFORMATION -------------------------------------------------------------------
    //<!-- Begin Ty Package Tracker Modification (Minor formatting changes) //-->
            
    echo '            <td class="smallText" valign="top">' nl2br(zen_db_output($orders_history->fields['comments'])) . '&nbsp;</td>' "\n" .
    //<!-- End Ty Package Tracker Modification (Minor formatting changes) //--> 
    Change to:

    PHP Code:
    // BEGIN TY TRACKER 9 - DEFINE TRACKING INFORMATION -------------------------------------------------------------------
    //<!-- Begin Ty Package Tracker Modification (Minor formatting changes) //-->
            
    echo '            <td class="smallText" valign="top">' stripslashes(nl2br(zen_db_output($orders_history->fields['comments']))) . '&nbsp;</td>' "\n" .
    //<!-- End Ty Package Tracker Modification (Minor formatting changes) //--> 
    Around line 1373, find:
    PHP Code:
    echo '            <td class="smallText" valign="top">' $orders_status_array[$orders_history->fields['orders_status_id']] . '</td>' "\n";
    echo 
    '            <td class="smallText" valign="top">' nl2br(zen_db_output($orders_history->fields['comments'])) . '&nbsp;</td>' "\n" .
                 
    '          </tr>' "\n"
    Change to

    PHP Code:
    echo '            <td class="smallText" valign="top">' $orders_status_array[$orders_history->fields['orders_status_id']] . '</td>' "\n";
    echo 
    '            <td class="smallText" valign="top">' stripslashes(nl2br(zen_db_output($orders_history->fields['comments']))) . '&nbsp;</td>' "\n" .
                 
    '          </tr>' "\n"
    This should remove any pesky \'s that appear in that box.

  5. #355
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Super Orders v4.0 Support Thread

    If you are seeing extra "slashes", can you check your server configuration and make sure all of the "magic_quotes" settings are disabled? Just curious if having one of those enabled is the root cause... Could also be an overly aggressive security filter...

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

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by lhungil View Post
    If you are seeing extra "slashes", can you check your server configuration and make sure all of the "magic_quotes" settings are disabled? Just curious if having one of those enabled is the root cause... Could also be an overly aggressive security filter...
    Very good point. I just disabled the Magic_quotes_GPC directive in my php installation. However, and this is above my control, I can still see its compiled into php with the "--enable-magic-quotes" as show in my phpinfo(); ... Guess I'll have to use this as a temporary fix then.

  7. #357
    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 DrByte View Post
    Link in the Downloads has been updated. In future, just lemme know!
    You are absolutely right.. Thanks for the fix..
    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.

  8. #358
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Super Orders v4.0 Support Thread

    The readme has a link, but in the HTML it's commented out, so it doesn't show. Not sure why it was commented out before you submitted it.
    .

    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. #359
    Join Date
    Nov 2008
    Posts
    93
    Plugin Contributions
    0

    Default Re: Super Orders v4.0 Support Thread

    I've installed a fresh version, read all the info and it works great, thank you!! I was wondering if I can add orders from the admin with this mod? If not, do you have an addon or plugin or one you recommend? Thanks again!

  10. #360
    Join Date
    Nov 2005
    Location
    France
    Posts
    595
    Plugin Contributions
    8

    Default Re: Super Orders v4.0 Support Thread

    Quote Originally Posted by Argyle View Post
    Hi,

    Think I've found a bug in super orders... I have installed super orders 4.0.2 and edit orders 4.0.2 on ZenCart version 1.5.1.... When a costumer purchase items different to the store currency (using the currency selector) super orders show amount due and amount applied wrong...

    According to the customers invoice there are money owed (even though the correct amount has been paid to my PayPal account) and comparison to store currency is not correct too...

    Why is this?

    PbMarkers.co.nz
    New Zealand
    [email protected] Phone:
    Fax:


    Invoice - Order #193



    Date Ordered: Saturday 06 April, 2013
    Payment Method: PayPal


    Products Model Tax Price (excl) Price (incl) Total (excl Total (incl)
    1 x Set 11 - 12A Bargain Markers 2K Bargain 0% $16.90 $16.90 $16.90 $16.90
    1 x Set 14 - 12A Bargain Markers 2K Bargain 0% $16.90 $16.90 $16.90 $16.90
    Sub-Total: $33.81
    FREE SHIPPING! (No Delivery Charge): $0.00
    GST: $0.00
    Total: $33.81

    Amount Applied: (AUD) $28.58
    Balance Due: (AUD) $5.23

    The amount applied here is actually 33.81 AUS in PayPal account
    There is no Balance Due on paypal account, I’ve received 33.81Aus and its been converted properly to NZD in my paypal account


    Date Added Status Comments
    04/06/2013 04:01:08 Pending --none--
    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.

 

 
Page 36 of 81 FirstFirst ... 26343536373846 ... 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