Downloads: A new file has been added by youds:
MVISION v2.2 - Horizontal / Vertical Layout (http://www.roundcubeforum.net/downloads.php?do=file&id=15)
User layout changes now stored in cookies!
MVISION v2 allowed the user to switch between Horizontal or Vertical layout, but the default choice had to be made by the administrator. Now, MVISION v2.2 stores layout changes on the users computer and remembers the choice made between page visits.
Additional Features
* Horizontal / Vertical Layout choice now stored in cookie
* Refresh the page and the last used layout will be displayed
* User can log out then log back in and the choice will be remembered
No changes required to installation and configuration - see INSTALL file in the download
Tested with roundcubemail-0.2-stable.tar.gz in IE6/7/8 F1/2 Opera and Safari (WebKit)
See http://www.roundcubethemes.net (http://www.roundcubethemes.net) for more screenshots of the different layouts
Courtesy of http://www.youds.com (http://www.youds.com)
Installing from command line
cd skins
wget http://www.roundcubethemes.net/downloads/mvision2.2.tar.gz
tar -zxf mvision2.2.tar.gz
vi ../config/main.inc.php
# make configuration file changes as directed below
Installing via FTP
Go to the "skins" directory in the RoundCube base path
Unzip the "mvision2-2.zip" file
Return back to the RoundCube base path
Go to the "config" directory and edit the "main.inc.php" file as directed below
Configuration file changes (main.inc.php)
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:
if(w>0){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h>0){
height=h.toString().match(/\%$/)?h:h+"px";
}
The original code would of appeared like:
if(w){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h){
height=h.toString().match(/\%$/)?h:h+"px";
}
You need to add >0 to the if(w) and if(h) lines
Good luck! :)
To get the HTML editor working, you need to add the line seen below to program/js/editor.js
textAreaId='compose-body';
After the lines (#65/66/67)
// switch html/plain mode
function rcmail_toggle_editor(ishtml, textAreaId, flagElement)
{
(roundcube0.2-stable)
Hello,
I need this skin in pt_BR (brazilian portuguese)
I can help u translate the words to the portuguese if u need.
tks
:)
pressing backspace in quicksearch field deletes the message (ff3 winxp).
don't know if it is a skin or rc bug.
..see attached image
I don't get a message list when using this theme. The ajax loading icon keeps spinning and nothing. I get the list of folders and the top menu but no messages. I would really like to get this to work so if someone can tell me what I need to do that would be great.
Have you refreshed your cache?
CTRL+F5 on Windows
Quote from: flyingeagle855;16743I don't get a message list when using this theme. The ajax loading icon keeps spinning and nothing. I get the list of folders and the top menu but no messages. I would really like to get this to work so if someone can tell me what I need to do that would be great.
same here.. I put ver 2.1 and it's working..
Yeah, it's doing the same thing for me. If you can tell me/us how to fix that it would be awesome.
refreshing cache solving this problem IMHO
youds, can you give this theme with blank buttons for translating to Russian?
how come there is no "Mark as read/unread" option in this? can anyone make a patch please?
thanx
yeah, I refresh my cache and then the view will be all squished together and then I try changing up the display between vertical and horizontal to fix it but then it happens again. Still a bit buggy. I'll wait until a patch to use this I suppose.
Quote from: tred;16878refreshing cache solving this problem IMHO
youds, can you give this theme with blank buttons for translating to Russian?
It did not solve this here as well. Apache has been restarted, tested in multiple browsers on the client side. Running the latest SVN.
Also, a mark as read is necessary... otherwise, assuming the message list worked, this skin is perfect.
Quote from: flyingeagle855;16743I don't get a message list when using this theme. The ajax loading icon keeps spinning and nothing. I get the list of folders and the top menu but no messages. I would really like to get this to work so if someone can tell me what I need to do that would be great.
I've found that this problem only occurs when horizontal mode is set as the default in the Roundcube main.inc.php file. Ensure that this line is present (as per the installation instructions):
$rcmail_config['preview_pane_vertical'] = TRUE;
That should get rid of the loading icon. When you log in, click "horizontal" at the bottom to switch modes. This is then stored as a cookie so it will remain the same when you log in subsequently. This brings me on to another bug I've found.
I am currently running Roundcube in a sub-directory underneath a Joomla installation. It works fine until the above cookie is set, then I keep getting error 500 whenever I try and access a Joomla-based page. It appears that the cookie name 'layout' is used by Joomla in some way. This occurred using Firefox 3.1b2 and IE7.
To fix it, I've renamed the cookie to roundcube_layout (see templates/mail.html, lines 96, 119, and 152). It might be worth putting this into the next release.
I've also found a slight layout issue in the folders list (see attached screenshot). A few tweaks to the widths in #folder-manager and the #subscription-table entries in settings.css should fix this.
Otherwise, it looks excellent.
To fix the spinning icon that never ends be sure to add the line:
$rcmail_config['preview_pane_vertical'] = TRUE;
to the main config file. This wasn't in the INSTALL file included with the download, but IS listed above in an earlier post.
@youds
with this modification (add >0 to w and h)
if(w>0){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h>0){
height=h.toString().match(/\%$/)?h:h+"px";
}
on the default RC Skin the Window Size Changer in the Mail Screen dont work anymore.
when i set it back to
if(w){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h){
height=h.toString().match(/\%$/)?h:h+"px";
}
the window size changer works fine with RC Default Skin, only the errors on IE will back on your MVision Skin.
Sorry for my bad english
Quote from: walkeral;17035I've found that this problem only occurs when horizontal mode is set as the default in the Roundcube main.inc.php file. Ensure that this line is present (as per the installation instructions):
$rcmail_config['preview_pane_vertical'] = TRUE;
That should get rid of the loading icon. When you log in, click "horizontal" at the bottom to switch modes. This is then stored as a cookie so it will remain the same when you log in subsequently. This brings me on to another bug I've found.
I am currently running Roundcube in a sub-directory underneath a Joomla installation. It works fine until the above cookie is set, then I keep getting error 500 whenever I try and access a Joomla-based page. It appears that the cookie name 'layout' is used by Joomla in some way. This occurred using Firefox 3.1b2 and IE7.
To fix it, I've renamed the cookie to roundcube_layout (see templates/mail.html, lines 96, 119, and 152). It might be worth putting this into the next release.
I've also found a slight layout issue in the folders list (see attached screenshot). A few tweaks to the widths in #folder-manager and the #subscription-table entries in settings.css should fix this.
Otherwise, it looks excellent.
Hi, Renaming the cookie doesn't fix the bug. IE7 is not changing the layout nor loading messages. The skin works fine in Opera 9.64 and FF 3.07, but is useless for IE users.
Any ideas how to make it work in IE? I think it's an important issue, coz' it's not always the case, that users may "choose" their browser (eg. a given IE-browser at the office, and no admin rights).
I added this skin/theme and made the appropriate changes to the config file and every time I try to access the roundcube page i am rewarded with a blank page. If i revert back to the previous settings I can get my login page to come up. Any ideas?
Quote from: zer0;16915how come there is no "Mark as read/unread" option in this? can anyone make a patch please?
thanx
You can find the patch for this using this post:
http://www.roundcubeforum.net/theme-releases/3001-mvision-updated-upgraded-v2-4.html#post12468 (http://www.roundcubeforum.net/theme-releases/3001-mvision-updated-upgraded-v2-4.html#post12468)
After I solved the ajax loading issue, I can see my message in my inbox. The only problem i have, is that i can't open or read an email. I am using 2.2 of this template (also 2.1 didn;t work) with 0.2.1 of roundcube.
Thanks a lot,
Smika
Edit: I am using firefox!
Quote from: udi111;16707..see attached image
I'm having exactly the same problem..
How can we fix that?
This theme has a bunch of hidden links inside the login.html file. If you try and remove them, the page no longer loads correctly.
Seems pretty devious of the code writer to "hide" the links to get more links to their development page. :mad:
great skin, but unfortunately it seems import contacts is gone with it...
Hi! Is there any way to fix the bug that some e-mails with long url's or long text, just gets cut of (as if it continues out of the screen), instead of starting on a new line? Incredably annyoing when trying to read something, and then suddenly the sentence gets lost.. Anyone? :)
hy,
i've installed the theme, but i have a problem by expanding my subfolders such aus "Archiv\Bestellungen\ABC". I see Archiv, i see Bestellungen but i cannot expand to ABC...is there any solution for this problem?
Quote from: rewen125;17037To fix the spinning icon that never ends be sure to add the line:
$rcmail_config['preview_pane_vertical'] = TRUE;
to the main config file. This wasn't in the INSTALL file included with the download, but IS listed above in an earlier post.
This dows not work with the 0.3-beta release.
Hi,
after installation ov this skin my attachment preview work, but the window is too small so pictures are in a very small frame.
How could I fix this (see attachment).
I send out messages using dada mail in plain text format and the messages are getting cut off if they are too long in the preview pane. I love the skin but is there a solution to it?
I was able to get MVISION v2.2 to work with RoundCube 0.3-RC1. MVISION references the javascript function rcube_get_object_pos() which seems to have been removed from common.js in RC 0.3.
The fix is to insert the code below into ~/mvision2_en/skins/paneswitch.js
Quote//return the absolute position of an object within the document
function rcube_get_object_pos(obj)
{
if(typeof(obj)=='string')
obj = rcube_find_object(obj);
if(!obj) return {x:0, y:0};
var iX = (bw.layers) ? obj.x : obj.offsetLeft;
var iY = (bw.layers) ? obj.y : obj.offsetTop;
if(bw.ie || bw.mz)
{
var elm = obj.offsetParent;
while(elm && elm!=null)
{
iX += elm.offsetLeft;
iY += elm.offsetTop;
elm = elm.offsetParent;
}
}
//if(bw.mac && bw.ie5) iX += document.body.leftMargin;
//if(bw.mac && bw.ie5) iY += document.body.topMargin;
return {x:iX, y:iY};
}
Milkfat thank you! that worked perfectly :D
This skin is perfect for me and looks amazing, one slight problem is where 'Message' overlaps 'Subscribed' in the Folders settings but apart from that I am very pleased!
Edit: It would be even better if it were compatible with the current 0.3RC as I would love the intergration of plugins
Very nice skin. Got it running now.
Why is it that on IE8 the backgroundcolors for the email messages are not changing per email. (white/light blue and so on). Can this be fixed by a workaround? It's not so handy like this. I understand it a IE8 issue....
Thanks.
Nice theme. However when I use it, the auto save to Drafts does not work.
Also, is it possible to not have the preview window?
I'm having linewrap issues displaying plaintext messages in FF 3.5.2 and Safari 4.0.2
I'm using Roundcube .3 RC1
It happens with both the vertical and horizontal layouts.
Hi, i have done all of the above but i still only see the ajax loader icon thing?
Please someone help?
Can someone please update this theme? It's not working with roundcube 0.3.
Quote from: kiffw;21094Can someone please update this theme? It's not working with roundcube 0.3.
True, true. Please update this theme for current version of RC ;):D
When this theme will be updated?
it's the best theme ever, hope there will be an update soon :-)
Im using the latest RoundCube, id tried this theme, great layout though its not showing any messages, only the circling cirlce :(
can anyone help me?
Is this theme update now?
I hope so because it's really nice.
Thanks
Michele
I wait for update RC from 0.2 to 0.3 because of waiting the update of this theme. I really love it. Can anyone update this to full support to RC-0.3-stables? Please.....
Quote from: inyiyruma;21681Im using the latest RoundCube, id tried this theme, great layout though its not showing any messages, only the circling cirlce :(
can anyone help me?
adding the main.php.inc setting *AND* the update to the java file (#26 above) will correct this issue.
I did some modifications in the mvision2 theme to fix the settings tab now preference and folder list are working. Where to post my modifications ?
When you make a reply scroll down to Additional Options and hit the manage attachments button and upload a zip with your changes.
This is not 100% but atleast it is working ok.
Please find the attached file.
I also like to fix 100% of it, so please tell me how to contact the main developer(s) ?
Kind Regards,
Babar Shafiq Nazmi
babarnazmi
The mail screen doesn't show any messages and the personal setting screen hasn't been formatted correctly.
I think you missed something, You need to change this in
../roundcubeinstallfolder/program/js/common.js
Quoteif(w){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h){
height=h.toString().match(/\%$/)?h:h+"px";
}
to
Quoteif(w>0){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h>0){
height=h.toString().match(/\%$/)?h:h+"px";
}
Yes formatting is a problem but it is working fine atleast :) I will fix it if I got some free time.
kind regards,
Babar Shafiq Nazmi
Just an FYI, I have PMd and e-mailed the developer of this theme. It's been a couple days and he has not responded.
This is a very beautiful design, however, if nobody plans to update it, I can't imagine ever being able to use it.
Last night I got some free time and did some modifications in the mvision2 skin.
Please download this mvision2 modified skin it will fix lots of alignment problem and also now all tabs are working 100% for me (plugins needs little more work).
Instructions for latest stable release of roundcubemail-0.3-stable.
Download the attached skin in this post (below) in skins folder and modify/edit below..
Editing:-in /roundcubeinstallfolder/program/js/common.jsEdit
Quoteif(w){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h){
height=h.toString().match(/\%$/)?h:h+"px";
}
to
Quoteif(w>0){
width=w.toString().match(/\%$/)?w:w+"px";
}
if(h>0){
height=h.toString().match(/\%$/)?h:h+"px";
}
in /roundcubeinstlalfolder/config/main.inc.phpAdd
Quote$rcmail_config['preview_pane_vertical'] = TRUE;
Edit
Quote$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment');
//to
$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'attachment');
in /roundcubeinstallfolder/skins/mvision2_en/paneswitch.jsAdd
Quote//return the absolute position of an object within the document
function rcube_get_object_pos(obj)
{
if(typeof(obj)=='string')
obj = rcube_find_object(obj);
if(!obj) return {x:0, y:0};
var iX = (bw.layers) ? obj.x : obj.offsetLeft;
var iY = (bw.layers) ? obj.y : obj.offsetTop;
if(bw.ie || bw.mz)
{
var elm = obj.offsetParent;
while(elm && elm!=null)
{
iX += elm.offsetLeft;
iY += elm.offsetTop;
elm = elm.offsetParent;
}
}
//if(bw.mac && bw.ie5) iX += document.body.leftMargin;
//if(bw.mac && bw.ie5) iY += document.body.topMargin;
return {x:iX, y:iY};
}
Thanks and Kind Regards,
Babar Shafiq Nazmi
Quote from: babarnazmi;22222Last night I got some free time and did some modifications in the mvision2 skin.
Thanks and Kind Regards,
Babar Shafiq Nazmi
Thank You !! Thank You !! So far it is now working 100%. :) One suggestion if I may; maybe update the "INSTALL" file with the corrected installation instructions?
A question if I may, anyone know how to to turn off the preview window?
Similar to the classic skin where it is optional but with the mvision skin the "Preview" option has no effect.
Regards
Michael Griffin
Thanks, I think you are looking for Layout: Horizontal view, you can find Horizontal link in the mvision2 skin bottom. You can't turn off preview in mvision2 totally.
Yes please create README/INSTALL file with complete instructions.
Regards,
Babar Shafiq Nazmi.
That sux - I love the ability to either use preview or not of the default skin. I personally hate it but others love it and I would like the choice.
Feature request : Ability to turn off preview :)
The little doco I wrote/banged together for myself :
https://rcw2.creatronic.com/skins/mvision2_en-updated_for_roundcube03.txt
Not sure how long I will leave it there are this is my play site where I am testing RoundCubeWebmail and it features.
Thanx again!
Michael
I love this skin and with babarnazmi's latest ZIP it seemed to correct the issue I was having with the mail just showing the loading icon with no message view. However, I am not sure if anyone noticed yet that when you try to resize the window(on both IE & FF) the mail view does not shrink/expand with the window size until you F5 the page.
Any code ideas for this issue?
Other than that, GREAT WORK! I love this skin.
/mike
Thanks a lot babarnazmi,
the theme is working really good.
Unfortunately I've some problems with the plugins that I'm using:
-password (the plugin is doing his job, but I lost the icons: Preferences,Folders,Identities,Password)
-archive (when I select an email, there is not an icon to archive it)
-markasjunk (when I select an email, there is not an icon to archive it)
-contextmenu (It is working, but icons are lay upon to the text)
Somebody have some good suggestions?
Thanks
Michele
PS: I have notice also that, with InternetExplorer 8, when I change from "vertical" to "horizontal", the page is minimized (but the theme is changed to horizontal)
Is this skin ready for 0.3.1?
I'm having the issue where it "clocks" when attempting to load the email pane. I've tried the fix supplied in earlier version threads with changing the setting for the skin:
// skin name: folder from skins/
//$rcmail_config['skin'] = 'mvision2_en';
//$rcmail_config['skin'] = 'skins/mvision2_en';
$rcmail_config['skin'] = 'skins/mvision2_en/';
I love the skin. I'll wait patiently if it's not quite ready for prime time.
Yes skin is ready with current stable version of roundcude
Please read the instructions :-
http://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-5.html#post22222 (http://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-5.html#post22222)
For selecting mvision2 as default theme you can define it like this
$rcmail_config['skin'] = 'mvision2_en';
Or you can select skin from settings later on.
Download attached zip file and extract it in skins folder.
This Zip will support plugins and will fix some layout issues but still plugins part is not 100% so everyone who is testing this skin kindly download this latest file again !!!
Will be happy to support this wonderful theme.
Babar Shafiq Nazmi
Quote from: babarnazmi;22887Yes skin is ready with current stable version of roundcude
Please read the instructions :-
http://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-5.html#post22222 (http://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-5.html#post22222)
For selecting mvision2 as default theme you can define it like this
$rcmail_config['skin'] = 'mvision2_en';
Or you can select skin from settings later on.
Download attached zip file and extract it in skins folder.
This Zip will support plugins and will fix some layout issues but still plugins part is not 100% so everyone who is testing this skin kindly download this latest file again !!!
Will be happy to support this wonderful theme.
Babar Shafiq Nazmi
Thank you, babar. as it turns out my "main.inc.php" was missing the line: $rcmail_config['preview_pane_vertical'] = TRUE;
I should have noticed but messing around at midnight leads to easily over looked mistakes. Graet Work with the latest version.
Can someone please make it compatible with the plugin "contextmenu"?
I'm having a weird problem with nested folders : the first mail folder containing subfolders displays just fine. The following mail folders containing subfolders appear, but their children aren't displayed.
If I look at the page's code, I see the child folders as :
<ul style="display:none">
I've tried removing and re-adding the folder to the list of subscribed folders, but that doesn't change anything.
Any idea?
Quote from: dpolombo;23257I'm having a weird problem with nested folders : the first mail folder containing subfolders displays just fine. The following mail folders containing subfolders appear, but their children aren't displayed.
Oops, I found the explanation : since you can't collapse/expand subfolders, those folders which were collapsed don't display their subfolders, while those who were expanded do.
Simple solution : switch to default theme, expand all, and return to mvision.
I'm having another strange problem : whenever I've selected a mail folder that is not my inbox, all the CSS styles apply correctly (bold font for folders containing unread mail, and on-hover highlighting when dragging a message into a folder, for instance).
However, when it is the main "inbox" folder that is selected, those styles don't apply : folders with unread mails display the correct number of unread message, but no bold font, and there is no folder highlighting when dragging a message onto it.
I've checked the HTML source in both cases, and there is no difference whatsoever (diff'ed the files).
Any input appreciated.
Are you using my last update ?
Please find in this post:- http://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-6.html#post22887
Did you tried flushing your browser cache, or may be it is some missing file ?
--
Babar Shafiq Nazmi
Quote from: babarnazmi;23261Are you using my last update ?
Please find in this post:- http://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-6.html#post22887
Did you tried flushing your browser cache, or may be it is some missing file ?
--
Babar Shafiq Nazmi
Yes, I'm using this update, and flushing the cache doesn't change anything. I'm having the same issues with IE 8 and Firefox 3.5.5.
Changing the preview pane from horizontal to vertical doesn't seem to have any effect, by the way.
Must be something with your installation or some missing/wrong configuration, as those things are working fine for me atleast :)
I can change the view to Vertical/Horizontal without any issue.
--
Babar Shafiq Nazmi
Quote from: babarnazmi;23265Must be something with your installation or some missing/wrong configuration, as those things are working fine for me atleast :)
I can change the view to Vertical/Horizontal without any issue.
I am able to change the view without issues. What I meant is that my little problem with the folder list's css styling happens both in vertical and horizontal mode.
I downloaded your latest package again, and RC 0.3.1 too, but the problem remains.
The problem happens whenever the main INBOX (received messages) is selected. It also happens when I select another folder that doesn't contain any messages.
We could use this skin in our environment with a couple of updates/changes.
First, there would have to be a way to turn off the preview pane, even if that meant that the vertical pane wasn't available. We have too many diverse users to try to force the use of a feature such as the preview pane.
The other thing missing is a way to expand and collapse nested folders.
All of the other bugs (CSS issues, mostly) are minor and could be fixed without too much trouble. But for me the CSS problems aren't worth spending any time on unless/until a way to turn off the preview pane is added.
while i like the look of this skin, i think the lack of plugin support makes it very hard to use this plugin. It doesnt support some listed in the forum already such as markasjunk, archive, contextmenu as well as managesieve/sieverules.
Can anyone please help me.
Disk usage is not displaying correctly with this theme. It is overriding with the Select.
Select: All Unread None Layout: Vertical Disk usage:
Help.....
Excellent ! I like it very much
Hi
First of all thanks for sharing your experiences
Recently I have installed RoundCube and using Mvision as theme.
Because my language is Arabic or Persian and these languages are right-to-left, so I have to convert menus to right-to-left.
The big problem is related to table "folders", because in Arabic or Persian this menu must be on right of page. I have attached one created image for more clarification my purpose.
(http://www.freeimagehosting.net/uploads/th.3934edde36.png) (http://www.freeimagehosting.net/image.php?3934edde36.png)
May you guide me to changing theme and moving this part to right side?
Thanks for any help or guidance
Hi, thanks for the comments. I just updated that theme for roundcube v3, so all credit goes to main author.
I think that can be done using CSS files, please check common.css file for the starting point...
Babar Shafiq Nazmi
Quote from: dibyendu20;23692Can anyone please help me.
Disk usage is not displaying correctly with this theme. It is overriding with the Select.
Select: All Unread None Layout: Vertical Disk usage:
Help.....
I can confirm this. I have quota limits working with Roundcube however in the MVISION v2.2 theme instead of getting the colored graph I only get the quota percentage displayed as a number with no graph positioned down and to the right of the words "disk usage".
Like this:
(http://img534.imageshack.us/img534/9551/quota.jpg)
Martian
PS - Thanks for this awesome theme - It is beautiful!!!
Looks like some issue with CSS, but it is working fine for me (snapshots attached).
Did you follow installation instructions 100% ?
Please read the post :-
Quotehttp://www.roundcubeforum.net/theme-releases/4151-new-file-added-mvision-v2-2-horizontal-vertical-layout-6.html#post22887
Needs to debug, Please share your findings...
Kind Regards,
Babar Shafiq Nazmi
thanks for keeping this skin updated :)
Quote from: babarnazmi;25051Looks like some issue with CSS, but it is working fine for me (snapshots attached).
Did you follow installation instructions 100% ?
Please read the post :-
Needs to debug, Please share your findings...
Kind Regards,
Babar Shafiq Nazmi
Yes, I followed your instructions in that post to the letter!!! They were very straight forward and easy to follow. From your screenshot the feature obviously works so it has to be something on my end.
I suspect I may be missing a php extension as I downgraded from from 5.3 to 5.2 last night (apparently mysqli doesn't work in 5.3) and had to redo my php.ini file.
You wouldn't happen to know what php extensions are required for the quota display would you?
Thanks for the super fast response and for all your hard work continuing to maintain this wonderful theme!!!
Martian
Check that you have the GD library installed.
Quote from: skaero;25072Check that you have the GD library installed.
I should have posted that I do have GD installed. Perhaps I'm missing a key part of GD?
Here is my phpinfo report on GD:
gd
GD Support enabled
GD Version bundled (2.0.34 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.3.11
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
XBM Support enabled
I also found a GD test script which and ran and it states that I do NOT have T1lib and XPM support. I not really familiar with what these are or what they do or if they are needed.
I'm presently running Arch linux. I found and installed a t1lib package which didn't appear to do anything for me but perhaps I need to enable something in php.ini? There is not a t1lib extension in my php extensions folder, that is for certain.
I fell like I'm close, just missing something silly...
Thanks again for your help!
Martian
That looks fine to me, you may have a incorrect path somewhere. Does it work with RoundCube's default theme?
For me, using this skin kill roundcube :
-i can't open settings menu
-i can't see mails (reload permanently)
-the topbar don't use width of the page
See screenshot for more explications.
And this even if i follow the short install guide
When i submit theme change to mvision, i get this error message :
SERVICE CURRENTLY NOT AVAILABLE!
Error No. [501
Does it really work on the last roudcube release ?
Is there anything in your error logs?
Yes :
[02-Feb-2010 13:27:26 +0100]: PHP Error: Error loading template for settingsedit in E:\services\roundcube\program\include\rcube_template.php on line 372 (POST /rm/?_task=settings&_action=save-prefs)
It's the only error.
In your /skins/mvision/templates do you have a settings.html and a settingsedit.html
There is no settingsedit.html in .zip nor in the template folder...
Maybe i download a wrong archive...
I search trought every archive on download section here : no settingsedit.html in archives...So i don't come from me...
Quote from: skaero;25118That looks fine to me, you may have a incorrect path somewhere. Does it work with RoundCube's default theme?
Yes, it does work with the default theme. I don't know why I didn't think to check that before. I guess that means my server setup should be ok.
Do you have any idea what files handle the quota display? If I know where to look maybe I can figure out what is different between the default and MVISION skins and go from there.
Thanks again for your help!
Martian
Ok, it seem i had my answer, mvision2 don't work with roundcube 0.3.1
I hope it will be adapted soon.
Quote from: bagu;25161Ok, it seem i had my answer, mvision2 don't work with roundcube 0.3.1
I hope it will be adapted soon.
I've never been able to get it to work for me. There's always some sort of problem. Try MobileCube as another theme, Mvision is nice, but it needs to work for 0.3.1
Quote from: bagu;25161Ok, it seem i had my answer, mvision2 don't work with roundcube 0.3.1
I hope it will be adapted soon.
I've never been able to get it to work, it's a nice theme but it needs to work in 0.3.1. Try MobileCube as another theme.
Hi to everybody.
I'm testing this amazing theme with Roundcube 0.3.1.
It look like working very well, apart the bar that shown the quota.
It's not working and instead I've just the percentage.
Is a bug or am I wrong in something?
Thanks
Michele
Quote from: phireware;25312I've never been able to get it to work for me. There's always some sort of problem. Try MobileCube as another theme, Mvision is nice, but it needs to work for 0.3.1
Hope that the dev (youds) to be able to adapt it for 0.3.1