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
Cap resum de modificació
(corrupt curl.dll version tip thanks to Crom Mackay in MDL-37260)
 
(4 revisions intermèdies per 2 usuaris que no es mostren)
Línia 1: Línia 1:
{{Environment}}
== Windows ==
== Windows ==
To install the curl library on Windows
To install the curl library on Windows
Línia 4: Línia 5:
# Open the ''php.ini'' file found in the ''php/php.ini'' folder (older versions of XAMPP use ''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
Tip: If it appears that WAMP comes with/has a corrupt curl.dll version, see the forum.wampserver.com thread [http://forum.wampserver.com/read.php?2,85716,93286 Wamp Server 2.2 Windows 7 64-bit and curl not working side-by-side configuration incorrect] for details of the problem together with a fix.


== Unix  ==
== Unix  ==

Revisió de 08:54, 21 des 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

Tip: If it appears that WAMP comes with/has a corrupt curl.dll version, see the forum.wampserver.com thread Wamp Server 2.2 Windows 7 64-bit and curl not working side-by-side configuration incorrect for details of the problem together with a fix.

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