Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update example_centos.rst for PHP8.2 #11191

Merged
merged 4 commits into from
Oct 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions admin_manual/installation/example_centos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ PHP



Setting up remirepo with PHP 7.4
Setting up remirepo with PHP 8.2
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

More details can be found on ``https://blog.remirepo.net/pages/Config-en``
Expand All @@ -79,24 +79,24 @@ Command to install the yum-utils package (for the yum-config-manager command):

You want a single version which means replacing base packages from the distribution. Packages have the same name than the base repository, ie php-\*. Some common dependencies are available in remi-safe repository, which is enabled by default.

You have to enable the module stream for 7.4:
You have to enable the module stream for 8.2:

::

dnf module reset php
dnf module install php:remi-7.4
dnf module install php:remi-8.2
dnf update



Installing PHP and the required modules
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Next install the PHP modules needed for this install. Remember, because this is a limited basic install, we only install the neccessary modules, not all of them. If you are making a more complete install, please refer to PHP module list in the source installation documentation, :doc:`../installation/source_installation`.::
Next, install the PHP modules needed for this install. Remember, because this is a limited basic install, we only install the neccessary modules, not all of them. If you are making a more complete install, please refer to PHP module list in the source installation documentation, :doc:`../installation/source_installation`::

dnf install -y php php-gd php-mbstring php-intl php-pecl-apcu\
dnf install -y php php-cli php-gd php-mbstring php-intl php-pecl-apcu\
php-mysqlnd php-opcache php-json php-zip


Installing optional modules redis/imagick
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down