My Theme Dissappears

My Theme Dissappears

by Dallas Good -
Number of replies: 2

Hello,

as I navigate my moodle, every 10 - 15 pageviews or so, the theme drops out, and all of the info on the page bunches up on the left side of the page.

I can get the theme to come back by:

1) Tools > Internet Options > Delete Files
2) F5 (refreshing the browser - Internet Explorer)

Note: I have accessed the moodle from a mac through safari and experienced the same problem.

Any suggestions?

Average of ratings: -
In reply to Dallas Good

Re: My Theme Dissappears

by Vinny Stocker -
Picture of Plugin developers

I had the same problem upgrading from 1.5.3+ to 1.5.4 and fixed it by editing the styles.php file for the standard theme. I got this from another post but cant find where I got it from!!

OLD

style_sheet_setup(filemtime('styles.php'), $lifetime, $themename, $forceconfig, $lang);
  

 NEW

 style_sheet_setup(time(), $lifetime, $themename, $forceconfig);
  

There are also a few bits here that might help.

http://moodle.org/mod/forum/discuss.php?d=49762

Vinny

(my theme displays fine now but on occasion some of the gif files/resources still don't load?!?!?!)

In reply to Vinny Stocker

Re: My Theme Dissappears

by Henrique Sousa -
Looking to solve the same problem, I came here searching for such a discussion. Thank you for the tip, it worked for the theme. It doesn't disappear anymore, I allready read somewhere else that filemtime shoud be replace by just time. But when I refresh, the images disappear and come back with a new refresh.
But is much better!
Thank you, very much, for your help.