Z-Blog sqllite3版本备份问题解决

1.Class 'SQLite3' not found

 

 

 

 解决方法:

没启用php_sqlite3.dll,所以找不到那个类。
在php.ini中找到 extension=php_sqlite3.dll 
将其前面的分号去掉,表示启用。

 Class 'SQLite3' not found_尹子昊的博客-CSDN博客

2、no input file specified

解决方法:

添加伪静态代码

if (-f $request_filename/index.html){
    rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
    rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
    rewrite (.*) /index.php;
}

 

posted @ 2022-03-23 17:08  丿枫林晚丶  阅读(58)  评论(0)    收藏  举报