Difference between revisions of "admin/environment/php extension/curl"
Note: You are currently viewing documentation for Moodle 2.8. Up-to-date documentation for the latest stable version of Moodle may be available here: admin/environment/php extension/curl.
Frank Ralf (talk | contribs) m |
(Put current versions first, older version second, change location) |
||
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 '' | + | # Open the ''php.ini'' file found in the ''php/php.ini'' folder (older versions of XAMPP use ''moodle/apache/bin'' folder) |
# 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 |
Revision as of 15:03, 21 June 2009
To install the curl library on Windows
- Open the php.ini file found in the php/php.ini folder (older versions of XAMPP use moodle/apache/bin folder)
- 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