I liked the headline reader in Your_Account module... however there's too many for me to manually delete each one of them and then manually add preferred RSS/XML feed sites.
Tip on wiping out all listing in headline reader at once? So I can add my own.
Thx in advance for the tip.
clerc Private
Joined: Feb 14, 2003
Posts: 45
Location: USA
Posted:
Mon Mar 31, 2003 9:17 pm
Figured it out. Tip for anybody needing this:
Code:
--
-- Table structure for table 'nuke_headlines'
--
DROP TABLE IF EXISTS nuke_headlines;
CREATE TABLE nuke_headlines (
hid int(11) NOT NULL auto_increment,
sitename varchar(30) NOT NULL default '',
headlinesurl varchar(200) NOT NULL default '',
PRIMARY KEY (hid),
KEY hid (hid)
) TYPE=MyISAM;
--
-- Dumping data for table 'nuke_headlines'
--
INSERT INTO nuke_headlines VALUES (3,'Slashdot','http://slashdot.org/slashdot.rdf');
clerc Private
Joined: Feb 14, 2003
Posts: 45
Location: USA
Posted:
Mon Mar 31, 2003 9:22 pm
Result of me having do this 'cuz php upgraded then get error:
Fatal error: Cannot redeclare settimeout() in /hsphere/local/home/site.net/modules/MyHeadlines/MyHeadlines/include/stck.php on line 208
I really like this because of its sophisticated scraping technology allowing me to scrape headlines off sites that dont utilize RSS/XML feeds.
If you know simple solution to this, pls guide me! I was able to figure out to get feeds from groups.yahoo.com but I cant get in to give you an example on how to.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum