致命错误:在 ubuntu 中调用未定义函数 ldap_connect()

Fatal error: Call to undefined function ldap_connect() in ubuntu(致命错误:在 ubuntu 中调用未定义函数 ldap_connect())
本文介绍了致命错误:在 ubuntu 中调用未定义函数 ldap_connect()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过 PHP 连接到我的 LDAP 服务器,但出现以下错误:

I'm trying to connect to my LDAP server via PHP, but I get the following error:

致命错误:调用未定义函数 ldap_connect()

Fatal error: Call to undefined function ldap_connect()

任何帮助将不胜感激.

提前致谢,肉山

推荐答案

确保 LDAP 扩展 已安装并启用.这个答案假设你有 PHP5,但是,对于 PHP7,事情也应该类似地工作.

Make sure the LDAP extension is installed and enabled. This answer assumes you have PHP5, however, things should work similarly for PHP7 as well.

安装 LDAP 扩展

应该有一个类似php5-ldap的包:

aptitude show php5-ldap
Paquet : php5-ldap
...
Description : LDAP module for php5                                                                                                                                                                                                           
 This package provides a module for LDAP functions in PHP scripts.

因此,包通常可以这样安装:

Thus, the package can usually be installed like:

sudo apt-get install php5-ldap

如果您不使用 apt-get,请使用您使用的包管理器的等效命令.

If you do not use apt-get, use the equivalent command for the package manager you use.

启用 LDAP 扩展

要在安装后启用包,可以使用以下命令:

To enable the package after installation, you can use this command:

sudo php5enmod ldap

如果您从上述命令中收到任何错误消息,则表示出现问题.

If you get any error message from the above command, it means something went wrong.

注意: 启用包后,通常需要重启/重新加载服务才能识别新启用的模块.对于 apache,您可以通过以下方式执行此操作:

Note: After enabling the package, you usually have to restart / reload services so that the newly enabled module is recognized. For apache, you can do this by:

sudo service apache2 restart

如果您不使用 apache,请为您的服务器使用等效命令.

If you do not use apache, please use the equivalent command for your server.

这篇关于致命错误:在 ubuntu 中调用未定义函数 ldap_connect()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Connecting to Gmail through IMAP with PHP - SSL context failed(使用 PHP 通过 IMAP 连接到 Gmail - SSL 上下文失败)
How can I get PHP to compile a LaTeX document if it (www-data) can#39;t get access to the required packages?(如果 (www-data) 无法访问所需的包,我如何让 PHP 编译 LaTeX 文档?)
PHPUnit , PEAR upgrading Errors(PHPUnit , PEAR 升级错误)
How do I run all my PHPUnit tests?(如何运行我所有的 PHPUnit 测试?)
PHP+Ubuntu Send email using gmail form localhost(PHP+Ubuntu 使用 gmail 形式发送电子邮件 localhost)
Undefined function mysql_connect()(未定义函数 mysql_connect())