Symfony: Difference between revisions
Jump to navigation
Jump to search
Line 77: | Line 77: | ||
| valign="top" | | | valign="top" | | ||
* [https://blogs.oracle.com/opal/post/installing-php-74-on-oracle-linux-8 Installing PHP 7.4 on Oracle Linux 8] | * [https://blogs.oracle.com/opal/post/installing-php-74-on-oracle-linux-8 Installing PHP 7.4 on Oracle Linux 8] | ||
* [https://github.com/oracle/docker-images/tree/main/OracleLinuxDevelopers Oracle Linux Developer Images] | |||
* [https://yum.oracle.com/oracle-linux-php.html PHP Packages for Oracle Linux] | * [https://yum.oracle.com/oracle-linux-php.html PHP Packages for Oracle Linux] | ||
* [https://symfony.com/bundles/DoctrineMigrationsBundle/current/index.html Doctrine Migrations Bundle] | * [https://symfony.com/bundles/DoctrineMigrationsBundle/current/index.html Doctrine Migrations Bundle] |
Revision as of 08:34, 27 May 2022
Installation
Symfony 4.4
rm -rf /usr/local/bin/symfony
curl -sS https://get.symfony.com/cli/installer | bash
export PATH="$HOME/.symfony/bin:$PATH"
symfony new --full AcademiaBash --version=4.4.*
symfony new --full AcademiaBash --version=lts
cd AcademiaBash
symfony server:start
symfony server:start --no-tls
PHP Module
PHP: sudo apt install php7.4 php7.4-common libapache2-mod-php7.4 php7.4-cli sudo systemctl restart apache2 sudo apt install php8.1 php8.1-common libapache2-mod-php8.1 php8.1-cli sudo systemctl restart apache2 |
PHP FPM: sudo apt install php7.4-fpm php7.4-common libapache2-mod-fcgid php7.4-cli sudo a2enmod proxy_fcgi setenvif && sudo a2enconf php7.4-fpm sudo apt install php8.1-fpm php8.1-common libapache2-mod-fcgid php8.1-cli sudo a2enmod proxy_fcgi setenvif && sudo a2enconf php8.1-fpm |
MariaDB
sudo apt install mariadb-server sudo mysql_secure_installation sudo apt install phpmyadmin
Knowledge
ps aux | grep php-fpm service php8.1-fpm status systemctl status php8.1-fpm.service