ForkCMS\Bundle\InstallerBundle\Service\RequirementsChecker::checkPhpIniSettings PHP Method

checkPhpIniSettings() protected method

A couple of php.ini settings should be configured in a specific way to make sure that they don't intervene with Fork CMS.
protected checkPhpIniSettings ( )
    protected function checkPhpIniSettings()
    {
        $this->checkRequirement('settingsOpenBasedir', ini_get('open_basedir') == '', self::STATUS_WARNING);
        $this->checkRequirement('settingsDateTimezone', ini_get('date.timezone') == '' || in_array(date_default_timezone_get(), \DateTimeZone::listIdentifiers()), self::STATUS_WARNING);
    }