1044 Posts in 380 Topics by 374 members
| Go to End | Next > | |
| Author | Topic: | 1954 Views |
-
THEMES_DIR not loading properly

28 December 2009 at 9:28am Last edited: 31 December 2009 4:56pm
I just upgraded a couple sites to 2.3.4 (and have the same problem on all of them, including one fresh install at 2.3.4) and editor.css is no longer getting loaded by TinyMCE. I traced my requests with Firebug and saw that it was trying to call it at '[site_root]/css/editor.css' instead of from my theme directory. Looking through the code for a bit, it looks like it should prepend the 'THEMES_DIR' variable in front, but for whatever reason that's loading in blank. All these sites worked in 2.3.3.
The code is in the _config.php file for the cms module. This is the line is question:
'content_css' => 'cms/css/editor.css, '.(SSViewer::current_theme() ? THEMES_DIR . "/" . SSViewer::current_theme() : project()) . "/css/editor.css",
Any ideas on why it isn't loading? Thanks
NB: If I hard code the file to point to my editor.css file in the theme directory, it works, so I know it's not a problem with reading the file. Also, all the other function calls within the _config.php file work.
-
Re: THEMES_DIR not loading properly

8 January 2010 at 12:34pm Last edited: 8 January 2010 12:35pm
I too had this problem on a fresh 2.3.4 install which was not there in a 2.3.1. I checked the code in the _config.php of the cms module as referred to above and added a print_r() of the content_css line.
It was incorrect and contained neither the theme editor.css or the alternative project editor.cssAfter that I tried a print_r() of just SSViewer::current_theme() and it was blank which was obviously wrong
adding
SSViewer::set_theme('dreamy');
just above the HtmlEditorConfig::get('cms')->setOptions()
did the trick
This means that when this cms config is loaded the site config has not yet been loaded (which is clearly incorrect in this context and is a bug)
Julian
-
Re: THEMES_DIR not loading properly

13 January 2010 at 8:58pm
I also have this behaviour. Is there a fix or workaround available?
-
Re: THEMES_DIR not loading properly

15 January 2010 at 11:29pm
To workaround you can add, like tazzydemon described,
SSViewer::set_theme('myowntheme');
into cms/_config.php or reset content_css after set_theme in mysite/_config.php
HtmlEditorConfig::get('cms')->setOptions(array(
'content_css'=>'cms/css/editor.css, '.(SSViewer::current_theme() ? THEMES_DIR . "/" . SSViewer::current_theme() : project()) . "/css/editor.css"
));http://www.silverstripe.org/content-editor-discussions/show/274755
-
Re: THEMES_DIR not loading properly

16 January 2010 at 12:02am
Thanks - but this doesn't help for me because i'm using the silverstripe core shared for 60+ sites. I cannot put the theme name into the core code. I need a more flexible workaround.
-
Re: THEMES_DIR not loading properly

16 January 2010 at 1:44am
I also tried to add a bug in the tracker - but it said the database is down.
-
Re: THEMES_DIR not loading properly

16 January 2010 at 3:32am
freakout, you should still be able to use the second workaround JayDevlin suggested, reseting the content_cms in 'mysite/_config.php', since that should be different for each site (though conveniently you can paste the exact same code in each one).
-
Re: THEMES_DIR not loading properly

16 January 2010 at 4:06am
this statement (SSViewer::set_theme('myowntheme'); ) _IS_ already in every mysite/_config.php !
this is exactly the bug because it is not read from mysite/_config.php!to put it in mysite/_config.php is not a workaround because that's already the way it is normally.
this bug must be fixed and a flexible workaround must be given.
| 1954 Views | ||
| Go to Top | Next > |



