Hi,
I wrote this in TTT support forum, but no reply...
I just modified your script just to make it working on Windows2000 server / Internet Information server (W2K/IIS)
There is a bug in IIS which is making your script notz working in this configuration, I made the changes needed. But there is a copyrigts etc... so I hope you'll welcome this. I can send you the changes i made. (HTTP Headers manipulation added)
I Also found and fixed some errors.
1/ there is missing file ttt_test.html - in ttt_toplist directory
2/ there is an error in file ttt-mysqlfunc.inc.php
in function
PHP Code:
function my_addslashes($str) {
if (!get_magic_quotes_gpc()) { return addslashes($string); } else { return $str; }
}
it may be (i hope)
PHP Code:
function my_addslashes($str) {
if (!get_magic_quotes_gpc()) { return addslashes($str); } else { return $str; }
}
Thanks for your reply.