Hi,
i'm working on a new addon "Assessment" showing statistics of boss fights. I wrote some classes for the data model and a update_hook.php.
Well the amount of SQL querys i so hugh that the sql debug infos exceed the memory limit of the php default 32M. After doing a ini_set('memory_limit', '64M') everything was fine.
Now my two questions.
Does ini_set always work, or will there be problems if another value is set by php.ini?
As i can see the sql log data is kept always and just the output is done if sql debug is enabled.
Is it possible to change that in a way that sql log data is only kept if sql debug is enabled?