Note: You are currently viewing documentation for Moodle 2.2. Up-to-date documentation for the latest stable version is available here: admin/environment/php extension/curl.

admin/environment/php extension/curl: Difference between revisions

From MoodleDocs
(debian)
(environment template)
 
(17 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Environment}}
== Windows ==
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
# 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
#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 14:
# 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


# aptitude install php5-curl
  aptitude install php5-curl
* Restart apache if necessary:
sudo /etc/init.d/apache2 restart
or possibly
sudo /etc/init.d/apache restart




[[Category:Environment|php extension]]
[[Category:MNET]]


[[Category:Environment|PHP extension]]
[[Category:MNet|PHP]]


[[fr:admin/environment/php extension/curl]]
[[ja:admin/environment/php extension/curl]]
[[ja:admin/environment/php extension/curl]]

Latest revision as of 09:31, 25 April 2012

Windows

To install the curl library on Windows

  1. Open the php.ini file found in the php/php.ini folder (older versions of XAMPP use moodle/apache/bin folder)
  2. Find the line: ;extension=php_curl.dll
  3. Remove the ; at the beginning of the line
  4. Restart Apache if necessary

Unix

To install the curl library on Unix

  1. You need to recompile PHP from source
  2. 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