Problems upgrading from 1.11.2 to 1.11.4
Re: Problems upgrading from 1.11.2 to 1.11.4
I have fixed this issue by replacing the tag {stylesheet} with {cms_stylesheet} in my templates.
Re: Problems upgrading from 1.11.2 to 1.11.4
saltydog wrote:I have fixed this issue by replacing the tag {stylesheet} with {cms_stylesheet} in my templates.
Hi saltydog.
All stylesheet calls in all templates already are like {cms_stylesheet}.
This is the browser (ie9) source of an edited page - where nothing but a search square is to see:
Code: Select all
<div id="Edit_Content_Result"></div><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<__html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<title> | </title>
<link rel="shortcut icon" href="http://dev.papageienpark-bochum.de/images/favicon.ico" type="image/x-icon" />
<__script__ src="/modules/avplayer/player/video.js" type="text/javascript" charset="utf-8" ></__script>
<link rel="stylesheet" href="/modules/avplayer/player/video-js.css" type="text/css" media="screen" title="Video JS" charset="utf-8" />
</head>
</__body>
<div id="fb-root"></div>
<__script__>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID',
channelUrl : 'http://www.facebook.com/Papageienpark.Bochum'
status : true,
cookie : true,
xfbml : true,
});
};
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/de_DE/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</__script>
<div id="preload"><img src="images/slideshow_overlay.png" /><img src="images/header_bg.jpg" /></div>
<div id="pagewrapper">
<div id="header">
<div id="header_left">
</div>
<div id="header_right">
<div id="links"></div>
<div id="search"><form id="cntnt01moduleform_1" method="post" action="moduleinterface.php" class="cms_form">
<div class="hidden">
<input type="hidden" name="mact" value="Search,cntnt01,dosearch,0" />
<input type="hidden" name="_sx_" value="1f2f4410" />
</div>
<label for="cntnt01searchinput">Suche: </label><input type="text" class="search-input" id="cntnt01searchinput" name="cntnt01searchinput" size="20" maxlength="50" value="Suche..." onfocus="if(this.value==this.defaultValue) this.value='';" onblur="if(this.value=='') this.value=this.defaultValue;"/>
<input class="search-button" name="submit" value="Suchen" type="submit" />
</form>
</div>
<div id="lang"></div>
</div>
</div>
<div id="main">
<div id="navi">
map_1961
Re: Problems upgrading from 1.11.2 to 1.11.4
Hello map_1961,
have you turned off caching in:
Layout -> Menu Manager "Cachable"=off
like described earlier here?
I must do both "caching off" and "deactivate social bookmarks".
But for now I stay on 1.11.3
Best whishes from Potsdam!
have you turned off caching in:
Layout -> Menu Manager "Cachable"=off
like described earlier here?
I must do both "caching off" and "deactivate social bookmarks".
But for now I stay on 1.11.3
Best whishes from Potsdam!
Re: Problems upgrading from 1.11.2 to 1.11.4
Hi networker - great hintnetworker wrote:Hello map_1961,
have you turned off caching in:
Layout -> Menu Manager "Cachable"=off
like described earlier here?
I must do both "caching off" and "deactivate social bookmarks".
But for now I stay on 1.11.3
Best whishes from Potsdam!
Thankx. After deactivating Cachable in Menu Manager for used menue (simple_navigation.tpl) the backend edits pages again. 4 me it even works with socialbookmarking tag (rev 1.

I use this code to integrate socialbookmarking tag by an MleCMS block:
Code: Select all
<div id="socialbookmarks">Seite teilen auf {socialBookmarking submitto="facebook|twitter|google|misterwong|delicious|yahoo" plusone="1" plusone_lang="de" real_url="1" target="_blank"}</div>
Code: Select all
div#socialbookmarks {
padding: 30px 0 0 0;
clear: both;
color: #5b6d31;
font: 10px Arial, Verdana, sans-serif;
}
map_1961
Re: Problems upgrading from 1.11.2 to 1.11.4
How I fixed mine:
I had the same issues as some of the above posts... I upgraded from 1.10.3 direct to 1.11.4 and it appeared fine until I realized I couldn't edit pages.
I wasn't caching any menus or any of that, so that didn't help (and toggling that on/off didn't matter either).
I found my template was calling {stylesheet} so I changed it to {cms_stylesheet} and applied, and at that point could no longer "apply" or "submit" further changes to the template. Apply did nothing and submit gave the same blank page as page edits used to.
However, now I could edit pages! But alas, my site's background/style images were all hosed/missing... Then I found this.
That post instructs you to now edit your stylesheets' image calls and add a [[root]]/ to them after the ( and prior to the uploads folder as such...
change from:
to:
Images fixed, I can now edit pages, and template submissions aren't blank pages either (and the apply works again) as the images it was referencing now exist.
All is well.
I had the same issues as some of the above posts... I upgraded from 1.10.3 direct to 1.11.4 and it appeared fine until I realized I couldn't edit pages.
I wasn't caching any menus or any of that, so that didn't help (and toggling that on/off didn't matter either).
I found my template was calling {stylesheet} so I changed it to {cms_stylesheet} and applied, and at that point could no longer "apply" or "submit" further changes to the template. Apply did nothing and submit gave the same blank page as page edits used to.
However, now I could edit pages! But alas, my site's background/style images were all hosed/missing... Then I found this.
That post instructs you to now edit your stylesheets' image calls and add a [[root]]/ to them after the ( and prior to the uploads folder as such...
change from:
Code: Select all
background-image:url(/uploads/AuraExoskin/aura_sidebar_head.gif);
Code: Select all
background-image:url([[root_url]]/uploads/AuraExoskin/aura_sidebar_head.gif);
All is well.
Re: Problems upgrading from 1.11.2 to 1.11.4
I already had this in my stylesheets. Still the problem occured.
-
- New Member
- Posts: 7
- Joined: Mon Dec 17, 2012 8:12 am
Re: Problems upgrading from 1.11.2 to 1.11.4
Finally found some time to trace the problem with our site. A global content block was using the Social Bookmarking tag. This prevented the templates from being changed from {stylesheet} to {cms_stylesheet}. I tried to replace Social Bookmarking function with the Face Book Like Button (another PHP Plugin) but this also causes errors when the page is edited.
Jase
Jase
Re: Problems upgrading from 1.11.2 to 1.11.4
My Site is up and running with 1.11.4
I had to fix if it was not already:
- Switch off menu caching in menu manager
- {stylesheet} to {cms_stylesheet}
- Fix the urls in the stylesheets for example
from: background: url(/uploads/LazyDays/bg/bullet.gif)
to: background: url("[[root_url]]/uploads/LazyDays/bg/bullet.gif")
- use socialBookmarking in the way
{socialBookmarking
submitto="facebook|twitter|google|misterwong|delicious|yahoo"
plusone="1" plusone_lang="de" real_url="1" target="_blank"
img_dir="/uploads/images/socialbookmarking/"}
That's it, it is working, I am glad.
Good Luck to all!
I had to fix if it was not already:
- Switch off menu caching in menu manager
- {stylesheet} to {cms_stylesheet}
- Fix the urls in the stylesheets for example
from: background: url(/uploads/LazyDays/bg/bullet.gif)
to: background: url("[[root_url]]/uploads/LazyDays/bg/bullet.gif")
- use socialBookmarking in the way
{socialBookmarking
submitto="facebook|twitter|google|misterwong|delicious|yahoo"
plusone="1" plusone_lang="de" real_url="1" target="_blank"
img_dir="/uploads/images/socialbookmarking/"}
That's it, it is working, I am glad.
Good Luck to all!
Re: Problems upgrading from 1.11.2 to 1.11.4
Hi,
I made a fresh install 1.11.4 and installed al modules I also have on the site with the problem. After each module checked if the problem occurred.
After installing "simple tagging" it occurred.
So I removed simple tagging from the site with the problem and all was ok.
Kind regards,
Jan
I made a fresh install 1.11.4 and installed al modules I also have on the site with the problem. After each module checked if the problem occurred.
After installing "simple tagging" it occurred.
So I removed simple tagging from the site with the problem and all was ok.
Kind regards,
Jan
Re: Problems upgrading from 1.11.2 to 1.11.4
Thanks milkboy31!
My Navigation was broken afyer the upgrade... just altered the "[[root_url]]/" in the stylesheet for it and its all back to normal
My Navigation was broken afyer the upgrade... just altered the "[[root_url]]/" in the stylesheet for it and its all back to normal

milkboy31 wrote:How I fixed mine:
I had the same issues as some of the above posts... I upgraded from 1.10.3 direct to 1.11.4 and it appeared fine until I realized I couldn't edit pages.
I wasn't caching any menus or any of that, so that didn't help (and toggling that on/off didn't matter either).
I found my template was calling {stylesheet} so I changed it to {cms_stylesheet} and applied, and at that point could no longer "apply" or "submit" further changes to the template. Apply did nothing and submit gave the same blank page as page edits used to.
However, now I could edit pages! But alas, my site's background/style images were all hosed/missing... Then I found this.
That post instructs you to now edit your stylesheets' image calls and add a [[root]]/ to them after the ( and prior to the uploads folder as such...
change from:to:Code: Select all
background-image:url(/uploads/AuraExoskin/aura_sidebar_head.gif);
Images fixed, I can now edit pages, and template submissions aren't blank pages either (and the apply works again) as the images it was referencing now exist.Code: Select all
background-image:url([[root_url]]/uploads/AuraExoskin/aura_sidebar_head.gif);
All is well.
Re: Problems upgrading from 1.11.2 to 1.11.4
I had a similar problem on one of my sites after upgrading from 1.11.3 to 1.11.4.
I was unable to edit some of the pages on the site. As several people have said, I fixed this by opening Menu Manager and disabling "Cachable" for the Default template: simple_navigation.tpl. (Of course, I didn't really fix anything, but at least now I can edit the pages.)
I was unable to edit some of the pages on the site. As several people have said, I fixed this by opening Menu Manager and disabling "Cachable" for the Default template: simple_navigation.tpl. (Of course, I didn't really fix anything, but at least now I can edit the pages.)
Re: Problems upgrading from 1.11.2 to 1.11.4
I believe there is already a new version of Menu Manager that fixes this issue. Either download it via Module Manager or get it from the Forge. HTH.RHF wrote: I had a similar problem on one of my sites after upgrading from 1.11.3 to 1.11.4.
I was unable to edit some of the pages on the site. As several people have said, I fixed this by opening Menu Manager and disabling "Cachable" for the Default template: simple_navigation.tpl. (Of course, I didn't really fix anything, but at least now I can edit the pages.)

"There are 10 types of people in this world, those who understand binary... and those who don't."
* by the way: English is NOT my native language (sorry for any mistakes...).
Code of Condut | CMSMS Docs | Help Support CMSMS
My developer Page on the Forge
GeekMoot 2015 in Ghent, Belgium: I was there!
GeekMoot 2016 in Leicester, UK: I was there!
DevMoot 2023 in Cynwyd, Wales: I was there!
* by the way: English is NOT my native language (sorry for any mistakes...).
Code of Condut | CMSMS Docs | Help Support CMSMS
My developer Page on the Forge
GeekMoot 2015 in Ghent, Belgium: I was there!
GeekMoot 2016 in Leicester, UK: I was there!
DevMoot 2023 in Cynwyd, Wales: I was there!
Re: Problems upgrading from 1.11.2 to 1.11.4
Thanks, Jo. I downloaded the latest version of Menu Manager via the Module Manager and it seemed to work, but I no longer have access to the Menu Manager admin page. It was previously available under the Layout tab. Any thoughts?Jo Morg wrote:I believe there is already a new version of Menu Manager that fixes this issue. Either download it via Module Manager or get it from the Forge. HTH.
Re: Problems upgrading from 1.11.2 to 1.11.4
@RHF
Clear cache
Clear cache
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: Problems upgrading from 1.11.2 to 1.11.4
Of course! By the way, the updated Menu Manager did fix the problem. I was able to make the simple-navigation.tpl cachable again and can still edit the pages.Rolf wrote:@RHF
Clear cache
Thanks.