once its generated it will look like this - http://thegeekyblog.com/keywords/keyword.php
Then you can copy and paste that list into wp-autoblog and generate an Uber amount of posts.
Would this still work, get traffic if i was to use the one domain and just create sub directories for each niche. e.g celebrities.eblogging.com, randomniche.eblogging.com (not my domain, just an example)
or would you recommend a new domain for each niche?
[FONT=Verdana, Arial, Helvetica]
Yes, your account was using 70% of the MySQL server resources.
So therefore we had to suspend your account to bring the server back to it normal self.[/FONT]
<?php
$filename = 'keywords.txt';
$handle = fopen($filename, "rb");
$keywords = fread($handle, filesize($filename));
fclose($handle);
//Google and Blogpulse use + to seperate keywords....
$keywords = str_replace(" ", "+", $keywords);
$keywords = explode("\n", $keywords);
foreach($keywords as $keyword)
{
echo 'http://blogsearch.google.com/blogsearch_feeds?hl=en&q=' . $keyword . '&ie=utf-8&num=100&output=rss<br>';
echo 'http://www.blogpulse.com/rss?query=%22' . $keyword . '%22&sort=date&operator=phrase<br>';
}
$handle = fopen($filename, "rb");
$keywords = fread($handle, filesize($filename));
fclose($handle);
//Technorati and MSN use spaces.....
$keywords = str_replace(" ", "%20", $keywords);
$keywords = explode("\n", $keywords);
foreach($keywords as $keyword)
{
echo 'http://search.msn.com/results.aspx?q=' . $keyword . '&first=11&format=rss<br>';
echo 'http://feeds.technorati.com/posts/tag/' . $keyword . '<br>';
}
?>
The best sources of content i get:-
Live Search Feeds:
Secondly your should do a search for your terms on blog searches avoid Google blog search ( too many use it already) there are numerous other services...![]()
Use this to generator many feeds..its free and sweet..ResearchBuzz Tools: Kebberfegg -- Keyword-Based RSS Feed Generator
After you get your feeds..
SplashCast lets you create your own streaming media channel that combines video, music, photos, text, narration, and RSS feeds. A wizard walks you through the steps of building your channel. Start by uploading media files from your hard drive, or point to files on other sites. Add captions, commentary, and RSS feeds, and your channel is ready to go. Once you're done finessing your channel, you can send it to friends and family, or syndicate it to blogs and social networking sites.
<?php
$filename = 'keywords.txt';
$handle = fopen($filename, "rb");
$keywords = fread($handle, filesize($filename));
fclose($handle);
$keywords = str_replace(" ", "+", $keywords);
$keywords = explode("\n", $keywords);
foreach($keywords as $keyword)
{
echo 'http://blogsearch.google.com/blogsearch_feeds?hl=en&q=' . $keyword . '&ie=utf-8&num=100&output=rss<br>';
echo 'http://www.blogpulse.com/rss?query=%22' . $keyword . '%22&sort=date&operator=phrase<br>';
echo 'http://search.live.com/feeds/results.aspx?q=' . $keyword . '&go=Search+Feeds&form=QBFR<br>';
echo 'http://feeds.technorati.com/search/' . $keyword . '?authority=a4&language=en<br>';
}
?>
I think I know.Does anyone know why wp-autoblog doesn't display images from the feeds it scrapes?