Code: Select all
function tep_session_close() {
foreach($_SESSION as $key => $value) {
global $$key;
$_SESSION[$key] = $$key;
}
}
I cannot alter php.ini on my server and placing 'session.bug_compat_warn off' in .htaccess (or anywhere else suggested in many web pages) has no effect.
Would appreciate any help on this.
Ken