Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19
  1. #11
    Join Date
    Oct 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Order does not appear in admin section unless I search by number

    I see 0 orders when I go to the menu

    Languages & Currencies (6th entry from the left) and then to Order Status (third entry after the entries Currencies and Languages).

    (These are my translations of the dutch menu entries. I should switch to English again in the admin section !)

  2. #12
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Order does not appear in admin section unless I search by number

    In you Admin, change the URL to be this file:
    /orders_status.php

    What do you see there?

    If sounds like you have no Order Status definitions ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #13
    Join Date
    Oct 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Order does not appear in admin section unless I search by number

    No,

    I see no orders in orders_status.php and in orders.php.

    I do see new orders on index.php

    strange.

    Fred

  4. #14
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Order does not appear in admin section unless I search by number

    There are not orders in the orders_status.php this is the statuses that Orders can be ...

    You appear to be missing the data from the table:
    orders_status

    it should never be empty ...

    Do you have a backup of your database where you can get a good copy of the table:
    orders_status

    By default, the orders_status table contains:
    orders_status_id language_id orders_status_name
    1 1 Pending
    2 1 Processing
    3 1 Delivered
    4 1 Update
    However, you are using multiple languages so this would be different for your site ...

    However, without having this table you are having issues in displaying the orders ...

    If I dump this table, I lose the orders ... if I rebuild the table I get the orders ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #15
    Join Date
    Oct 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Order does not appear in admin section unless I search by number

    OK,

    I probably do not have a backup, as my installation was fresh.

    Does Zen Cart have an option to (automatically) backup the database?

    Is it possible to completely empty the database and start all over again ( e.g. by running an install.php, such as can be done with a Drupal site)

  6. #16
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Order does not appear in admin section unless I search by number

    This are the original records:
    Code:
    INSERT INTO orders_status VALUES ( '1', '1', 'Pending');
    INSERT INTO orders_status VALUES ( '2', '1', 'Processing');
    INSERT INTO orders_status VALUES ( '3', '1', 'Delivered');
    INSERT INTO orders_status VALUES ( '4', '1', 'Update');
    But you would need to manually manage them for your other languages ...

    By default, this is set for language_id 1 ... you would need to have a set for each language ...

    Check the values of your languages for the language_id, and just change the second value, '1' to what you need, such as '2', example:
    Code:
    INSERT INTO orders_status VALUES ( '1', '2', 'Pending');
    INSERT INTO orders_status VALUES ( '2', '2', 'Processing');
    INSERT INTO orders_status VALUES ( '3', '2', 'Delivered');
    INSERT INTO orders_status VALUES ( '4', '2', 'Update');
    Once you have a set for each language, see the table:
    languages

    for the values ... you can then you can edit them for the proper names that you want to use in your Zen Cart Admin in the Localization ... Order Status ...

    Be sure to backup your database before adding these ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #17
    Join Date
    Oct 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Order does not appear in admin section unless I search by number

    OK, I'm going to give that a try.

    (have been offline for a while)

    Fred

  8. #18
    Join Date
    Oct 2010
    Posts
    10
    Plugin Contributions
    0

    Default [RESOLVED] Re: Order does not appear in admin section unless I search by number

    Hi Ajeh,

    I entered the SQL codes into the table. Now everything seems to work fine !

    Thanks for your support.

    Fred

  9. #19
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Order does not appear in admin section unless I search by number

    Thanks for the update that things appear to be working correctly now ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Replies: 8
    Last Post: 10 Apr 2012, 12:45 PM
  2. Replies: 1
    Last Post: 15 Jul 2010, 11:03 PM
  3. Advanced Search does not appear
    By Spen in forum Basic Configuration
    Replies: 1
    Last Post: 26 Sep 2008, 06:50 PM
  4. Customized Search button does not appear
    By refriend in forum Templates, Stylesheets, Page Layout
    Replies: 19
    Last Post: 5 Aug 2008, 06:46 PM
  5. Ideal does not appear in admin - payments
    By gandalf in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 8 Sep 2007, 02:00 PM

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