Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default the dreaded white screen

    Just now upgrading from 139h to 153.

    Playing it safe, I took a back-up of the site files and uploaded them into a /store subfolder. Checked the store and admin, all fine.
    Then I uploaded all the new v153 files into that folder, and corrected the configure files for the /store/ path.

    White screens for store and admin.

    I suspect I need to upgrade the database but I've forgotten how to do that.

    Any pointers? Other ideas?

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

    Default Re: the dreaded white screen

    How about following some directions, try these: http://www.zen-cart.com/entry.php?3-...d-of-upgrading
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: the dreaded white screen

    Quote Originally Posted by jenpen View Post
    White screens for store and admin.
    What's it recording as the cause of the blank screens? http://www.zen-cart.com/content.php?124-blank-page
    .

    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. #4
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: the dreaded white screen

    Thanks, I'll try it.

  5. #5
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: the dreaded white screen

    Hmm, I've hit a dead-end.

    I got a long way forward, it was all looking good. I ran zc_install, it all went ahead. But it created a new, empty database. I thought, that's fine, so I imported my DB back-up SQL file into it - SQL error. Also fine, I deleted that DB, created a new one with the same name, user, password, imported the DB back-up into that. All went well.

    BUT... then the DB needed upgrading, so I went back and ran zc_install again. OK, but when I clicked on Database Upgrade, it wouldn't accept my admin password. I tried the new temporary one, then the one I had changed it to. It's not accepting either. And if I try to open the admin log-in to get a new admin password sent to me, it just says "database upgrade required. please run the 1.3.9-to-1.5.0 upgrade via zc_install" - which is what I'm trying to do...

    Is there some other way of getting/resetting the admin password?

  6. #6
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: the dreaded white screen

    Sigh.
    Lemme guess ... you're running an old version of PHP, right?
    .

    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.

  7. #7
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: the dreaded white screen

    PHP Version: 5.3.29 (Zend: 2.3.0)

  8. #8
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: the dreaded white screen

    Use phpMyadmin and go to the admin table in your database, and look at the entry for your admin user. What are the first 10 characters of the encrypted password it's got there? (It's safe to post those, as nobody can use that information for anything ... I'm just looking for a pattern to know what it's done to your data.)
    .

    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. #9
    Join Date
    Sep 2007
    Location
    Far South Coast, NSW, Australia
    Posts
    436
    Plugin Contributions
    0

    Default Re: the dreaded white screen

    Thanks... a2efab6917

  10. #10
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: the dreaded white screen

    The password info you posted indicates that it hasn't upgraded the password methods yet, which means your data hasn't been altered. That's good. It also means your original admin password probably still will work (if you haven't asked it to email a new one ... and don't do that except as a last resort).

    You haven't yet posted whether there are any new errors in myDebug-xxxxx.log files in the /logs/ folder. In the absence of that information it's hard to tell what exactly your server is having trouble with. But since it seems to take hours to dialog back and forth here, maybe making this small change might help?
    Edit /includes/classes/class.zcPassword.php
    Around line 49 you have this:
    Code:
        if (version_compare($phpVersion, '5.3.7', '<')) {
          require_once (DIR_FS_CATALOG . DIR_WS_FUNCTIONS . 'password_compat.php');
        } elseif (version_compare($phpVersion, '5.5.0', '<')) {
          require_once (DIR_FS_CATALOG . DIR_WS_CLASSES . 'vendors/password_compat-master/lib/password.php');
        }
    Try changing it to this:
    Code:
        if (version_compare($phpVersion, '5.3.7', '<')) {
          require_once (realpath(dirname(__FILE__)) . '/../functions/password_compat.php');
        } elseif (version_compare($phpVersion, '5.5.0', '<')) {
          require_once (realpath(dirname(__FILE__)) . '/vendors/password_compat-master/lib/password.php');
        }
    Last edited by DrByte; 14 Dec 2014 at 03:34 AM. Reason: add missing slash
    .

    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.

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. v139h White screen on installion
    By Derek Bryant in forum Installing on a Linux/Unix Server
    Replies: 9
    Last Post: 5 Nov 2015, 12:49 PM
  2. White Blank Screen
    By princess_care in forum General Questions
    Replies: 11
    Last Post: 2 Aug 2010, 08:45 PM
  3. 1.3.9 and the White Screen Of death
    By sanguisdesign in forum General Questions
    Replies: 1
    Last Post: 7 May 2010, 11:18 PM
  4. Category Tabs IE6, IE7 and FF alignment AND the dreaded white space
    By spinnywoman in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 18 Apr 2008, 10:49 PM
  5. the dreaded white space
    By smallpigpig in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 23 Sep 2007, 06:31 AM

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