* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Symfony\Requirements\SymfonyRequirements; if (!isset($_SERVER['HTTP_HOST'])) { exit("This script cannot be run from the CLI. Run it from a browser.\n"); } if (!in_array(@$_SERVER['REMOTE_ADDR'], array( '127.0.0.1', '::1', ))) { header('HTTP/1.0 403 Forbidden'); exit('This script is only accessible from localhost.'); } if (file_exists($autoloader = __DIR__.'/../../../autoload.php')) { require_once $autoloader; } elseif (file_exists($autoloader = __DIR__.'/../vendor/autoload.php')) { require_once $autoloader; } else { throw new \RuntimeException('Unable to find the Composer autoloader.'); } $symfonyRequirements = new SymfonyRequirements(dirname(dirname(realpath($autoloader)))); $majorProblems = $symfonyRequirements->getFailedRequirements(); $minorProblems = $symfonyRequirements->getFailedRecommendations(); $hasMajorProblems = (bool) count($majorProblems); $hasMinorProblems = (bool) count($minorProblems); ?> Symfony Configuration Checker

Configuration Checker

This script analyzes your system to check whether is ready to run Symfony applications.

Major problems

Major problems have been detected and must be fixed before continuing:

  1. getTestMessage() ?>

    getHelpHtml() ?>

Recommendations

Additionally, toTo enhance your Symfony experience, it’s recommended that you fix the following:

  1. getTestMessage() ?>

    getHelpHtml() ?>

hasPhpConfigIssue()): ?>

* getPhpIniPath()): ?> Changes to the php.ini file must be done in "getPhpIniPath() ?>". To change settings, create a "php.ini".

All checks passed successfully. Your system is ready to run Symfony applications.