Hi all, new board member here - just took over a site and it has been one error after the other... new one is quite crucial - it inhibits the members from being able to register for events:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/sbloom02/public_html/e/events_confirmation.php on line 87
Line 87 isn't very revealing... the following are lines 86 - 94 - thing is, I made zero alterations to this part of the code in the transfer and they weren't receiving the error on the old server:
$b = 64; // byte length for md5
if (strlen($key) > $b) {
$key = pack("H*",md5($key));
}
$key = str_pad($key, $b, chr(0x00));
$ipad = str_pad('', $b, chr(0x36));
$opad = str_pad('', $b, chr(0x5c));
$k_ipad = $key ^ $ipad ;
$k_opad = $key ^ $opad;
Any suggestions appreciated - the client is extremely anxious to have this solved obviously - thanks in advance!
Sherry
|