解决 PBootCMS 网站迁移后出现的 “No input file specified” 错误

wdzsjl 2周前 (01-01) 阅读数 62 #PHP

1. 检查 .user.ini 文件

  1. 进入网站根目录

    • 使用 FTP 客户端或 SSH 连接到服务器,进入网站根目录。
  2. 查找 .user.ini 文件

    • 使用命令 ls -la 查看隐藏文件。
    sh
     
    ls -la
  3. 删除 .user.ini 文件

    • 如果存在 .user.ini 文件,删除它。
    sh
     
    rm .user.ini

2. 重启服务器

  1. 重启 Apache 服务

    • 使用以下命令重启 Apache 服务。
    sh
     
    sudo service apache2 restart

    或者

    sh
     
    sudo systemctl restart apache2
  2. 重启 Nginx 服务

    • 使用以下命令重启 Nginx 服务。
    sh
     
    sudo service nginx restart

    或者

    sh
     
    sudo systemctl restart nginx

3. 检查服务器配置

  1. 检查 Apache 配置文件

    • 编辑 httpd.conf 文件,确保没有错误的配置。
    sh
     
    sudo nano /etc/apache2/httpd.conf
  2. 检查 Nginx 配置文件

    • 编辑 nginx.conf 文件,确保没有错误的配置。
    sh
     
    sudo nano /etc/nginx/nginx.conf

4. 检查 PHP 配置

  1. 检查 PHP 配置文件

    • 编辑 php.ini 文件,确保没有错误的配置。
    sh
     
    sudo nano /etc/php/7.4/fpm/php.ini
  2. 检查 PHP-FPM 配置文件

    • 编辑 php-fpm.conf 文件,确保没有错误的配置。
    sh
     
    sudo nano /etc/php/7.4/fpm/pool.d/www.conf

示例命令

删除 .user.ini 文件

sh
 
cd /var/www/html # 进入网站根目录 rm .user.ini # 删除 .user.ini 文件

重启 Apache 服务

sh
 
sudo service apache2 restart

重启 Nginx 服务

sh
 
sudo service nginx restart
wx.jpg ywfw.jpg
热门