//$response = exec('php -v', $o, $r); //return (!empty($o)) ? 'Yes' : 'No'; return 'Yes';
exec function is used for CLI detecting. You can comment the lines 240-241 in file install/classes/CampInstallationView.php and add the string "return 'Yes';":It allows do not check CLI. CLI is required for cron tasks.//$response = exec('php -v', $o, $r); //return (!empty($o)) ? 'Yes' : 'No'; return 'Yes';
//$this->saveCronJobsScripts();
to resolve last issues you have to find the call of function saveCronJobsScripts() and comment it ( CampInstallationBase.php:117)://$this->saveCronJobsScripts();
I've tried this and it doesn't work. When I replace this I can't even open installation.
It looks like you're new here. If you want to get involved, click one of these buttons!