下载帮

您现在的位置是:首页 > CMS教程 > Discuz

Discuz

Discuz论坛 解决set_magic_quotes_runtime()出错的方法

2021-04-22 20:39Discuz

错误1

Fatal error: Uncaught Error: Call to undefined function set_magic_quotes_runtime() in /data/www/install/index.php:12 Stack trace: #0 {main} thrown in /data/www/install/index.php on line 12

致命错误:未捕获错误:未定义的函数的调用set_magic_quotes_runtime(),在这个文件的第12行,

找到该路径下的index.php这个文件打开,查找set_magic_quotes_runtime

解决:

//把 
set_magic_quotes_runtime(0); 
  
//替代成 
  
ini_set("magic_quotes_runtime",0);

文章评论