I've installed FluxCP and it worked, but i got 2 issues:
1) When i put to reinstall, it does error, cause Table cp_ipbanlog already exists. For this, i just changed "cp_ipbanlog.20120816150540" in data/schemas/logindb to "CREATE TABLE IF NOT EXISTS `cp_ipbanlog` (" and it goes ok now.
2) When i add a new page, it doesn't shows in left menu. I've added in application.php file too, but doesn't shows Menu correctly.
application.php:
'MenuItems' => array(
'MainMenuLabel' => array(
'HomeLabel' => array('module' => 'main'),
//'Forums' => array('exturl' => 'http://www.fluxro.com/community'), // External forum link
//'Forums' => array('module' => 'forums'), // Built-in forum link
'NewsLabel' => array('module' => 'news'),
// Sample items for pages function.
'DownloadsLabel' => array('module' => 'pages','action'=>'content&path=downloads'),
'GuideLabel' => array('module' => 'pages','action'=>'content&path=guide'), <--------
//'RulesLabel' => array('module' => 'pages','action'=>'content&path=rules'),
// End sample items for pages function.
//'ContactUsLabel' => array('module' => 'contactform'),
),