Blogs, Tagging, RSS Feeds
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   SEO Chat ForumsSearch Engine StrategiesBlogs, Tagging, RSS Feeds

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread SEO Chat Forums Sponsor:
  #1  
Old April 7th, 2005, 10:48 AM
Tojan's Avatar
Tojan Tojan is offline
Wymiatacz
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Warsaw, Poland
Posts: 173 Tojan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 15 h 46 m 52 sec
Reputation Power: 5
RSS feeds -always fresh content

Hi

SEs love fresh contnet so I've decided to use RSS on my website. Although I've read a lot Im still struggling with it.
It would be really nice to have fresh (relevant) stuff that would be parsed daily and the news would be selected by using keywords.

Does anyone know any free parsers that would do that?
Parser with keyword selection would be really cool.
__________________

Web Hosting Deal - compare the web hosting deals
Ebay | Speed up Firefox - accelerate Firefox in 3 minutes

Last edited by Tojan : April 7th, 2005 at 10:51 AM.

Reply With Quote
  #2  
Old April 7th, 2005, 12:23 PM
toddieg's Avatar
toddieg toddieg is offline
Permanently Banned
SEO Chat Intermediate (1500 - 1999 posts)
 
Join Date: Feb 2004
Posts: 1,936 toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Weeks 2 Days 6 h 30 m 6 sec
Reputation Power: 12
i just implemented RSS on our criminal defense site and our zyprexa site... so far it's been working out great.

not sure about the parsers though... i just picked a relevant feed for the site, and played around with it for about a week.. some of the feeds update daily, while others don't update for weeks... it's a gamble
__________________
It's been fun everyone... Time to leave for good. See this for more details.

Reply With Quote
  #3  
Old April 7th, 2005, 12:28 PM
Tojan's Avatar
Tojan Tojan is offline
Wymiatacz
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Warsaw, Poland
Posts: 173 Tojan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 15 h 46 m 52 sec
Reputation Power: 5
I've found really nice&short script, but I need something more sophisticated.

If you want there is the script (really easy):

Quote:
<?

#############################################
# This is rdf-parse.inc, which parses RDF #
# files and outputs links to their ITEMs #
# #
# Optionally, it can also print HTML for #
# the IMAGE and CHANNEL bits of the XML. #
# Just uncomment those lines in endElement #
# and put in appropriate HTML. #
# #
# Usage: #
# parseRDF("filename") in the bottom #
# note: "filename" can be a URL #
# #
# Requires: #
# PHP 4 compiled with "--use-xml" #
# #
# Creates: #
# Global variables $_depth, $_tags, and #
# $_item #
# #
# History: #
# v0.6b - fr3nd notified me of a party- #
# crashing feature of expat that #
# didn't parse stuff like & #
# properly. Fixed. Also fixed #
# initArray(), which didn't #
# do anything at all. #
# v0.61b- fixed a missing ) on line 46 #
#############################################

$_item = array();
$_depth = array();
$_tags = array( "dummy" );
# "dummy" prevents unecessary subtraction in the $_depth indexes

function initArray() {
global $_item;

$_item = array ("TITLE"=>"", "LINK"=>"", "DESCRIPTION"=>"", "URL"=>"" );
}

function startElement($parser, $name, $attrs) {
global $_depth, $_tags, $_item;

if ( ($name=="ITEM")||($name=="CHANNEL")||($name=="IMAGE") ) {
initArray();
}
$_depth[$parser]++;
array_push($_tags, $name);
}

function endElement($parser, $name) {
global $_depth, $_tags, $_item;

array_pop($_tags);
$_depth[$parser]--;
switch ($name) {
case "ITEM":
echo "<P><A HREF=\"$_item[LINK]\">$_item[TITLE]</A><br>$_item[DESCRIPTION]</P>\n";
initArray();
break;

case "IMAGE":
# echo "<A HREF=\"$_item[LINK]\"><IMG SRC=\"$_item[URL]\" ALT=\"$_item[TITLE]\" BORDER=0></A>\n<BR>\n";
initArray();
break;

case "CHANNEL":
# echo "<h3>$_item[TITLE]</h3>\n";
initArray();
break;
}
}

function parseData($parser, $text) {
global $_depth, $_tags, $_item;

$crap = preg_replace("/\s/", "", $text);
# is the data just whitespace?
# if so, we don't want it!

if ($crap) {
$text = preg_replace("/^\s+/", "", $text);
# get rid of leading whitespace
if ( $_item[$_tags[$_depth[$parser]]] ) {
$_item[$_tags[$_depth[$parser]]] .= $text;
} else {
$_item[$_tags[$_depth[$parser]]] = $text;
}
}
}


