Hi,
either add two ini_set lines
ini_set('session.bug_compat_42',0);
ini_set('session.bug_compat_warn',0);
on top of the scripts showing that error or if you're using apache (and the usage of .htaccess files is enabled) then create a .htaccess file in the DOCUMENT_ROOT directory that contains the two lines
php_flag session.bug_compat_42 0
php_flag session.bug_compat_warn 0
However, the cleanest way is to modify the scripts so that they don't cause that warnings to be displayed.
Thomas