Members: 16,996
Threads: 38,831
Posts: 159,349
Online: 34

Newest Member: Kl_broka@rediffmail.com


Odoo.tv - Outdoor Television


Sedo - Domains kaufen und verkaufen das Projekt mambers.com steht zum Verkauf Besucherstatistiken von mambers.com etracker® Web-Controlling statt Logfile-Analyse
Old 21.10.2004, 11:11   #1 (permalink)
Baby Mamber
 
swonline's Avatar
 
Join Date: May 2004
Posts: 13
swonline is on a distinguished road
Smile SWmenuFree2.0 Released!


SWmenuFree2.0 has been released. This is a major upgrade to SWmenuFree and fixes a lot of bugs.

The number of added features is too numerous to list.

Main new features are the ability to position relative or absolute.

Menu can also be vertical or horizontal. Menutype can be set through module parameters. eg. menutype=mainmenu

The backend has a whole lot more options and browser compatability has been greatly improved by integrating with the tigra menu system.

Hope you all like.

To download and for more info visit www.swonline.biz
swonline is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 21.10.2004, 13:00   #2 (permalink)
Mamber
 
sunflower's Avatar
 
Join Date: Aug 2004
Location: Sweden
Posts: 83
sunflower is on a distinguished road
Default Re: SWmenuFree2.0 Released!

I wanted to check it out, installed the module and component and got the following error:
Fatal error: Call to undefined function: get() in /mambo/modules/mod_swmenufree.php on line 18

Does it require the latest version (4.5.1) of mambo? Is there something else I'm missing? Is there some kind of documentation out there?
sunflower is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 21.10.2004, 17:51   #3 (permalink)
Baby Mamber
 
swonline's Avatar
 
Join Date: May 2004
Posts: 13
swonline is on a distinguished road
Default Re: SWmenuFree2.0 Released!

The get() function is specific to mambo 4.5.1 but this line should parse in earlier versions, at least it does on my computer. I will have to investigate further.

For now just replace line 18 of the mod_swmenufree.php file.

line 18:
Code:
$menu = ($params->menutype ? $params->menutype : $params->get( 'menutype' )) ? $params->menutype ? $params->menutype : $params->get( 'menutype' ) : "mainmenu";
if you are using a version of mambo prior to 4.5.1 then replace this line with:

Code:
$menu = $params->menutype ? $params->menutype : "mainmenu";
if your version is 4.5.1 or 4.5.1a then relace the line with this code:
Code:
$menu =  $params->get( 'menutype' ) ?  $params->get( 'menutype' ) : "mainmenu";
or otherwise you could just hardcode the menu you want in. eg.
$menu = "mainmenu"

I will fix this line of code soon to make it more compatable with all mambo versions.
swonline is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 22.10.2004, 15:25   #4 (permalink)
Baby Mamber
 
Join Date: Apr 2004
Posts: 6
sux2bme is on a distinguished road
Default Re: SWmenuFree2.0 Released!

I am having an issue with the menu in Netscape 7.x.x.x.x.x.x.x.......
Although the menu loads in a somewhat expected state, as soon as you mouse over the menu anywhere, it jumps a couple hundred pixels right. it still functions but it is way off the there to the right.
Love the menu and was thinking about buying the pro version but i wonder if there is a fix for this issue. or for my ignoranse.
The menu is in an relative/horizontal position so i can use it as a static dropdown at the top of the page. Has anyone else seen this behavior or am i the only lucky one? any help?
sux2bme is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 23.10.2004, 13:29   #5 (permalink)
Baby Mamber
 
swonline's Avatar
 
Join Date: May 2004
Posts: 13
swonline is on a distinguished road
Default Re: SWmenuFree2.0 Released!

Yes I have noticed that problem. This is template specific and has to do with the centering of modules in a template. I am working on a fix, but for now you may need to do a liitle adjustment to the template.
swonline is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 25.10.2004, 09:43   #6 (permalink)
Baby Mamber
 
Join Date: Jul 2004
Posts: 14
chretien is on a distinguished road
Default Re: SWmenuFree2.0 Released!

I have teh latest version of mambo en sw installed, but i get the next error

Warning: mysql_numrows(): supplied argument is not a valid MySQL result resource in /home/cr10/public_html/modules/mod_swmenufree.php on line 64
chretien is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 25.10.2004, 10:29   #7 (permalink)
Baby Mamber
 
swonline's Avatar
 
Join Date: May 2004
Posts: 13
swonline is on a distinguished road
Default Re: SWmenuFree2.0 Released!

Sorry just found a problem with the source that will affect people who are not using the standard mos_ as the table prefix.

If you are not using the default mos_ as the table prefix then please replace lines 58 -62 of the mod_swmenufree.php file in the modules folder.

Code:
if ($mosConfig_shownoauth) {
			$result2 = mysql_query("SELECT * FROM ".$mosConfig_dbprefix."menu WHERE mos_menu.menutype = '".$menu."' AND published = '1' ORDER BY parent, ordering;");
		} else {
			$result2 = mysql_query("SELECT * FROM ".$mosConfig_dbprefix."menu WHERE mos_menu.menutype = '".$menu."' AND published = '1' AND access <= '$my->gid' ORDER BY parent, ordering;");
		}
with these lines:

Code:
if ($mosConfig_shownoauth) {
			$result2 = mysql_query("SELECT * FROM ".$mosConfig_dbprefix."menu WHERE ".$mosConfig_dbprefix."menu.menutype = '".$menu."' AND published = '1' ORDER BY parent, ordering;");
		} else {
			$result2 = mysql_query("SELECT * FROM ".$mosConfig_dbprefix."menu WHERE ".$mosConfig_dbprefix."menu.menutype = '".$menu."' AND published = '1' AND access <= '$my->gid' ORDER BY parent, ordering;");
		}
Also:

you must specify which menu you want to use for the module. To do this go to modules->manage modules in the mambo administration.

Click on the swmenufree module to edit

under parameters type:

menutype=mainmenu

or a different menu name if not using the mainmenu:

eg. menutype=topmenu

This should fix the problem described above and also a call to fatal function get() that some people are experiencing.

I will release an update soon to permanently fix these errors.
swonline is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 26.10.2004, 10:39   #8 (permalink)
Baby Mamber
 
Join Date: Jul 2004
Posts: 14
chretien is on a distinguished road
Default Re: SWmenuFree2.0 Released!

No, this did'nt solve the problem
chretien is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
New template released: tdwfreedom Trijnie Template Announcements 15 11.01.2006 07:48
new moslookup for 4.5.1 released Alikon Community Announcements 0 01.10.2004 18:17
Simpleboard Forum Component 1.0 RC4 Released! jdg Development Announcements 19 27.08.2004 02:32
AudioScrobbler Module Released batje Development Announcements 0 13.04.2004 22:38


All times are GMT +2. The time now is 04:58.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
A vBSkinworks Design
© Copyright 2004-2008 by Arthur Konze Webdesign.