function parseRDF($file) {
global $_depth, $_tags, $_item;

$xml_parser = xml_parser_create();
initArray();

# Set up event handlers
xml_set_element_handler($xml_parser, "startElement", "endElement");
xml_set_character_data_handler($xml_parser, "parseData");

# Open up the file
$fp = fopen($file, "r") or die( "Could not open $file for input");

while ($data = fread($fp, 4096)) {
if (!xml_parse($xml_parser, $data, feof($fp))) {
die(sprintf("XML error: %s at line %d",
xml_error_string(xml_get_error_code($xml_parser)),
xml_get_current_line_number($xml_parser)));
}
}

fclose( $fp );
xml_parser_free($xml_parser);
}
parseRDF("input some xml here");

?>



Reply With Quote
  #4  
Old April 7th, 2005, 12:32 PM
chachi's Avatar
chachi chachi is offline
Contributing User
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 283 chachi User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 55 m 54 sec
Reputation Power: 5
Check out MagpieRss, it is free and works great
__________________
Jason
Hosted, web based Customer service software for people who operate many websites and a free, web based
reciprocal link manager . Of course, San Diego real estate pays the bills.

Reply With Quote
  #5  
Old April 7th, 2005, 02:13 PM
jwbond's Avatar
jwbond jwbond is offline
Saving 4 a "giant laser"
SEO Chat Beginner (1000 - 1499 posts)
 
Join Date: May 2004
Posts: 1,012 jwbond User rank is Corporal (100 - 500 Reputation Level)jwbond User rank is Corporal (100 - 500 Reputation Level)jwbond User rank is Corporal (100 - 500 Reputation Level)jwbond User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 Days 22 h 42 m 11 sec
Reputation Power: 8
try carp rss...easy to install and is in html format

Reply With Quote
  #6  
Old April 7th, 2005, 02:28 PM
mick.sawyer mick.sawyer is offline
I love SEO Chat.
SEO Chat Regular (2000 - 2499 posts)
 
Join Date: Aug 2004
Location: I love SEO Chat.
Posts: 2,427 mick.sawyer User rank is Sergeant (500 - 2000 Reputation Level)mick.sawyer User rank is Sergeant (500 - 2000 Reputation Level)mick.sawyer User rank is Sergeant (500 - 2000 Reputation Level)mick.sawyer User rank is Sergeant (500 - 2000 Reputation Level)mick.sawyer User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 3 Weeks 1 Day 16 h 50 m 58 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 0
G man uses carp a lot but i can never figure out how to use them.

Does anyone have a link to an rss tutorial that will tell me how to install it and what features i can get out of it.
I can find a few but i want someone more experienced with rss to point me in the direction of one.

Reply With Quote
  #7  
Old April 7th, 2005, 02:31 PM
jwbond's Avatar
jwbond jwbond is offline
Saving 4 a "giant laser"
SEO Chat Beginner (1000 - 1499 posts)
 
Join Date: May 2004
Posts: 1,012 jwbond User rank is Corporal (100 - 500 Reputation Level)jwbond User rank is Corporal (100 - 500 Reputation Level)jwbond User rank is Corporal (100 - 500 Reputation Level)jwbond User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 Days 22 h 42 m 11 sec
Reputation Power: 8
i had a problem trying to install other rss display scripts...carp was very easy and has a cgi script which does the install for you, couldnt be easier

Reply With Quote
  #8  
Old April 7th, 2005, 02:40 PM
Tojan's Avatar
Tojan Tojan is offline
Wymiatacz
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Sep 2004
Location: Warsaw, Poland
Posts: 173 Tojan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 15 h 46 m 52 sec
Reputation Power: 5
I've seen that you have to pay for carp. For me keyword selection is essential.
Does anyone know if any parser can do that?
I know that some desktop parsers can do that (like Jate).

Reply With Quote
  #9  
Old April 7th, 2005, 03:04 PM
toddieg's Avatar
toddieg toddieg is offline
Permanently Banned
SEO Chat Intermediate (1500 - 1999 posts)
 
Join Date: Feb 2004
Posts: 1,936 toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level)toddieg User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Weeks 2 Days 6 h 30 m 6 sec
Reputation Power: 12
magpierss is good stuff.

Reply With Quote
  #10  
