2
The problem was due to the installed php version : 4.3.11 dev:
for developers using php version 4.3.11 and 4.3.11dev:
add these lines in submit.php after line 47 (global $_FILES)
# Hacked --- uploads problems php 4.3.11 and 4.3.11dev #
$numeric_php_version = substr(phpversion(),0,6);
if($numeric_php_version == "4.3.11")
{
$_FILES['userfile']['name'] = end(explode("\\",$_FILES['userfile']['name']));
}
# ---- END of added lines ---- #
Hope it will be useful...
Bye