php无法开启php_curl
网上看了很多方法都不行
phpinfo里面Loaded Configuration File是C:\Windows\php.ini 所以这个是没问题的
修改php.ini里
extension=php_curl.dll前面去分号
extension=php_openssl.dll前面去分号
extension_dir = "D:\AppServ\php5\ext"
php_curl.dll,libeay32.dll,ssleay32.dll,php5ts.dll这4个文件我放到了C:\Windows\System32,C:\Windows\SysWOW64甚至连C:\Windows\我都放了
在Apache的httpd.conf的文件里我加入了
LoadFile D:/AppServ/php5/libeay32.dll
LoadFile D:/AppServ/php5/ssleay32.dll
以上操作都试了还是不行
回复讨论(解决方案)
你的 Windows 是 64 位的,请将复制到 C:\Windows\System32 中去的 32 位的 dll 统统删去
因为该目录存放的都是 64 位的,若把 32 位的 dll 放在其中就误事了
C:\Windows\SysWOW64 才是 32 位兼容目录
如果你需要 LoadFile D:/AppServ/php5/libeay32.dll
那么应写作 LoadFile C:/Windows/SysWOW64/libeay32.dll
你的 Windows 是 64 位的,请将复制到 C:\Windows\System32 中去的 32 位的 dll 统统删去
因为该目录存放的都是 64 位的,若把 32 位的 dll 放在其中就误事了
C:\Windows\SysWOW64 才是 32 位兼容目录
如果你需要 LoadFile D:/AppServ/php5/libeay32.dll
那么应写作 LoadFile C:/Windows/SysWOW64/libeay32.dll
我把放到C:\Windows\System32 和C:\Windows\中的那4个dll都删去了
Apache的httpd.conf 里
LoadFile D:/AppServ/php5/libeay32.dll
LoadFile D:/AppServ/php5/ssleay32.dll
改成了
LoadFile C:/Windows/SysWOW64/libeay32.dll
LoadFile C:/Windows/SysWOW64/ssleay32.dll
但还是不行
你的 Windows 是 64 位的,请将复制到 C:\Windows\System32 中去的 32 位的 dll 统统删去
因为该目录存放的都是 64 位的,若把 32 位的 dll 放在其中就误事了
C:\Windows\SysWOW64 才是 32 位兼容目录
如果你需要 LoadFile D:/AppServ/php5/libeay32.dll
那么应写作 LoadFile C:/Windows/SysWOW64/libeay32.dll
或者说跟我下的php版本有关,我下的是32位的
不知道你 php 是怎么安装的,
我是这么做的,
PhpIniDir "d:/wamp/php"
LoadModule php5_module "d:/wamp/php/php5apache2_2.dll"
再在 php.ini 中设置:
extension_dir="d:/wamp/php/ext"
开启curl 扩展, 把 d:/wamp/php 加到环境变量 PATH 中去, 就可以了
不知道你 php 是怎么安装的,
我是这么做的,
PhpIniDir "d:/wamp/php"
LoadModule php5_module "d:/wamp/php/php5apache2_2.dll"
再在 php.ini 中设置:
extension_dir="d:/wamp/php/ext"
开启curl 扩展, 把 d:/wamp/php 加到环境变量 PATH 中去, 就可以了
我的环境是用appserv安装的
后来php版本低我就换成了 5.4.41
--------------------
phpini是默认的c盘windows下
LoadModule php5_module和extension_dir也没错
curl扩展也开了 php的路径也在环境变量 PATH 中
上周正好遇到同样的问题:
windows xp 32
apache2.2
php5.4.36 vc9 Thread Safe
启动apache过程中提示warning php startup
查看apache error.log
PHP Warning: PHP Startup: in Unknown on line 0
没有任何提示,逐一关闭扩展,发现是php_curl加载时报错,而且phpinfo()中curl没有加载上
解决办法:
将php安装目录下的libeay32.dll,libssh2.dll,php5ts.dll,php_curl.dll,ssleay32.dll 复制到system32目录下
在httpd.conf 中加载如下依赖文件
LoadFile c:/php5.4.36/php5ts.dll
LoadFile c:/php5.4.36/libeay32.dll
LoadFile c:/php5.4.36/ssleay32.dll
LoadFile c:/php5.4.36/libssh2.dll
注意主要是php_curl.dll,网上的解决方案都没提这个文件
两个方法都可以解决,但是我本机装了多个版本php,所以不适合放到system32,就改的httpd.conf
试着在系统变量里加php.exe路径
敬请不是在 64 位系统使用 32 位 php 的朋友免开尊口!
在 32 位系统中配置 php 时,任何复制文件的做法都是错误的!
连phpinfo里都没有任何关于curl的东西,也不说disable或者enable 直接就搜不到
phpinfo中没有,就表示安装失败或没有开启,检查一下。
不知道楼主这个问题解决了没有,我注意到了4楼把PhpiniDir放到了LocadModule的上边,意外的是redis出来了,而之前我是curl和redis都没有,不管怎么说,算是解决了一个,再找找,怎么把curl弄出来吧。
没有开启curl
页面提示什么?可以通过phpinfo查看下curl扩展是否打开
到官方下载对应版本的curl文件
重装是万能方法

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

HTTP request methods include GET, POST, PUT and DELETE, which are used to obtain, submit, update and delete resources respectively. 1. The GET method is used to obtain resources and is suitable for read operations. 2. The POST method is used to submit data and is often used to create new resources. 3. The PUT method is used to update resources and is suitable for complete updates. 4. The DELETE method is used to delete resources and is suitable for deletion operations.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

In PHPOOP, self:: refers to the current class, parent:: refers to the parent class, static:: is used for late static binding. 1.self:: is used for static method and constant calls, but does not support late static binding. 2.parent:: is used for subclasses to call parent class methods, and private methods cannot be accessed. 3.static:: supports late static binding, suitable for inheritance and polymorphism, but may affect the readability of the code.

PHP handles file uploads through the $\_FILES variable. The methods to ensure security include: 1. Check upload errors, 2. Verify file type and size, 3. Prevent file overwriting, 4. Move files to a permanent storage location.

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.
