Page 3 of 9 FirstFirst 12345 ... LastLast
Results 21 to 30 of 88
  1. #21
    Join Date
    Jun 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    No I understand that, but I was under the impression that ZC 1.5.1 didn't work with PHP 5.4 without some patching. If it does work with 5.4, then great!

  2. #22
    Join Date
    Jan 2004
    Posts
    66,380
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Can't upgrade db

    No, v1.5.3 will work fine with PHP 5.4
    .

    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.

  3. #23
    Join Date
    Jun 2010
    Posts
    145
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    Quote Originally Posted by DrByte View Post
    No, v1.5.3 will work fine with PHP 5.4
    Ok great! Thanks! :)

  4. #24
    Join Date
    Feb 2014
    Location
    Portland, oregon
    Posts
    4
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    Looks like I'm seeing the same or similar issue. When attempting a database update from 1.5.1 to 1.5.2 + 1.5.3 I'm getting this in the logs

    [20-Jul-2014 19:40:49 America/Los_Angeles] PHP Warning: require_once(C:/Web/../includes/classes/vendors/password_compat-master/lib/password.php): failed to open stream: No such file or directory in C:\Web\includes\classes\class.zcPassword.php on line 52
    [20-Jul-2014 19:40:49 America/Los_Angeles] PHP Fatal error: require_once(): Failed opening required 'C:/Web/../includes/classes/vendors/password_compat-master/lib/password.php' (include_path='.;C:\php\pear') in C:\Web\includes\classes\class.zcPassword.php on line 52


    I'm working on a local version of my site (laptop running windows 8 . 1.5.1 was working fine. Did the file merge and the site appears to function, but tells me the database is behind. When running the zc_install database only option, when clicking upgrade now, it goes to a general error, 500 if my memory is correct.

    PHP Version = 5.4.24, running on Windows 8 localhost

    Anything to check next?
    Last edited by doitwithlife; 21 Jul 2014 at 04:17 AM. Reason: correct general error code

  5. #25
    Join Date
    Apr 2014
    Posts
    2
    Plugin Contributions
    0

    Default Re: Can't upgrade db: Admin Password Required- but won't accept my password

    Quote Originally Posted by jeking View Post
    I'm upgrading from 1.5.2 to 1.5.3. When I go to upgrade the db, I'm getting 'Admin Password required to proceed with upgrade'. To reset the admin password, to be sure I was using the right one, but get the same error.
    I was having the exact same problem upgrading from 1.5.1 to 1.5.3. Finally I had to pay a web developer to completely uninstall 1.5.1 and then install 1.5.3 It cost me a few dollars but was well worth it to save me the aggravation.

  6. #26
    Join Date
    Sep 2005
    Posts
    460
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    Quote Originally Posted by DrByte View Post
    Puzzling.
    Ajeh and I have tested on 5.3.10 and 5.4.30 and 5.5.7 and had no problems with it. Hmmmm...
    I have following info about the server:

    PHP Version: 5.4.28 (Zend: 2.4.0)
    Database: MySQL 5.5.36-cll
    Server OS: Linux
    HTTP Server: Apache
    I may be blond but at least I found Zen.

  7. #27
    Join Date
    Jul 2014
    Location
    Sydney
    Posts
    4
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    Quote Originally Posted by doitwithlife View Post
    Looks like I'm seeing the same or similar issue. When attempting a database update from 1.5.1 to 1.5.2 + 1.5.3 I'm getting this in the logs

    [20-Jul-2014 19:40:49 America/Los_Angeles] PHP Warning: require_once(C:/Web/../includes/classes/vendors/password_compat-master/lib/password.php): failed to open stream: No such file or directory in C:\Web\includes\classes\class.zcPassword.php on line 52
    [20-Jul-2014 19:40:49 America/Los_Angeles] PHP Fatal error: require_once(): Failed opening required 'C:/Web/../includes/classes/vendors/password_compat-master/lib/password.php' (include_path='.;C:\php\pear') in C:\Web\includes\classes\class.zcPassword.php on line 52


    I'm working on a local version of my site (laptop running windows 8 . 1.5.1 was working fine. Did the file merge and the site appears to function, but tells me the database is behind. When running the zc_install database only option, when clicking upgrade now, it goes to a general error, 500 if my memory is correct.

    PHP Version = 5.4.24, running on Windows 8 localhost

    Anything to check next?

    I had the same issue, in class.zcPassword.php the DIR_WS_CLASSES that is supposed to be "includes/classes" has turned into "../includes/classes/" therefore the path is no longer valid, see the error log

    "C:/Web/../includes/classes/vendors/password_compat-master/lib/password.php"

    note the "../" is causing the problem

    Below is just a quick fix to get it through, in "includes/classes/class.zcPassword.php" change the following

    require_once (DIR_FS_CATALOG . "includes/classes/" . 'vendors/password_compat-master/lib/password.php');
    // require_once (DIR_FS_CATALOG . DIR_WS_CLASSES . 'vendors/password_compat-master/lib/password.php');

    Hope this helps.

  8. #28
    Join Date
    Jul 2014
    Location
    Sydney
    Posts
    4
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    Quote Originally Posted by ellivir View Post
    Thanks DrByte,
    now it accepts the password but the next page is BLANK and the logs has this Fatal Error:

    PHP Fatal error: require_once(): Failed opening required '/home/myserverspace123/public_html/shop/../includes/classes/vendors/password_compat-master/lib/password.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myserverspace123/public_html/shop/includes/classes/class.zcPassword.php on line 52
    the "../" is causing the problem. Check my previous post for a quick fix.

  9. #29
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Can't upgrade db

    Quote Originally Posted by DarkAngel View Post
    Hope the mod creators for ty tracker, superorders and edit orders get their packages updated with 1.5.3 code
    As soon as our time permits we will.. I'm sure you understand that PAYING work, family, vacations, etc. is a higher priority.. (for me at least)
    Last edited by DivaVocals; 22 Jul 2014 at 12:58 AM.
    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.

  10. #30
    Join Date
    Oct 2007
    Location
    Emporia, Kansas
    Posts
    1,762
    Plugin Contributions
    0

    Default Re: Can't upgrade db

    Quote Originally Posted by DivaVocals View Post
    As soon as our time permits we will.. I'm sure you understand that PAYING work, family, vacations, etc. is a higher priority.. (for me at least)

    you go girl, thae grand mistress of multitasking...LOL

    I totally understand and am waiting on the update. This would have been a paying gig for me too tis why I did atest store using 1.5.3 vs the live 1.5.1 store.

    ah well...thanks sweety for all you mod creators/editors do for us.

 

 
Page 3 of 9 FirstFirst 12345 ... LastLast

Similar Threads

  1. v151 Admin password required to proceed with upgrade?
    By liam1964 in forum Upgrading to 1.5.x
    Replies: 2
    Last Post: 7 Feb 2013, 08:56 PM
  2. v150 admin password expired, won't reset, will not send new password to email
    By baltimorestreetmods in forum General Questions
    Replies: 2
    Last Post: 6 Sep 2012, 07:16 PM
  3. v138a Admin Password required to proceed with upgrade Nightmare
    By dustmagic in forum Upgrading to 1.5.x
    Replies: 11
    Last Post: 4 Jun 2012, 08:13 PM
  4. Customer used Forgot Password but password sent won't work
    By smurfy1 in forum General Questions
    Replies: 16
    Last Post: 16 Feb 2012, 04:54 AM
  5. Admin Password required to proceed with upgrade
    By keneso in forum Upgrading from 1.3.x to 1.3.9
    Replies: 4
    Last Post: 4 May 2010, 06:27 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