|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-03-09 19:12 UTC] torben@php.net
cURL works fine in general, but when told to search for a .netrc file, searches only in /root and not in the httpd user's actual home directory (/home/www). i.e., the following only works if .netrc is in /root: <?php error_reporting(E_ALL); echo `id`; $url = 'ftp://www.work.loc'; if (!$curld = curl_init()) { echo "Could not initialize cURL session.\n"; exit; } curl_setopt($curld, CURLOPT_NETRC, true); curl_setopt($curld, CURLOPT_URL, $url); curl_exec($curld); echo curl_errno($curld); ?> PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 18:00:01 2025 UTC |
(Thanks to Daniel Stenberg for pointing this out.) This occurs because curl is using the $HOME envvar to locate the .netrc file, so a putenv() before the call enables you to set the directory in which to search: <?php error_reporting(E_ALL); putenv('HOME=/path/to/desired/home/dir'); $url = 'ftp://www.work.loc'; if (!$curld = curl_init()) { echo "Could not initialize cURL session.\n"; exit; } curl_setopt($curld, CURLOPT_NETRC, true); curl_setopt($curld, CURLOPT_URL, $url); curl_exec($curld); echo curl_errno($curld); ?>