Are you the person I helped get rid of this error already?
There are two ways to remove this error. Either place the following lines of in a file the BOSI executes for every script, such as the config file.
Code:
ini_set('session.bug_compat_42', 0);
ini_set('session.bug_compat_warn', 0);
Or if you have access to your php.ini file you can place the following at the bottom of your php.ini
Code:
session.bug_compat_42 0
session.bug_compat_warn 0
You also need to turn on register_globals because BOSI 2.0 relies on them. You can do this by either create a .htaccess file and placing it in your root BOSI directory and place this line in the file.
Code:
php_flag register_globals on
Or if you have access to your php.ini you can place this in your php.ini file.
Code:
register_globals on
But didn't you solve this problem using the above technique and now you are getting this error?
Code:
Line: 2
Char: 1
Error: 'top.HTMLFrame' is null or not an object
Code: 0
URL: http://www.asblootp.us/bosi/admin/import/league.php?GE_all=1&GL_lid=1
That is an error I have never seen before has nothing to do with upgrading PHP. It looks like a javascript error, but its not something I could solve short of getting on your server and trying to figure out exactly what is going on...which I unfortantely don't have time for atm.