Loguję się do konsoli SSh na serwerze, chcę wykonać komendę ( w zasadzie jakąkolwiek... )
php bin/console make:reset-password PHP Parse error: syntax error, unexpected '[' in /home/klient/bin/console on line 9
#!/usr/bin/env php <?php use App\Kernel; use Symfony\Bundle\FrameworkBundle\Console\Application; use Symfony\Component\Console\Input\ArgvInput; use Symfony\Component\ErrorHandler\Debug; echo 'Warning: The console should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL; } if (!class_exists(Application::class)) { throw new LogicException('You need to add "symfony/framework-bundle" as a Composer dependency.'); } $input = new ArgvInput(); if (null !== $env = $input->getParameterOption(['--env', '-e'], null, true)) { } if ($input->hasParameterOption('--no-debug', true)) { } if ($_SERVER['APP_DEBUG']) { if (class_exists(Debug::class)) { Debug::enable(); } } $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']); $application = new Application($kernel); $application->run($input);
Co nie działa w linii 9?
miccom@ssh:~/my_web.pl$ php -v PHP 5.3.29-dh127 (cli) (built: Feb 23 2016 21:11:43) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2014 Zend Technologies with the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v5.1.1, Copyright (c) 2002-2016, by ionCube Ltd.