26.07.2012, 20:53
I'd suggest putting mysql_debug(1) at the top of OnGameModeInit / OnFilterScriptInit. This will log mysql activity into mysql_log.txt, allowing you to get a bit of further analysis.
As you say your server is crashing, I would check the array size of the variable that you are storing the result of mysql_fetch_field into. Trying to save a string that is too long for a variable is often the cause of my crashes relating to mysql.
As you say your server is crashing, I would check the array size of the variable that you are storing the result of mysql_fetch_field into. Trying to save a string that is too long for a variable is often the cause of my crashes relating to mysql.