Hi!
The error you received is from a difrent mod wich is probably trigered by "global_start" as the install script uses the global.php file to obtain a MySQL connection.
It might be that this error occurs on all pages of your forum but that it isn't visible.
As the result also stated "MySQL database updated, added field "css" to the forum table. " it means the CSS mod MySQL updated has been succesfull since you would otherwise receive a message stating it didn't work.
What you could do to test wich product is causing the error is commenting the folowing line in the install script:
PHP Code:
$result = mysql_query(".......") or die(mysql_error();
To become:
PHP Code:
#$result = mysql_query(".......") or die(mysql_error();
exit;
Then the script will not try to update the database anymore and you will receive the error only.
You then simply enable/disable each product to see wich product is causing the error.
Best Regards,
Jan Jaap