Centos 7服务器执行 php artisan storage:link
命令报错:symlink() has been disabled for security reasons。
产生这个错误的原因是 symlink()
函数出于安全考虑被禁用了,开启这个函数就可以了。
宝塔面板开启方法参见:putenv() has been disabled for security reasons错误的解决方式
非宝塔面板更新方法如下:
找到 php.ini 文件,在 disable_functions 配置中删掉 symlink(及其前面或后面的任意一个逗号),保存之后重启 php 即可。
disable_functions = passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv