Hey, just remembered this post and I thought I should post the solution to the problem if someone else have it...
The problem was that when pressing upload, it comes an error message saying that it's invalid upload site. This is because $DOM_SCRIPT don't have www. before the url, which my host automatically add.. and I have $lim_act = true; for good reasons. There is two ways of solving this problem....
1. Change $lim_act = true; to false in config.php, and the script don't check where the file was uploaded... however then you got the problem that other sites can use your site to upload shit...
OR
2. In config.php add this after $DOM_SCRIPT = 'mysite.com'; // --> mysite.com:
$DOM_SCRIPT2 = 'www.mysite.com';
and in engine.php, change the line:
$referido !== $DOM_SCRIPT && $lim_act==true
to
$referido !== $DOM_SCRIPT && $lim_act==true && $referido !== $DOM_SCRIPT2
Hope it helps someone...
Last edited by zapmore (2010-04-12 03:25:50)