配置
-
WordPress报错:Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes)
WordPress报错: Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in C:\dev\ngi…
-
Termux安装Nginx
安装命令 pkg install nginx 查看Nginx版本号 nginx -v nginx version: nginx/1.27.1 运行Nginx nginx 访问网站,注意:默认监听端口为8080 我的手机Nginx访问地址为:…
-
php网站部署后访问出现No input file specified
php网站部署后,出现了以下错误: No input file specified 这种错误,在确定所有配置没问题的情况下,你需要检查下运行目录是否存在.user.ini文件 如果有,需要删除这个.user.ini文件或者修改其目录,重启n…
-
fastadmin将语言默认设置为英文
只需要修改配置文件:application/config.php // 默认语言 ‘default_lang’ => ‘en’, 同时关闭多语言检测,不然检测到当前是中文,又会切换回来。 // 是否开启多语言 ‘lang_switch…
-
WordPress报错:unserialize(): Error at offset 386 of 1110 bytes
这种错误,主要是反序列化失败了。常见原因就是想要更改WordPress网站域名,于是就是数据库数据导出来,然后将数据库文件中的原网址替换为新网址,最后将数据库文件重新导入到数据库。 正是由于替换了网址,导致了数据库表中的序列化数据的结构改变…
-
PHP上传文件出现413错误
如果上传的文件太大,PHP可能会报如下错误: 413 Request Entity Too Large 可以通过修改php配置文件,调整以下几个参数 max_execution_time = 30 // 最大执行时间,30秒 upload_…