Installing from command line
Installing via FTPCode:cd skins wget http://www.roundcubethemes.net/downloads/mvision2.1.tar.gz tar -zxf mvision2.1.tar.gz vi ../config/main.inc.php # make configuration file changes as directed below
Configuration file changes (main.inc.php)Code:Go to the "skins" directory in the RoundCube base path Unzip the "mvision2-1.zip" file Return back to the RoundCube base path Go to the "config" directory and edit the "main.inc.php" file as directed below
Code:1) $rcmail_config['skin'] = 'mvision2_en'; 2) $rcmail_config['list_cols'] = array('subject', 'from', 'date', 'attachment'); // remove "size" and "flag" (flag will still appear however) 3) $rcmail_config['preview_pane'] = TRUE; 4) Additional configuration line required; $rcmail_config['preview_pane_vertical'] = TRUE;
For Users with Microsoft Script Debugger
When changing between "Vertical" and "Horizontal" users will see an error message.
To correct this, alter file program/js/common.js to reflect changes below:
The original code would of appeared like:Code:if(w>0){ width=w.toString().match(/\%$/)?w:w+"px"; } if(h>0){ height=h.toString().match(/\%$/)?h:h+"px"; }
You need to add >0 to the if(w) and if(h) linesCode:if(w){ width=w.toString().match(/\%$/)?w:w+"px"; } if(h){ height=h.toString().match(/\%$/)?h:h+"px"; }
Good luck!![]()


LinkBack URL
About LinkBacks



Reply With Quote
