gpt4 book ai didi

ldap - 无法创建新条目。 PHPLDAP管理员

转载 作者:行者123 更新时间:2023-12-05 01:18:30 26 4
gpt4 key购买 nike

我刚刚安装了 LDAP 和 PHPLDAPADMIN。它工作正常,但是当我想要创建新条目页面时,只需刷新,什么也没有发生。有一些错误:

无法识别的错误编号:8192:不推荐使用函数 create_function()

Errors in phpldapadmin

谢谢你。

最佳答案

试试这个代码工作正常。

/usr/share/phpldapadmin/lib/functions.php 第 54 行

将第 54 行更改为

function my_autoload($className) {

在第 777 行添加此代码
spl_autoload_register("my_autoload"); 

将第 1083 行更改为
$CACHE[$sortby] = __create_function('$a, $b',$code);

在第 1091 行添加以下代码
   function __create_function($arg, $body) {
static $cache = array();
static $maxCacheSize = 64;
static $sorter;

if ($sorter === NULL) {
$sorter = function($a, $b) {
if ($a->hits == $b->hits) {
return 0;
}

return ($a->hits < $b->hits) ? 1 : -1;
};
}

$crc = crc32($arg . "\\x00" . $body);

if (isset($cache[$crc])) {
++$cache[$crc][1];
return $cache[$crc][0];
}

if (sizeof($cache) >= $maxCacheSize) {
uasort($cache, $sorter);
array_pop($cache);
}

$cache[$crc] = array($cb = eval('return
function('.$arg.'){'.$body.'};'), 0);
return $cb;
}

最后重启你的 apache 服务器 sudo service apache2 restart

关于ldap - 无法创建新条目。 PHPLDAP管理员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50698477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com