Hi VBDev
The only bit of code i can find in there with regards to a window is this
Code:
function attente_fin_envoi_chat() {
if(envoiAjax.handler.readyState == 4 && envoiAjax.handler.status == 200 && envoiAjax.handler.responseText) {
chatEnCours = 0;
if (envoiAjax.handler.responseText == 'do_showban')
window.open("mgc_chatbox.php?" + SESSIONURL + "do=showban" , "showban", "toolbar=no,scrollbars=no,resizable=yes,left=0 top=0,width=600,height=900");
else if(envoiAjax.handler.responseText != 'ok')
myAlert(envoiAjax.handler.responseText);
<!-- Clear du timeout pour lancer le refresh -->
clearTimeout(refreshTimeout);
chatbox_refresh('forced');
}
}
problem is, the popup aint changing size, as you can see i made it quite big with no change?
It wernt at the top either, it was a little way down!
Also, this hack actually ppears to add 3 queries even without the stats enabled,
Hack active: 35 queries and server load of 4.64
Hack disabled: 32 queries and server load of 0.84
Killing my server if i may say so... Anyway of improving this please?