Upgrade from 0.13 -> 1.02 - menus lost.

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.
zoobarb

Upgrade from 0.13 -> 1.02 - menus lost.

Post by zoobarb »

I am successfully running 0.13. Running on Suse 10.0, mysql 4.1.13, php 4.4.0, apache 2.0.54.

I upgraded to 1.02.  Things look great except I have lost the menus - no horizontal, no vertical.  I have tried changing the template and applying it to all pages and it makes no difference.

I frankly don't know where to look.... I untarred my backup to get the site backup but I can reproduce by reinstalling.  This is a client site so I try not to play during normal hours.

Many thanks for any and all suggestions.


Mike
h2o

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by h2o »

Hi,

I upgraded from the same version and my menu has gone also.
I got an error with mine;

string(91) "Smarty error: unable to read resource: "module_file_tpl:MenuManager;cssmenu-accessible.tpl""
Home

Any suggestions?

Thanks
zoobarb

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by zoobarb »

I don't get any errors ... but I need to check my php config to see if I am suppressing them.  I will also check my apache logs.  Where is the error .. on screen or in logs?

Thanks,
Mike
Dee
Power Poster
Power Poster
Posts: 1197
Joined: Sun Mar 19, 2006 8:46 pm

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by Dee »

cssmenu-accessible.tpl is a menu template from older MenuManager versions, it doesn't exist anymore in the current version.
I think copying a version from 0.13 to the modules/MenuManager/templates folder will fix it.
h2o

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by h2o »

zoobarb wrote: I don't get any errors ... but I need to check my php config to see if I am suppressing them.  I will also check my apache logs.  Where is the error .. on screen or in logs?

Thanks,
Mike


Error is on the screen
h2o

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by h2o »

Dee wrote: cssmenu-accessible.tpl is a menu template from older MenuManager versions, it doesn't exist anymore in the current version.
I think copying a version from 0.13 to the modules/MenuManager/templates folder will fix it.

That fixed me.. Thanks Dee  :) :)
zoobarb

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by zoobarb »

Ok, the cssmenu-accessible.tpl exists.  So, that does not seem to fix it...

If someone would take a quick look at http://www2.valleyvending.com

You will see where I put in the line where the menu should be ... for some reason the menu code in the template just is not processed.  The text on screen is within the tag, so the tag is being processed.

Any ideas????


Thanks,
Mike
Dee
Power Poster
Power Poster
Posts: 1197
Joined: Sun Mar 19, 2006 8:46 pm

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by Dee »

zoobarb wrote: Ok, the cssmenu-accessible.tpl exists.  So, that does not seem to fix it...

If someone would take a quick look at http://www2.valleyvending.com

You will see where I put in the line where the menu should be ... for some reason the menu code in the template just is not processed.  The text on screen is within the tag, so the tag is being processed.

Any ideas????


Thanks,
Mike
I think he text was put inside the div tag in the template (it doesn't mean the tag is processed).
How do you include the menu tag? It would be useful if you posted the (menu related part of) the template here.
zoobarb

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by zoobarb »

Here is the code from the template - competely unchanged except for the text I added....The template I am using is CSSMenu Vert 1 col-2

I don't know where to look to see how/when each element is processed....  I would just put in little pieces of debugging code to try and narrow it down...

   
     
There should be a menu here....
        Navigation
        {cms_module module='menumanager' template='cssmenu-accessible.tpl'}
     

     
     
     
     

Thanks!

Also, do you know where the actual templates are located?  I would be willing to overwrite the older ones to see if there is a problem.. but looking at other posts my problem doesn't seem all too common so hopefully something simple.

Thanks again!
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by Dr.CSS »

Have you tried...

{menu template='cssmenu.tpl'}

EDIT: This is basically the same as the old cssmenu-accessible.tpl
Last edited by Anonymous on Thu Oct 12, 2006 8:44 pm, edited 1 time in total.
Dee
Power Poster
Power Poster
Posts: 1197
Joined: Sun Mar 19, 2006 8:46 pm

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by Dee »

zoobarb wrote: Also, do you know where the actual templates are located?  I would be willing to overwrite the older ones to see if there is a problem.. but looking at other posts my problem doesn't seem all too common so hopefully something simple.
Thanks again!
The template files are located in /path/to/cmsms/modules/MenuManager/templates/
Are you sure the cssmenu-accessible.tpl template is present if you don't know the location?

Code: Select all

 {cms_module module='menumanager' template='cssmenu-accessible.tpl'}
and

Code: Select all

 {menu template='cssmenu-accessible.tpl'}
should both work if the template file is present.

As suggested by Mark you could also try the cssmenu.tpl template (which is included in the latest MenuManager version) with:

Code: Select all

{menu template='cssmenu.tpl'}
martijnmegens

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by martijnmegens »

I have the same problem, used:

{menu template='cssmenu.tpl'}
{cms_module module='menumanager' template='cssmenu.tpl'}
{menu template='cssmenu'}
{cms_module module='menumanager' template='cssmenu'}

None of these work, the file is in the right directory.
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by Dr.CSS »

Have you looked in the Menu Manager, Layout » Menu Manager, to see if you have any templates at all, should be 2 tabs, Database Templates and File Templates, Database Templates are ones that you customize by going to File Templates and clicking the little icon on the right, File Templates are the default menu templates.

If you don't see templates in either one you may need to reinstall the Menu Manager Module...
martijnmegens

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by martijnmegens »

Everything is there, like it was before upgrade  :'(

Is there anyway i can echo some errors...debugg?
martijnmegens

Re: Upgrade from 0.13 -> 1.02 - menus lost.

Post by martijnmegens »

I think it might be a path problem, cause he isn't including anything.

When i try to change permission on the module it says:

Couldn't change permissions on some files
Last edited by martijnmegens on Sun Oct 29, 2006 11:21 pm, edited 1 time in total.
Locked

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