未定义索引:plugin in/usr/share/phppgadmin/classes/pluginmanager .php
ubuntu从13.04升级到13.10后,phppgadmin出现这个错误信息
我已经修复了这个问题。发生错误是因为在数组中找不到插件索引。所以只需将第34行替换为。
// Get the activated plugins
$plugins = !empty($conf['plugins'])?$conf['plugins']:[];
这肯定能解决你的问题。
欢呼:)
我在服务器上升级php, postgres和phpPgAdmin后也遇到了同样的问题,保留了我现有的配置文件。在查看新的pgAdmin配置文件模板后,我注意到以下片段:
/** Plugins management
* Add plugin names to the following array to activate them
* Example:
* $conf['plugins'] = array(
* 'Example',
* 'Slony'
* );
*/
$conf['plugins'] = array();
我把它复制到我自己的配置文件中(在关闭php标签之前),一切都很好,没有改变phpPgAdmin脚本。