4
what is your image?
It seems Xoops uploader block it.
it seems it is because of old IE browser?
see in class/uploader.php around line 366:
// Check IE XSS before returning success
$ext = strtolower(substr(strrchr($this->savedDestination, '.'), 1));
if (in_array($ext, $this->imageExtensions)) {
$info = @getimagesize($this->savedDestination);
if ($info === false || $this->imageExtensions[(int) $info[2]] != $ext) {
$this->setErrors(_ER_UP_SUSPICIOUSREFUSED);
@unlink($this->savedDestination);
return false;
}
}