Problem:
Trixbox GUI disappeared upon adding the Addons Repository.
Solutions:
Thanks to some forums, the answer was simple enough.
Open the following file for editing:
/var/www/html/maint/includes/application_top.php
Go to line 137 and past the following line of code:
if(!isset($_SESSION['trixbox_template'])){ $_SESSION['trixbox_template'] = 'default';}
So the file reads as follows:
// Template Chooser
//include('includes/templateChooser.php');
if(!isset($_SESSION['trixbox_template'])){ $_SESSION['trixbox_template'] = 'default';}
//setSession('templateChoice', 'trixbox_template', $sessionFile);
Details:
It appears that updating the repos causes the theme to break by removing the theme currently set in the session. The errors listed by httpd involved missing a slue of css/skin files.
1 comment:
Superb and Nice Thanks...
Post a Comment