Page 89 of 202 FirstFirst ... 3979878889909199139189 ... LastLast
Results 881 to 890 of 2020
  1. #881
    Join Date
    Sep 2007
    Posts
    33
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by HMG View Post
    Okay, you were of course, correct. Some files were missing. I placed them in the appropriate spot but still do not see the missing categories in the Admin tools. Do I need to re-run the script? If so, any other edits to the script since it's already been installed?

    Thanks.
    I went ahead and tried to re-run the script, keeping in mind the usual issues with duplicate entries for payment types. I rec'd the following note in the admin console and still see nothing for Super Orders other than in Admin --> Configuration --> Super Orders:


    ERROR: Cannot ADD column date_completed because it already exists.
    ERROR: Cannot ADD column date_cancelled because it already exists.
    ERROR: Cannot ADD column balance_due because it already exists.
    ERROR: Cannot create table customers_admin_notes because it already exists
    ERROR: Cannot create table so_payments because it already exists
    ERROR: Cannot create table so_payment_types because it already exists
    ERROR: Cannot create table so_purchase_orders because it already exists
    ERROR: Cannot create table so_refunds because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_STATUS" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_PAYTO" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_SORT_ORDER" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_ZONE" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_ORDER_STATUS_ID" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_PO" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_PO_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_REFUND" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_PO_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_PO" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_REFUND" because it already exists
    ERROR: Cannot insert configuration_key "FED_TAX_ID_NUMBER" because it already exists
    ERROR: Cannot insert configuration_key "STATUS_ORDER_CANCELLED" because it already exists
    ERROR: Cannot insert configuration_key "STATUS_ORDER_COMPLETED" because it already exists
    ERROR: Cannot insert configuration_key "STATUS_ORDER_REOPEN" because it already exists
    Note: 25 statements ignored. See "upgrade_exceptions" table for additional details.

  2. #882
    Join Date
    Jul 2007
    Posts
    132
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    how can I reverse the bill to and ship to on the packing slip ?

  3. #883
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Quote Originally Posted by HMG View Post
    Okay, you were of course, correct. Some files were missing. I placed them in the appropriate spot but still do not see the missing categories in the Admin tools. Do I need to re-run the script? If so, any other edits to the script since it's already been installed?

    Thanks.
    If you still don't see the categories, then you still have files missing, simple as that. Make sure you have everything from the "admin/includes/boxes" folder uploaded properly.

    And no, the script only needs to be run once. Running it more than once will get in the same boat as these other poor souls.

    @Other poor souls - Your problems would largely be rectified by a proper installer, like the one that comes with stock Zen Cart. That was to be part of the next release, but given all my delays I may have to release it without one.
    Quote Originally Posted by HMG View Post
    I went ahead and tried to re-run the script, keeping in mind the usual issues with duplicate entries for payment types. I rec'd the following note in the admin console and still see nothing for Super Orders other than in Admin --> Configuration --> Super Orders:


    ERROR: Cannot ADD column date_completed because it already exists.
    ERROR: Cannot ADD column date_cancelled because it already exists.
    ERROR: Cannot ADD column balance_due because it already exists.
    ERROR: Cannot create table customers_admin_notes because it already exists
    ERROR: Cannot create table so_payments because it already exists
    ERROR: Cannot create table so_payment_types because it already exists
    ERROR: Cannot create table so_purchase_orders because it already exists
    ERROR: Cannot create table so_refunds because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_STATUS" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_PAYTO" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_SORT_ORDER" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_ZONE" because it already exists
    ERROR: Cannot insert configuration_key "MODULE_PAYMENT_PURCHASE_ORDER_ORDER_STATUS_ID" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_PO" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_PO_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_STATUS_REFUND" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_PO_PAYMENT" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_PO" because it already exists
    ERROR: Cannot insert configuration_key "AUTO_COMMENTS_REFUND" because it already exists
    ERROR: Cannot insert configuration_key "FED_TAX_ID_NUMBER" because it already exists
    ERROR: Cannot insert configuration_key "STATUS_ORDER_CANCELLED" because it already exists
    ERROR: Cannot insert configuration_key "STATUS_ORDER_COMPLETED" because it already exists
    ERROR: Cannot insert configuration_key "STATUS_ORDER_REOPEN" because it already exists
    Note: 25 statements ignored. See "upgrade_exceptions" table for additional details.
    Same problem as the duplicate payment types, HMG. These are all existent entries, and thus entering them again causes conflicts. I suggest that, instead of running the whole thing, you simply extract the part(s) you need and run it from the SQL box in phpMyAdmin.
    Quote Originally Posted by NullMind View Post
    how can I reverse the bill to and ship to on the packing slip ?
    You'll have to edit admin/super_packingslip.php. Pretty easy edit; you just have to change one word in two lines. The delivery line looks like this...
    Code:
    <td class="main"><?php echo zen_address_format($order->delivery['format_id'], $order->delivery, 1, '', '<br />'); ?></td>
    ...and the billing looks like this...
    Code:
    <td class="main"><?php echo zen_address_format($order->customer['format_id'], $order->billing, 1, '', '<br />'); ?></td>
    Swap the two words I have highlighted in green and red with their counterpart in the opposing line.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  4. #884
    Join Date
    Sep 2007
    Posts
    33
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by BlindSide View Post
    If you still don't see the categories, then you still have files missing, simple as that. Make sure you have everything from the "admin/includes/boxes" folder uploaded properly.

    And no, the script only needs to be run once. Running it more than once will get in the same boat as these other poor souls.
    Getting CLOSER! The only thing I am missing now seems to be the PO Payment module. I am unsure if the folder "extra_datafiles" is just a place holder and the file "super_orders_defines.php" belongs in the root of admin/includes.

    I'm sorry about all the questions, I didn't see in the directions anything about moving files out of placeholder directories, so pardon me if I misunderstood!

    Thanks!

  5. #885
    Join Date
    Sep 2007
    Posts
    33
    Plugin Contributions
    0

    image problem Re: Super Orders 2.0

    Quote Originally Posted by HMG View Post
    Getting CLOSER! The only thing I am missing now seems to be the PO Payment module. I am unsure if the folder "extra_datafiles" is just a place holder and the file "super_orders_defines.php" belongs in the root of admin/includes.

    I'm sorry about all the questions, I didn't see in the directions anything about moving files out of placeholder directories, so pardon me if I misunderstood!

    Thanks!

    Screenshot attached so you can see what I mean.
    Attached Images Attached Images  

  6. #886
    Join Date
    Sep 2007
    Posts
    33
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    Quote Originally Posted by HMG View Post
    Screenshot attached so you can see what I mean.

    Okay, I think I have the problem solved.

    Everything seems to look right, including purchase orders. Now to test! Thanks for all the help, I will be using this module quite a bit, it seems -perfect- for what I need it to do.

    -HMG


  7. #887
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    Glad you got it working. And for anyone who's having the same problem, let me make it clear: you must upload all the files in the included directory structure; that's what allows them to drop into the proper places on your server.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  8. #888
    Join Date
    Apr 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I installed this for the first time last night, and couldn't get everything to show up in admin.

    I uploaded the files twice and I checked the folder/files for accuracy, but I still cant see this:

    Admin --> Configuration --> Super Orders:

    /mycopath.com/html/admin/includes/boxes/extra_boxes

    has the following files:
    super_orders_customers_dhtml.php
    super_orders_localization_dhtml.php
    super_orders_reports_dhtml.php


    am I missing any other files? are there files from the previous install that weren't included in the new file set?

    Thanks!

    -Graham

  9. #889
    Join Date
    Sep 2004
    Posts
    1,388
    Plugin Contributions
    4

    Default Re: Super Orders 2.0

    The configuration entries have nothing to do with the files, they are all entries in the DB, which means you probably didn't run the SQL file. Run the included SQL file over your DB and those entries will appear.
    Frank Koehl
    "Cleverly Disguised as a Responsible Adult"

    frankkoehl.com

  10. #890
    Join Date
    Apr 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Super Orders 2.0

    I have run the sql file, and the other super order links are there... but not the admin.

    -Graham

 

 

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 804
    Last Post: 18 Apr 2025, 12:04 AM
  2. 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
  3. 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
  4. Super Orders 2.0 postage marks with Super Orders
    By sketchhgal in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Mar 2009, 03:05 PM
  5. Edit Orders and Super Orders, anyone doing that?
    By swamyg1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 Feb 2009, 06:03 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