PHP/PHP8
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
** PHP8 [#vda44006]
*** Install [#j14e7bee]
dnf module list php
dnf module reset php
dnf module enable php:8.0 -y
dnf module list php
dnf rm php*
dnf install php
**** Moodle +
dnf install php-mysqlnd
dnf install libsodium libsodium-devel
pecl install libsodium
- [[sodium>PHP Extension/Sodium]]
*** Compile [#db69447d]
**** sqlite3 が必要
yum install sqlite
yum install libsqlite3x
yum install libsqlite3x-devel
**** oniguruma が必要
<pre>
git clone https://github.com/kkos/oniguruma.git
cd oniguruma
./autogen.sh
./configure
make
make install
</pre>
**** configure
<pre>
./configure --with-mysqli=mysqlnd --with-pdo-mysql=mysqln...
--with-apxs2=/usr/local/apache/bin/apxs \
--with-openssl --with-zip --with-zlib \
--enable-mbstring --with-iconv --enable-intl \
--enable-soap --enable-pcntl --enable-sockets \
--with-curl --with-xmlrpc --enable-opcache \
--with-sodium --enable-exif \
--enable-gd --with-jpeg --with-freetype
</pre>
終了行:
** PHP8 [#vda44006]
*** Install [#j14e7bee]
dnf module list php
dnf module reset php
dnf module enable php:8.0 -y
dnf module list php
dnf rm php*
dnf install php
**** Moodle +
dnf install php-mysqlnd
dnf install libsodium libsodium-devel
pecl install libsodium
- [[sodium>PHP Extension/Sodium]]
*** Compile [#db69447d]
**** sqlite3 が必要
yum install sqlite
yum install libsqlite3x
yum install libsqlite3x-devel
**** oniguruma が必要
<pre>
git clone https://github.com/kkos/oniguruma.git
cd oniguruma
./autogen.sh
./configure
make
make install
</pre>
**** configure
<pre>
./configure --with-mysqli=mysqlnd --with-pdo-mysql=mysqln...
--with-apxs2=/usr/local/apache/bin/apxs \
--with-openssl --with-zip --with-zlib \
--enable-mbstring --with-iconv --enable-intl \
--enable-soap --enable-pcntl --enable-sockets \
--with-curl --with-xmlrpc --enable-opcache \
--with-sodium --enable-exif \
--enable-gd --with-jpeg --with-freetype
</pre>
ページ名: