Problems upgrading from 1.11.2 to 1.11.4

Help with getting the CMS CORE package up and running. This does not include 3rd party modules, PHP scripts, anything downloaded via module manager or from any external source.
saltydog
Power Poster
Power Poster
Posts: 281
Joined: Fri Mar 04, 2005 9:06 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by saltydog »

I have fixed this issue by replacing the tag {stylesheet} with {cms_stylesheet} in my templates.
User avatar
map_1961
Power Poster
Power Poster
Posts: 406
Joined: Fri Apr 20, 2007 7:26 pm
Location: Ruhrstadt

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by map_1961 »

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:&nbsp;</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">
        
Thankx

map_1961
networker
Forum Members
Forum Members
Posts: 25
Joined: Sat Feb 07, 2009 2:58 pm

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by networker »

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!
User avatar
map_1961
Power Poster
Power Poster
Posts: 406
Joined: Fri Apr 20, 2007 7:26 pm
Location: Ruhrstadt

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by map_1961 »

networker 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!
Hi networker - great hint
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.8).

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>
This are the styles:

Code: Select all

div#socialbookmarks {
   padding: 30px 0 0 0;
   clear: both;
   color: #5b6d31;
     font: 10px Arial, Verdana, sans-serif;
}
Thankx a lot

map_1961
milkboy31
Forum Members
Forum Members
Posts: 12
Joined: Sat May 10, 2008 1:04 pm

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by milkboy31 »

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:

Code: Select all

background-image:url(/uploads/AuraExoskin/aura_sidebar_head.gif);
to:

Code: Select all

background-image:url([[root_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.

All is well.
rodeto
Power Poster
Power Poster
Posts: 410
Joined: Thu May 04, 2006 9:12 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by rodeto »

I already had this in my stylesheets. Still the problem occured.
PatriotsJase
New Member
New Member
Posts: 7
Joined: Mon Dec 17, 2012 8:12 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by PatriotsJase »

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
networker
Forum Members
Forum Members
Posts: 25
Joined: Sat Feb 07, 2009 2:58 pm

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by networker »

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!
janvl
Power Poster
Power Poster
Posts: 972
Joined: Wed Aug 13, 2008 10:57 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by janvl »

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
wibby
Forum Members
Forum Members
Posts: 41
Joined: Tue Nov 20, 2007 11:17 am
Location: Liverpool, UK

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by wibby »

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 :)
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:

Code: Select all

background-image:url(/uploads/AuraExoskin/aura_sidebar_head.gif);
to:

Code: Select all

background-image:url([[root_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.

All is well.
RHF
Forum Members
Forum Members
Posts: 20
Joined: Sun Jan 23, 2011 1:55 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by RHF »

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.)
User avatar
Jo Morg
Dev Team Member
Dev Team Member
Posts: 1967
Joined: Mon Jan 29, 2007 4:47 pm

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by Jo Morg »

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.)
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. ;)
"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!
RHF
Forum Members
Forum Members
Posts: 20
Joined: Sun Jan 23, 2011 1:55 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by RHF »

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. ;)
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?
User avatar
Rolf
Power Poster
Power Poster
Posts: 7825
Joined: Wed Apr 23, 2008 7:53 am
Location: The Netherlands
Contact:

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by Rolf »

@RHF
Clear cache
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Image
RHF
Forum Members
Forum Members
Posts: 20
Joined: Sun Jan 23, 2011 1:55 am

Re: Problems upgrading from 1.11.2 to 1.11.4

Post by RHF »

Rolf wrote:@RHF
Clear cache
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.
Thanks.
Locked

Return to “[locked] Installation, Setup and Upgrade”