Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1
    Join Date
    Dec 2006
    Posts
    189
    Plugin Contributions
    0

    Default After upgrading to 1.5.1 No Customers found in Admin

    Hello All,

    I recently upgraded to ver1.5.1, performed the database upgrade but when I click on Customers from within Admin there's no customers listed. I've checked in phpMyAdmin, zen_customers, and zen_customers_info, zen_address_book. All show the correct data.

    Is there something I'm missing to get the Customer information to show up in my stores admin?

    Thanks in advance.

  2. #2
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Quote Originally Posted by Robbyn7 View Post
    Hello All,

    I recently upgraded to ver1.5.1, performed the database upgrade but when I click on Customers from within Admin there's no customers listed. I've checked in phpMyAdmin, zen_customers, and zen_customers_info, zen_address_book. All show the correct data.

    Is there something I'm missing to get the Customer information to show up in my stores admin?

    Thanks in advance.
    From what version, what encoding did the database have, what does it have now?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,393
    Plugin Contributions
    94

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Are you sure that the upgraded /YOUR_ADMIN/includes/configure.php file is referencing the correct database?

  4. #4
    Join Date
    Dec 2006
    Posts
    189
    Plugin Contributions
    0

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Thanks for the replies. I upgraded from ver1.3.8 to 1.5.1.
    I'll take a look at my configure.php file this evening to see which database it's referencing.

  5. #5
    Join Date
    Dec 2006
    Posts
    189
    Plugin Contributions
    0

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Quote Originally Posted by lat9 View Post
    Are you sure that the upgraded /YOUR_ADMIN/includes/configure.php file is referencing the correct database?
    Just checked my configure.php file and yes, it is referencing the correct database. Not sure where to look from here.

  6. #6
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Let's start at the beginning... Did the database upgrade actually work?

    Have a look at the stock zc_install code and you'll see what it's actually doing when it 'upgrades' your database. You will see the changes in the new 1.51 database if it actually 'worked'.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

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

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Just to humor me ... could you post both your files:
    /includes/configure.php
    /your_secret_admin/includes/configure.php

    *from your server* and without your username, password and secret admin dir?
    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: v1.5.5]
    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!

  8. #8
    Join Date
    Jul 2012
    Posts
    16,799
    Plugin Contributions
    17

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Quote Originally Posted by mc12345678 View Post
    From what version, what encoding did the database have, what does it have now?
    There's still part of the above not answered, also, when in the admin panel and select Version in the toolbar along the top right (typically), what information about your database is there? (Ie, installed 1.3.8, upgraded to 1.3.9h, then upgraded to 1.5.0, etc...)

    Also, said that having difficulties seeing the data from the admin panel, but the users are able to perfomr all functions? If so, recommend looking at the admin files to determine that they were properly upgraded, by comparing them to a "fresh" version of ZC1.5.1. Certainly some will have been modified because of add-ons, but keep an eye out for unnecessary/unneeded files that end with .php as these extra files may be loaded depending on where they are, and be causing issues. Also, some files may have been omitted in the upload, not overwritten because of file permissions, etc...

    Lastly to the configure.php discussion, both configure.php files point to the same database?
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  9. #9
    Join Date
    Dec 2006
    Posts
    189
    Plugin Contributions
    0

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Quote Originally Posted by twitchtoo View Post
    Let's start at the beginning... Did the database upgrade actually work?

    Have a look at the stock zc_install code and you'll see what it's actually doing when it 'upgrades' your database. You will see the changes in the new 1.51 database if it actually 'worked'.
    Twitchtoo, where would I find the stock zc_install code?

  10. #10
    Join Date
    Dec 2006
    Posts
    189
    Plugin Contributions
    0

    Default Re: After upgrading to 1.5.1 No Customers found in Admin

    Quote Originally Posted by Ajeh View Post
    Just to humor me ... could you post both your files:
    /includes/configure.php
    /your_secret_admin/includes/configure.php

    *from your server* and without your username, password and secret admin dir?
    From my includes/configure.php:

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', '***********');
    define('DB_SERVER_PASSWORD', '***********');
    define('DB_DATABASE', 'robyns_zc1');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

    and from my admin:

    // define our database connection
    define('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_');
    define('DB_SERVER', 'localhost');
    define('DB_SERVER_USERNAME', '***********');
    define('DB_SERVER_PASSWORD', '***********');
    define('DB_DATABASE', 'robyns_zc1');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

    It appears both configure.php files are identical.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 8
    Last Post: 11 Jul 2015, 10:29 PM
  2. certain customers not able to view cart after upgrading
    By volks65 in forum Upgrading from 1.3.x to 1.3.9
    Replies: 1
    Last Post: 7 May 2010, 06:10 PM
  3. Passed variable is not an array or object in customers after upgrading
    By royalgemsnz in forum Upgrading from 1.3.x to 1.3.9
    Replies: 11
    Last Post: 21 Oct 2006, 03:09 AM
  4. Replies: 0
    Last Post: 8 Oct 2006, 11:25 PM

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