
Originally Posted by
mobileg
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.
Bookmarks