Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
警告: curl_setopt_array(): CURLOPT_FOLLOWLOCATION 在设置 open_basedir 时无法激活。
我正在尝试安装 Unirest,当我执行 php 文件时,我收到了这个错误消息
此错误意味着您的 PHP 配置禁止您跟随该位置。有几种方法可以解决这个问题。
如果您有 root 访问权限,您可以更改 php.ini 文件以禁用“safe_mode”。
您还可以在文档根目录中创建一个 .htaccess 文件,并 在其中关闭 php_value safe_mode。
您也许可以添加 ini_set('safe_mode', false); 在你的 PHP 文件中。