我刚刚安装了LDAP和PHPLDAPADMIN.Its工作正常,但是当我想创建新的入口页面时只刷新并且没有任何事情发生。有一些错误:
无法识别的错误号:8192:不推荐使用函数create_function()
谢谢。
答案 0 :(得分:1)
PhpLdapAdmin使用PHP 7.2中不推荐使用的一些功能。看一下此修复程序: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=890127
答案 1 :(得分:1)
请尝试正常运行此代码。
/第54行上的/usr/share/phpldapadmin/lib/functions.php
将第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