Hello Fssaless1,
Sorry to hear you failed with install at this point. It is unfortunatelly a bug. But one of our users (thanks
ShatterX!) found how to go about it while the new (fixed) edition is being completed. (It is on this forum in Bosscart Installation Help, but specially for you I'll post it here too

)
Please open the install.php file (best with some website-creation tool to help you view the code better).
Find the code (probably between lines 112-120):
Code:
$oks = 0;
//print_r($file_list);
$f1='';
foreach($file_list as $fl){
@chown($fl, 'php');
@chmod($fl, "0777");
}
foreach($file_list as $fl){
if(checkFIleRights($fl)) $oks++;
}
if($oks == count($file_list)) return true;
else return false;
}
And change it to:
Code:
$oks = 0;
//print_r($file_list);
$f1='';
foreach($file_list as $fl){
if(checkFIleRights($fl)) $oks++;
}
if($oks == count($file_list)) return true;
else return false;
}
Save the file and try to run the install once more.
Thanks,
Piotrek
P.S.
Next time please use 'Search' facility to find the answers quickly!