0

我正在使用 PHP 5.3 运行 Ubuntu 10.04 VPS 服务器。我收到一条错误消息,说 curl 不适用于安全模式并且 open_basedir 已激活

Severity: Warning

Message: curl_setopt_array(): CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set

Filename: libraries/Curl.php

Line Number: 213

如何禁用安全模式和 open_basedir?

感谢所有帮助!

4

1 回答 1

1

open_basedir只需将 中的行注释掉php.ini,您可能会在这里找到它:

/etc/php5/apache2/php.ini

然后重启 Apache:

sudo /usr/sbin/apache2ctl restart

您可能还想了解关闭此功能的含义。

于 2011-08-28T11:59:14.560 回答