4
Same here, but the feed is there, it just won't appear inside XOOPS.
I can see the raw RSS but Headlines module wont render it in
http://news.bbc.co.uk/rss/newsonline_world_edition/science/nature/rss091.xml and
http://bnhm.berkeley.museum/rss/BNHM.xml BTW, I've just made the RSS url field larger and if anyone have to do this, here's the trick:
First thing to do is change the field type in MySQL: it's set as VARCHAR(255) (255 characters) and you should set it to TEXT, which allows 65535 chars (unfortunatelly, there's no intermediate value).
Then you have to change two module's files:
Open /modules/xoopsheadline/admin/index.php and find and replace
Quote:
$form->addElement(new XoopsFormText(_AM_URLEDFXML, 'headline_rssurl', 50, 255, 'http://'), true);
(which appears, and has to be replaced, twice) with
Quote:
$form->addElement(new XoopsFormText(_AM_URLEDFXML, 'headline_rssurl', 50, XYZ, 'http://'), true);
, XYZ being the new size in bytes for your RSS url field.
In /modules/xoopsheadline/class/headline.php, find
Quote:
$this->initVar('headline_rssurl', XOBJ_DTYPE_TXTBOX, null, true, 255);
and replace "255" with the same value used before. This might be handy if you want to display customized Amazon RSS feeds