Quote:
Originally posted by BlueVoltage
sessions.php.
|
Firstly you should edit your post to remove the file

aranoid:
Now to solve your problem you need to
replace
PHP Code:
if ($templateversion > '2.0.1') { // Use location!
if (($updatelocation==True) or (!isset($updatelocation))) {
$location1 = ",location='" . addslashes($scriptpath) . "'";
$location2 = ",location";
$location3 = ",'" . addslashes($scriptpath) . "'";
} else {
$location1 = '';
$location2 = '';
$location3 = '';
}
} else {
// ###################### Start sessions #######################
with
PHP Code:
if ($templateversion > '2.0.1') { // Use location!
// location fix.
if (($updatelocation==True) or (!isset($updatelocation))) {
$location1 = ",location='" . addslashes($scriptpath) . "'";
$location2 = ",location";
$location3 = ",'" . addslashes($scriptpath) . "'";
} else {
$location1 = '';
$location2 = '';
$location3 = '';
}
} else {
$location1 = '';
$location2 = '';
$location3 = '';
}
// ###################### Start sessions #######################
Which is what the instructions stated and then your problems with be solved :bunny: