Installing PHP: Difference between revisions

From Leechfinger
Jump to navigationJump to search
Qais (talk | contribs)
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"
 
Qais (talk | contribs)
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
</syntaxhighlight>
[[Category:PHP]]
[[Category:PHP]]

Revision as of 23:50, 17 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