admin/environment/php extension/curl: Difference between revisions
From MoodleDocs
Frank Ralf (talk | contribs) mNo edit summary |
Frank Ralf (talk | contribs) mNo edit summary |
||
Line 1: | Line 1: | ||
To install the curl library on Windows | To install the curl library on Windows | ||
#Open the ''php.ini'' file found in the ''moodle/apache/bin'' folder (current versions of XAMPP use [http://www.apachefriends.org/en/xampp-windows.html#1172 /xampp/php/php.ini] | # Open the ''php.ini'' file found in the ''moodle/apache/bin'' folder (current versions of XAMPP use [http://www.apachefriends.org/en/xampp-windows.html#1172 /xampp/php/php.ini]) | ||
#Find the line: <code>;extension=php_curl.dll</code> | # Find the line: <code>;extension=php_curl.dll</code> | ||
#Remove the <code>;</code> at the beginning of the line | # Remove the <code>;</code> at the beginning of the line | ||
#Restart | # Restart Apache if necessary | ||
Revision as of 16:37, 23 April 2009
To install the curl library on Windows
- Open the php.ini file found in the moodle/apache/bin folder (current versions of XAMPP use /xampp/php/php.ini)
- Find the line:
;extension=php_curl.dll
- Remove the
;
at the beginning of the line - Restart Apache if necessary
To install the curl library on Unix
- You need to recompile PHP from source
- add --with-curl to the command line when you run configure
To install the curl library on Ubuntu and Debian
- aptitude install php5-curl
- Restart apache if necessary:
sudo /etc/init.d/apache2 restart
or possibly
sudo /etc/init.d/apache restart