を更新しています。その後
ちょうどあなたのnginxの設定をする(デフォルトは、/ etc/nginxの/サイト-有効/デフォルト)、のようなもの:
server {
listen 80; ## listen for ipv4
server_name phpmyadmin.x; ##change it as you wish
root /var/www/sites/phpmyadmin; ##path to your phpmyadmin directory
index index.php;
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock; ##just adjust with php7 version
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name;
include fastcgi_params;
fastcgi_read_timeout 300;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
、あなたの/ etc/hostsファイルを編集し、phpMyAdminのを追加します。 X(あなたがしたい場合は、それを変更します)127.0.0.1
であなたのnginxを再起動し
。 (サービスnginxの再起動)
は、すでにMySQL用PHP7 libにインストールしてください。多分php7-mysqlまたはそのようなもの。その後、PHP-FPM
あなたが 'sudoのphp7enmod mcrypt'と' sudoのサービスPHP7-FPM restart'を試してみました再始動しますか? –
おそらく、sourceまたはgitの「クイックインストール」に関するセクションと、PPAの入手先に関する情報が記載されたマニュアルhttp://docs.phpmyadmin.net/en/latest/setup.htmlが欠けていますか? –