Installing PHP: Difference between revisions
From Leechfinger
Jump to navigationJump to search
Created page with "== Installing PHP == Installing PHP and useful components. <syntaxhighlight lang="bash" line> # apt install -y php libapache2-mod-php php-cli php-fpm php-json php-pdo php-mysql php-zip php-gd php-mbstring php-curl php-xml php-pear php-bcmath </syntaxhighlight> Category:PHP" |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
# apt install -y php libapache2-mod-php php-cli php-fpm php-json php-pdo php-mysql php-zip php-gd php-mbstring php-curl php-xml php-pear php-bcmath | # apt install -y php libapache2-mod-php php-cli php-fpm php-json php-pdo php-mysql php-zip php-gd php-mbstring php-curl php-xml php-pear php-bcmath | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Modules needed for Images. | |||
<syntaxhighlight lang="bash" line> | |||
# apt install php-intl php-imagick php-gmp php-common php-apcu composer imagemagick libmagickcore-6.q16-6-extra libtool | |||
</syntaxhighlight> | |||
[[Category:PHP]] | [[Category:PHP]] |
Latest revision as of 00:38, 18 May 2024
Installing PHP
Installing PHP and useful components.
# apt install -y php libapache2-mod-php php-cli php-fpm php-json php-pdo php-mysql php-zip php-gd php-mbstring php-curl php-xml php-pear php-bcmath
Modules needed for Images.
# apt install php-intl php-imagick php-gmp php-common php-apcu composer imagemagick libmagickcore-6.q16-6-extra libtool