Here is my fix for the easyinstaller to remove group and world write permissions from files and folderss allowing epesibim to install on servers that dont allow non owner write permissions for executable scripts.
I rate it 5 stars worked perfectly for me!
Paul
<<LINE 270>>
// *********** Function chmod_rwX **************
function chmod_rwX($directory='.') {
$ls = glob("${directory}/*");
foreach($ls as $fn) {
if (is_dir($fn)) {
$cmDir = @chmod($fn,0755);
if($cmDir) chmod_rwX($fn);
} else $cmDir = @chmod($fn,0644);
// if (!$cmDir)
// print ('<br>Permissions could not be set for <b>'.$fn.'</b>');
}
}