Wordpress 在 Digital Ocean Ubuntu 16.04 上安装出现奇怪的 PHP 错误

Wordpress 在 Digital Ocean Ubuntu 16.04 上安装出现奇怪的 PHP 错误

抱歉,如果对此有一个非常简单的解决方案,但是在关注这里的其他问题后我感到很困惑。

访问我的服务器上托管的某个网站时出现以下错误

Your PHP installation appears to be missing the MySQL extension which is required by WordPress.

Wordpress 中的

这是我的 PHP 版本:

PHP 7.1.7-1+ubuntu16.04.1+deb.sury.org+1 (cli) (built: Jul  7 2017 09:41:45) ( NTS ) 
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.1.7-1+ubuntu16.04.1+deb.sury.org+1, Copyright (c) 1999-2017, by Zend Technologies

但运行如下内容: sudo apt-get install php-mysql

说它已经安装。

这是我的 NGINX 配置

server {
    listen 80;
    listen [::]:80;
    root /var/www/omitted.me/html;
    index index.html index.htm index.php;
    server_name omitted.me www.omitted.me;
    location / {
            try_files $uri $uri/ =404;
    }
    location ~ \.php$ {
            include snippets/fastcgi-php.conf;
            fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }

}

我做错了什么或我可以在哪里找到这里发生的事情?

已更新 - 修复 长话短说,问题出在我的 PHP 环境上,我实际上只是擦除并刷新了一下: 如何在 Ubuntu 16.04 上从 PHP 7 降级到 PHP 5.6?

相关内容