The file edits instructions do no longer match vb 3.6.8's class_core.php's content.
Step 3:
Find:
PHP Code:
// define session constants
define('SESSION_IDHASH', md5($_SERVER['HTTP_USER_AGENT'] . vB_Session::fetch_substr_ip($registry->alt_ip))); // this should *never* change during a session
define('SESSION_HOST', substr($registry->ipaddress, 0, 15));
This is not there. What is there is:
PHP Code:
// define session constants
define('SESSION_HOST', substr($registry->ipaddress, 0, 15));
I assume that this would need to be replaced. But since I am no coder and it seems more has been altered in class_core.php's content, I am not certain.