如何允许 PHP 使用 curl?
How do I allow PHP to use curl?
当我尝试从 PHP 中使用程序 /usr/bin/curl
时,出现错误
Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/curl) is not within the allowed path(s): (/usr/share/php/:/tmp/:/usr/share/pear/) in /var/www/check.inc.php on line 138
如何在 PHP 5.4 的 debian wheezy 上启用此功能?
通过将 curl 的路径添加到 ini.include-path:
我在这个站点的 apache 配置中添加了这一行:
php_admin_value open_basedir "/usr/share/php/:/tmp/:/usr/share/pear/:/usr/bin/curl"
当我尝试从 PHP 中使用程序 /usr/bin/curl
时,出现错误
Warning: file_exists(): open_basedir restriction in effect. File(/usr/bin/curl) is not within the allowed path(s): (/usr/share/php/:/tmp/:/usr/share/pear/) in /var/www/check.inc.php on line 138
如何在 PHP 5.4 的 debian wheezy 上启用此功能?
通过将 curl 的路径添加到 ini.include-path:
我在这个站点的 apache 配置中添加了这一行:
php_admin_value open_basedir "/usr/share/php/:/tmp/:/usr/share/pear/:/usr/bin/curl"