Linux 服务器执行 php artisan stroage:link 命令报错:putenv() has been disabled for security reasons。
产生这个错误的原因是 putenv() 函数处于安全考虑被禁用了,开启这个函数就可以了。
我使用的是宝塔面板,在对应的 php 版本的设置中,找到禁用函数列表,删掉 putenv 函数即可。
如果不是宝塔面板,那么找到 php.ini 文件,在 disable_functions 配置中需要删除掉这个函数后重启 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
想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » putenv() has been disabled for security reasons错误的解决方式
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » putenv() has been disabled for security reasons错误的解决方式