-
Error
proc_open(): fork failed errors
occurs during installationRead this instructions to fix it: https://getcomposer.org/doc/articles/troubleshooting.md#proc-open-fork-failed-errors
-
Error
Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
occurs during installationRun the following commands:
$ cd ../tools
$ chmod a+x fix-doctrine-orm.sh && ./fix-doctrine-orm.sh
$ cd ../symphony
$ composer install
-
Error
Argument 1 passed to Symfony\Component\Process\Process::__construct() must be of the type array, string given
occurs during installationRun the following command to update Composer to version 2.2.9:
$ composer self-update 2.2.9
-
The environment is not using HTTPS protocol
Setting the
cookie_secure
variable tofalse
in thesymphony/app/config/config.xml
file (after this fix, run thesudo make update
command inside thesymphony
directory):
framework:
session:
cookie_secure: false
-
Error
Cannot use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag as ParameterBag because the name is already in use
occurs during installationThis error occurs in environment with PHP 8. To fix it, install PHP 7 (or earlier) running the command below:
$ sudo apt install php php-mysql php-gd php-mbstring php-phar php-cli apache2-mod_php7
-
Error
Attempted to call function "sodium_cripto_secretbox"
occurs when creating the super userInstall all required Sodium libraries running the following command:
$ sudo apt install libsodium libsodium-dev php-sodium php-libsodium
-
Error
404 Not Found
occurs when accessing the System Management menuRemove PHP extension
intl
running the following command:
$ sudo apt purge php<version>-intl