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');
}