2
Are you using php5 and maybe an older version of xoops? like 2.0.13.2?
Im not sure if this is exactly your problem but i remember from experiance there is/was an incompatabilty with the installer(from an old XOOPS version) and php5, your prob looks similar to this althoug i could be wrong.
This fix is from rowdie:
in: /install/class/mainfilemanager.php
change
$content = fread($file, filesize($this->path) );
fclose($file);
to:
clearstatcache();
$content = fread($file, filesize($this->path) );
fclose($file);
link to original forum post
Michael Jackson = King Of Pop
Xoops = King Of CMS