If I go over to Sites then click "Database" I get.. Code: auth->check_module_permissions('sites'); $app->load('listform_actions'); class list_action extends listform_actions { function onShow() { global $app,$conf; $app->uses('getconf'); $global_config = $app->getconf->get_global_config('sites'); if($global_config['dblist_phpmyadmin_link'] == 'y') { $app->tpl->setVar('dblist_phpmyadmin_link',1); } else { $app->tpl->setVar('dblist_phpmyadmin_link',0); } parent::onShow(); } } $list = new list_action; $list->onLoad(); ?> Server: Apache 2.2.15, Centos 6.2, 64bit, ISPConfig 3, MySQL 5.1, PHP 5.3.3 Client: Firefox 10.0, Fedora 16
Everything else on the server works flawlessly from what I can tell. This does not happen for all users though, some can view/add/edit their databases just fine.
Thats strange as I dont see a reason why a page just get parsed sometimes by php. Do the users access ispconfig all trough the same URL or can it be that some of them use e.g. http://yourip/ispconfig while others use http://somedomain:8080/ ?