Cześć.
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;
if (!in_array(PHP_SAPI
, ['cli', 'phpdbg', 'embed'], true)) { echo 'Warning: The console should be invoked via the CLI version of PHP, not the '.PHP_SAPI
.' SAPI'.PHP_EOL
; }
require dirname(__DIR__
).'/vendor/autoload.php';
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)) {
putenv('APP_ENV='.$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = $env); }
if ($input->hasParameterOption('--no-debug', true)) {
putenv('APP_DEBUG='.$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = '0'); }
require dirname(__DIR__
).'/config/bootstrap.php';
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.
Ten post edytował miccom 15.03.2021, 17:59:42