Still no word on the "0" file size......? In the image_host.php, you have an <if> condition that checks for file size, which you've set at 1024.....is this right? Here's what I'm seeing:
HTML Code:
//Do the file already Exist?
if (file_exists("$dir/".$host_filename)) {
eval(standard_error(fetch_error('imghost_exists')));
}
//Is it a vaild extension
if (!in_array($host_file_ext,$ext)) {
eval(standard_error(fetch_error('imghost_badtype')));
}
//Check Filesize
if (($host_filesize/1024) > $img_filesize) {
eval(standard_error(fetch_error('imghost_toobig')));
}
//check for whitespacers
if (strrchr($host_filename,' ')) {
eval(standard_error(fetch_error('imghost_whitespace')));
}