Aquesta pàgina forma part de la documentació de Moodle en català, tot i que no ha estat traduïda encara. Podeu contribuir obertament a les tasques de traducció. Podeu consultar la Guia d'edició de la documentació i també participar ens els debats del fòrum de traductors de la documentació a moodle.org

admin/environment/php extension/curl: diferència entre les revisions

De MoodleDocs
Salta a:navegació, cerca
(information on location of php.ini changed)
mCap resum de modificació
Línia 1: Línia 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] --[[User:Frank Ralf|Frank Ralf]] 16:33, 23 April 2009 (UTC))  
#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]) --[[User:Frank Ralf|Frank Ralf]] 16:33, 23 April 2009 (UTC))  
#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

Revisió del 16:36, 23 abr 2009

To install the curl library on Windows

  1. Open the php.ini file found in the moodle/apache/bin folder (current versions of XAMPP use /xampp/php/php.ini) --Frank Ralf 16:33, 23 April 2009 (UTC))
  2. Find the line: ;extension=php_curl.dll
  3. Remove the ; at the beginning of the line
  4. Restart apache if necessary


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

To install the curl library on Ubuntu and Debian

  1. aptitude install php5-curl
  2. Restart apache if necessary:
sudo /etc/init.d/apache2 restart 

or possibly

sudo /etc/init.d/apache restart