Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install curl extension in php under Linux

2025-04-11 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly shows you the "Linux php how to install curl extension", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "Linux php how to install curl extension" this article.

Description:

Php installation directory: / usr/local/php5

Php.ini profile path: / usr/local/php5/etc/php.ini

Nginx installation directory: / usr/local/nginx

Nginx website root: / usr/local/nginx/html

1. Install curl

Cd / root # enters the package storage directory

Download wget http://curl.haxx.se/download/curl-7.20.0.tar.gz #

Tar zxvf curl-7.20.0.tar.gz # decompression

Cd curl-7.20.0 # enter the installation directory

. / configure-- prefix=/usr/local/curl installs curl

Make & & make install

/ usr/local/php/bin/phpize # generate configure configuration file with phpize

. / configure-- with-php-config=/usr/local/php/bin/php-config-- with-curl=/usr/local/curl/ # configuration

Make # compilation

Make install # installation

After the installation is complete, the following interface appears. Remember the following path, which will be used later.

/ lib/php/extensions/no-debug-non-zts-20131226/curl.so # memcache module path

2. Configure php to support memcache

Vi / usr/local/php/etc/php.ini # edits the configuration file, adding the following on the last line

Extension=curl.so

3. Testing

Vi / usr/local/nginx/html/phpinfo.php # editing

Wq! # Save exit

Service php-fpm restart # restart php-fpm

Service nginx restart # restart nginx

These are all the contents of the article "how to install curl extensions in php under Linux". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report