Я работаю с Symfony 3.4, и когда я размещаю свой проект, у меня возникает проблема с маршрутом, поэтому мне приходится отлаживать его, но когда я добавляю / app_dev.php к своему доменному имени, я получаюошибка:
You are not allowed to access this file. Check app_dev.php for more information.
Запрещает ли Symfony средство отладки для продукта с простой конфигурацией?
Я пробовал это решение, но оно не работает у меня:
https://stackoverflow.com/a/39289662/7041095
Я сделал все эти изменения, но панель инструментов не была включена:
app / AppKernel.php:
public function registerBundles()
{
$bundles = [
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new AppBundle\AppBundle(),
new FOS\UserBundle\FOSUserBundle(),
new MyVendorFOSUserBundle\MyVendorFOSUserBundle(),
];
+ $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
+ $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
+ $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
+
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
app / config / config.yml:
parameters:
locale: en
+web_profiler:
+ toolbar: true
app / config / routing.yml:
+
+_wdt:
+ resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
+ prefix: /_wdt
+
+_profiler:
+ resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
+ prefix: /_profiler
+
+_errors:
+ resource: '@TwigBundle/Resources/config/routing/errors.xml'
+ prefix: /_error
web / app_dev.php:
//commenting this lines:
+
+// if (isset($_SERVER['HTTP_CLIENT_IP'])
+// || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
+// || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'], true) || PHP_SAPI === 'cli-server')
+// ) {
+// header('HTTP/1.0 403 Forbidden');
+// exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
+// }
composer.json:
"require": {
"php": ">=5.5.9",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/orm": "^2.5",
"friendsofsymfony/user-bundle": "~2.0",
"incenteev/composer-parameter-handler": "^2.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^5.0.0",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.6.4",
"symfony/symfony": "3.4.*",
"twig/twig": "^1.0||^2.0",
+ "sensio/generator-bundle": "^3.0",
+ "symfony/phpunit-bridge": "^3.0"
},
1) Я делаю die ($ this-> getEnvironement ());=> prod
2) Панель инструментов не отображается, и когда я пробую mydomain / app_dev.php, я получаю проблему:
ClassNotFoundException
Attempted to load class "SensioGeneratorBundle" from namespace "Sensio\Bundle\GeneratorBundle".
Did you forget a "use" statement for another namespace?