Old April 8th, 2005, 08:19 PM
x3nos's Avatar
x3nos x3nos is offline
Bad Kitty
SEO Chat Newbie (0 - 499 posts)
 
Join Date: May 2003
Location: New Mexico
Posts: 136 x3nos User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 h 21 m 19 sec
Reputation Power: 6
ditto on the magpie rss recommendation

here is an implementation I used for one of the sites I manage
http://recoverythroughsupport [dot] com/rss/
__________________
**Clock Paradox Blog - Internet News, SEO Opinions and Editorials

Reply With Quote
  #11  
Old April 10th, 2005, 09:55 AM
1969g1969's Avatar
1969g1969 1969g1969 is offline
Contributing User
SEO Chat Novice (500 - 999 posts)
 
Join Date: May 2004
Posts: 753 1969g1969 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 12 h 45 m 44 sec
Reputation Power: 5
I was looking for good script use RSS feed, seems most of the 'good script' place javascript in the page to deliver the content. So seems not much help for SEO, but for visitors.

Reply With Quote
  #12  
Old April 10th, 2005, 12:58 PM
zanet's Avatar
zanet zanet is offline
Contributing User
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Nov 2004
Posts: 309 zanet User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 Day 23 h 12 m 39 sec
Reputation Power: 5
You mention RSS as it gives fresh content

Sorry to ruin the party, but does RSS really work? As Google seems to like new pages with the fresh content in, does RSS produce new pages with the content or just new content on an old page?
__________________
The all new
google talks

and earn good money with Chitka - better than adsense !

retro nostalgic yesterdayland visit skooldays

Reply With Quote
  #13  
Old April 10th, 2005, 02:13 PM
123promotion's Avatar
123promotion 123promotion is offline
Contributing User
SEO Chat Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Location: UK
Posts: 151 123promotion User rank is Private First Class (20 - 50 Reputation Level)123promotion User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 17 h 38 m 45 sec
Reputation Power: 6
Send a message via Yahoo to 123promotion
Quote:
Originally Posted by zanet
You mention RSS as it gives fresh content

Sorry to ruin the party, but does RSS really work? As Google seems to like new pages with the fresh content in, does RSS produce new pages with the content or just new content on an old page?


You can use various RSS feeds to change the content of a page each time a bot comes around. Good for 'freshness' as anyone can see. Each time it visits, it thinks, "this page has changed, ill take a closer look" and so on for each page (in theory anyway).

Also, with a nice bit of coding, its easy to create literally thousands of new pages based on peoples feeds by using data from syndic8 etc. Not sure why anyone would want this tho unless they are up to no good.

To summarise, targeted (i.e. about the subject of the page) RSS feeds on your site, by way of magpie are a very good way to help your site to get promoted.
__________________
Try the new (and FREE) Directory Manager to manage your directory submissions.

Overture and Wordtracker Overture and Wordtracker Keyword Popularity Tool and SEO Directory Bisbee

Reply With Quote
  #14  
Old April 10th, 2005, 02:42 PM
GeoffreyF67's Avatar
GeoffreyF67 GeoffreyF67 is offline
Resident Black Hat
SEO Chat Beginner (1000 - 1499 posts)
 
Join Date: Aug 2004
Location: Woodstock, GA
Posts: 1,436 GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level)GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level)GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level)GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 Days 22 h 29 m 16 sec
Reputation Power: 9
Quote:
Originally Posted by mick.sawyer
G man uses carp a lot but i can never figure out how to use them.

Does anyone have a link to an rss tutorial that will tell me how to install it and what features i can get out of it.
I can find a few but i want someone more experienced with rss to point me in the direction of one.


I do use carp on some of my sites but I'm starting to lean towards CBMaximizer because I can monetize more links on my sites.

Carp is pretty simple to use. There's also RSSEqualizer which I've used with some success.

Whatever you do, make sure the feed program you choose supports PHP. There's not much use in dropping javascript feeds onto a page because they're invisible to the SE.

G-Man
__________________
Black Hat, White Hat and More!

Reply With Quote
  #15  
Old April 10th, 2005, 02:44 PM
GeoffreyF67's Avatar
GeoffreyF67 GeoffreyF67 is offline
Resident Black Hat
SEO Chat Beginner (1000 - 1499 posts)
 
Join Date: Aug 2004
Location: Woodstock, GA
Posts: 1,436 GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level)GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level)GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level)GeoffreyF67 User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 5 Days 22 h 29 m 16 sec
Reputation Power: 9
Quote:
<