-
php导出的Excel文件报错
导出的Excel文件无法打开,可以通过文本编辑软件打开,看有没有报错 <pre>An Error occurred while handling another error: yii\web\HeadersAlreadySent…
-
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…
-
error:02001003:system library:fopen:No such process
执行以下代码报错: $private_key = openssl_pkey_new(); var_dump(openssl_error_string()); error:02001003:system library:fopen:No su…
-
WordPress更新失败:Warning: 发生了预料之外的错误
WordPress更新插件或者主题或者升级程序,报以下错误: Warning: 发生了预料之外的错误。 WordPress.org 或是此服务器的配置可能出了一些问题。如果您持续遇到困难,请试试支持论坛。 (WordPress 无法建立到 …
-
WordPress报错:unserialize(): Error at offset 386 of 1110 bytes
这种错误,主要是反序列化失败了。常见原因就是想要更改WordPress网站域名,于是就是数据库数据导出来,然后将数据库文件中的原网址替换为新网址,最后将数据库文件重新导入到数据库。 正是由于替换了网址,导致了数据库表中的序列化数据的结构改变…
-
Call to undefined function gmp_import()
如果PHP配置文件中没有加载gmp扩展,则在使用gmp相关函数时就会报错。 PHP中打开gmp扩展方法: Windows 找到PHP配置文件,删除注释。 extension=gmp 其它系统 sudo apt install php7.0-…
-
cURL error 60: SSL certificate problem
PHP支付代码报错: cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libc…
-
致命错误: Class ‘Zxing\Qrcode\Decoder\Decoder’ not found
二维码解析扩展库报错: 致命错误: Class ‘Zxing\Qrcode\Decoder\Decoder’ not found 这个库在Windows上不会出问题,一旦用Linux服务器就会报错,原因在于Linux服务器区分大小写,导致对…
-
The server requested authentication method unknown to the client
php连接MySQL8报错: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client 解决办法: 修改MySQL配置文件…
-
thinkphp报错:fields not exists
使用模型向数据库添加数据时,竟然报错了 fields not exists:[settle_type] 添加数据代码如下: $result = ProjectSettleType::create($v,true); 通过检查数据库表,发现这…