admin/environment/php extension/curl: Difference between revisions
From MoodleDocs
(Fix aptitude so formatted as sudo line are) |
Frank Ralf (talk | contribs) (sub-headings added) |
||
Line 1: | Line 1: | ||
== Windows == | |||
To install the curl library on Windows | To install the curl library on Windows | ||
Line 6: | Line 7: | ||
# Restart Apache if necessary | # Restart Apache if necessary | ||
== Unix == | |||
To install the curl library on Unix | To install the curl library on Unix | ||
Line 12: | Line 13: | ||
# add '''--with-curl''' to the command line when you run '''configure''' | # add '''--with-curl''' to the command line when you run '''configure''' | ||
=== Ubuntu and Debian === | |||
To install the curl library on Ubuntu and Debian | To install the curl library on Ubuntu and Debian | ||
Revision as of 07:34, 20 July 2011
Windows
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
Unix
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
Ubuntu and Debian
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