31
SMEDrieben
Re: Partial Basic Module Pack for XOOPS 2.5.5: RSS in wfdownloads: solved
  • 2012/12/30 15:57

  • SMEDrieben

  • Not too shy to talk

  • Posts: 173

  • Since: 2009/6/17


I solved the RSS problem (RSS icon an link not shown).

index.php ends with:

le="color: #000000"><?php if($xoopsModuleConfig['enablerss'] == 1) { //$rsslink=sprintf("<a href='%s' title='%s'><img src='%s' border=0 alt='%s' title='%s'></a>",WFDOWNLOADS_URL."rss.php", _MD_WFD_LEGENDTEXTRSS, XOOPS_URL."/".$xoopsModuleConfig['mainimagedir']."/icon/rss.gif",_MD_WFD_LEGENDTEXTRSS); $xoopsTpl->assign('full_rssfeed_link', $rsslink); $rsslink=sprintf("<a href='%s' title='%s'><img src='%s' border=0 alt='%s' title='%s'></a>",WFDOWNLOADS_URL."rss.php", _MD_WFD_LEGENDTEXTRSS, XOOPS_URL."/".$xoopsModuleConfig['mainimagedir']."/icon/rss.gif",_MD_WFD_LEGENDTEXTRSS, _MD_WFD_LEGENDTEXTRSS, '' ); //changed by Zyspec }


This code doesn't work, because the line:
le="color: #000000"><?php $xoopsTpl->assign('full_rssfeed_link', $rsslink);


should be after the definition of $rsslink. The first part (that starts with //$rsslink) can be deleted. Then, the correct code is:

le="color: #000000"><?php if($xoopsModuleConfig['enablerss'] == 1) { $rsslink=sprintf("<a href='%s' title='%s'><img src='%s' border='0' alt='%s' title='%s'></a>", WFDOWNLOADS_URL."rss.php", _MD_WFD_LEGENDTEXTRSS, XOOPS_URL."/".$xoopsModuleConfig['mainimagedir']."/icon/rss.gif", _MD_WFD_LEGENDTEXTRSS, _MD_WFD_LEGENDTEXTRSS); //changed by Zyspec $xoopsTpl->assign('full_rssfeed_link', $rsslink); }


I've added a space before WFDOWNLOADS_URL.

In viewcat.php there is a similar problem that can be solved in a similar way.

SMEDrieben

32
Mamba
Re: Partial Basic Module Pack for XOOPS 2.5.5 (updated Final releases)
  • 2012/12/30 16:02

  • Mamba

  • Moderator

  • Posts: 11542

  • Since: 2004/4/23


Quote:
@ SMEDrieben
I have tested WF-Downloads 3.21 Final. It works fine: one problem. The RSS-icon and link don't appear, not in the index view, not in de the category views. I did have a similar problem in 3.2 RC.

I'll look into it, once I find some time.

I hope, that more people will start contributing with bug fixes!
Support XOOPS => DONATE
Use 2.7.x | Docs | Modules | Bugs

33
SMEDrieben
Re: Partial Basic Module Pack for XOOPS 2.5.5 (updated Final releases): Extgallery
  • 2013/1/1 19:48

  • SMEDrieben

  • Not too shy to talk

  • Posts: 173

  • Since: 2009/6/17


Thee are a few minor problems in Extgallery:

- the Dutch language files are from a previous version. Quite a lot of variables are missing.

In xoops_version.php, there are strange underscores that disturb normal functioning of the module. E.g. lin 469

le="color: #000000"><?php $modversion['config'][$i]['title'] = '_MI_EXTGAL_PERPAGEŁ€RSS';


Before "RSS", a regular underscore must replace the hyphen. There are about 7 of those mistakes in xoops_version.php.

SMEDrieben

34
Mamba
Re: Partial Basic Module Pack for XOOPS 2.5.5 (updated Final releases): Extgallery
  • 2013/1/1 19:57

  • Mamba

  • Moderator

  • Posts: 11542

  • Since: 2004/4/23


Quote:
Before "RSS", a regular underscore must replace the hyphen. There are about 7 of those mistakes in xoops_version.php.

Thanks! Fixed in SVN
Support XOOPS => DONATE
Use 2.7.x | Docs | Modules | Bugs

35
Anonymous
Re: Partial Basic Module Pack for XOOPS 2.5.5 (updated Final releases)
  • 2013/1/1 20:54

  • Anonymous

  • Posts: 0

  • Since: 0


Quote:
the Dutch language files are from a previous version. Quite a lot of variables are missing


I'll look after the Dutch translation te next days, hang on

36
SMEDrieben
Re: Partial Basic Module Pack for XOOPS 2.5.5 (updated Final releases)
  • 2013/1/15 19:47

  • SMEDrieben

  • Not too shy to talk

  • Posts: 173

  • Since: 2009/6/17


Has anybody tested MyMenus 1.41. ? The admin works correctly, but the block of the module (mymenus_block) doesn't show up at any page.

- Xoops 2.5.5
- Cache emptied
- permissions assigned correctly
- Menu and menu item (link) defined in the module
- same problem in Xoops default theme
- same probleme with XoopsTpl en XoTheme in settings of the module
- no errors in debug information

Any suggestions ? Thanks !

SMEDrieben

37
Cesagonchu
Re: Partial Basic Module Pack for XOOPS 2.5.5 (updated Final releases)

Quote:

SMEDrieben wrote:
Has anybody tested MyMenus 1.41. ? The admin works correctly, but the block of the module (mymenus_block) doesn't show up at any page.
SMEDrieben


Some bugs here have not been corrected.