scandir() symlink() has been disabled for security reasons解决方法

将PHP项目部署到新服务器上的PHP环境时,发生报错:scandir()  symlink() has been disabled for security reasons。

这个时候,只需要去PHP安装目录找到php.ini,ctrl+F搜索“disable_functions”,找到如下属性配置:

disable_functions = scandir,passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,pfsockopen,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,fsocket,fsockopen

 将“disable_functions”中的scandir、symlink删除,并保存php.ini文件,重启服务,刷新页面。即可解决报错问题。

 

你可能感兴趣的:(PHP)