1. 检查 .user.ini
文件
-
进入网站根目录:
- 使用 FTP 客户端或 SSH 连接到服务器,进入网站根目录。
-
查找
.user.ini
文件:- 使用命令
ls -la
查看隐藏文件。
ls -la
- 使用命令
-
删除
.user.ini
文件:- 如果存在
.user.ini
文件,删除它。
rm .user.ini
- 如果存在
2. 重启服务器
-
重启 Apache 服务:
- 使用以下命令重启 Apache 服务。
sudo service apache2 restart
或者
shsudo systemctl restart apache2
-
重启 Nginx 服务:
- 使用以下命令重启 Nginx 服务。
sudo service nginx restart
或者
shsudo systemctl restart nginx
3. 检查服务器配置
-
检查 Apache 配置文件:
- 编辑
httpd.conf
文件,确保没有错误的配置。
sudo nano /etc/apache2/httpd.conf
- 编辑
-
检查 Nginx 配置文件:
- 编辑
nginx.conf
文件,确保没有错误的配置。
sudo nano /etc/nginx/nginx.conf
- 编辑
4. 检查 PHP 配置
-
检查 PHP 配置文件:
- 编辑
php.ini
文件,确保没有错误的配置。
sudo nano /etc/php/7.4/fpm/php.ini
- 编辑
-
检查 PHP-FPM 配置文件:
- 编辑
php-fpm.conf
文件,确保没有错误的配置。
sudo nano /etc/php/7.4/fpm/pool.d/www.conf
- 编辑
示例命令
删除 .user.ini
文件
sh
cd /var/www/html # 进入网站根目录
rm .user.ini # 删除 .user.ini 文件
重启 Apache 服务
shsudo service apache2 restart
重启 Nginx 服务
shsudo service nginx restart
标签:conf,No,sudo,sh,ini,file,specified,restart,user
From: https://www.cnblogs.com/hwrex/p/18444212