1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Collect articles automatically forom other article sites

Discussion in 'PHP' started by wwwbug, Jul 14, 2005.

  1. #1
    Do you know how to collect articles automatically from other article sites?
     
    wwwbug, Jul 14, 2005 IP
  2. yfs1

    yfs1 User Title Not Found

    Messages:
    13,798
    Likes Received:
    922
    Best Answers:
    0
    Trophy Points:
    0
    #2
    There have been scripts offered up for sale here before..I would browse the Buy/Sell/Trade section. Before you fork out though, check that it complies with the article sites TOS. If not, you may find your IP banned after shelling out for the script ;)
     
    yfs1, Jul 14, 2005 IP
  3. envoy

    envoy Active Member

    Messages:
    149
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #3
    A lot of article sites I have seen have RSS Feeds, if they allow you to post the articles on your own site, you can use a PHP RSS Reader and display them articles the way you want on you site. I will look around and see what rss reader i used before and post back here, give me 5mins.
     
    envoy, Jul 15, 2005 IP
  4. envoy

    envoy Active Member

    Messages:
    149
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #4
    ok, maybe less then 5mins, i did a quick search on google and came across the one I used before and it worked very well, called Magpie, have a look at there sourceforge page here.
     
    envoy, Jul 15, 2005 IP
  5. wwwbug

    wwwbug Peon

    Messages:
    296
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thanks very much for all your replies.It is so kind of you!
     
    wwwbug, Jul 15, 2005 IP
  6. prowess

    prowess Guest

    Messages:
    159
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Make sure that you can post the articles you gather. Also, if you're looking for content, just realize that goog can tell that it is duplicate content, also if you are grabbing it, a bunch of other people are too.
     
    prowess, Jul 20, 2005 IP
  7. yfs1

    yfs1 User Title Not Found

    Messages:
    13,798
    Likes Received:
    922
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Individual articles aren't viewed as "Duplicate Content", webpages are

    There is a signifigant difference ;)
     
    yfs1, Jul 20, 2005 IP
  8. temp_12000

    temp_12000 Peon

    Messages:
    316
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #8
    check www.articlesitedeveloper.com

    you can use template to customize the articles which are collected from other sites automatically. Of course, you can use these articles for free according to TOS of the article sites.

    For $47, it is a good investment.
     
    temp_12000, Nov 20, 2005 IP
  9. garysims

    garysims Well-Known Member

    Messages:
    287
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    108
    #9
    garysims, Nov 26, 2005 IP
  10. execute

    execute Peon

    Messages:
    301
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #10
    The best way to do this, is sort of like grabbing news from websites. I dunno how the duplicate content thing works, but, I do know that using XML and XSL you can grab RSS/XML from the article sites website and style it using XSL and display it. And you get it by using PHP.
    Something like this:
    <?php
    $file = file("http://www.somearticlesite.com/their_article_rss.xml");
    $file[0] = str_replace($file[0], "", $file[0]); // Delete first line <?xml ?>
    echo "<?xml version='1.0'?>
    <?xml-stylesheet type=\"text/xsl\" href=\"test.xsl\"?>";
    $fil = implode($file);
    echo $fil;
    ?>
    We attach the XSL stylesheet to the XML document that they have. However you probably need to learn XSL and some XML before that so refer to this tutorial.

    You might have to play around with my script to match the article sites needs.
     
    execute, Nov 26, 2005 IP
  11. Mary William

    Mary William Guest

    Messages:
    207
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Yeah, I agree with you.
     
    Mary William, May 19, 2010 IP
  12. abstractworld

    abstractworld Peon

    Messages:
    35
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    RSS is best option...
    If you are using some CMS then it would be really easy..like in WP you can download a plugin to do all this for you. Just put in rss link and there you go... They automatically take care of Duplicate Content...
     
    abstractworld, May 19, 2010 IP
  13. roopajyothi

    roopajyothi Active Member

    Messages:
    1,302
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    80
    #13
    May be you can use Curl and DOM in PHP or use RSS if they have! :)
     
    roopajyothi, May 19, 2010 IP
  14. PaulSch

    PaulSch Active Member

    Messages:
    781
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    85
    #14
    Why not concentrate on building up your own unique content? It's far better in the long run.
     
    PaulSch, May 19, 2010 IP
  15. jaycsol

    jaycsol Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    How does Google see this kind of service ? The last I tried something like this, my site got sandboxed.
     
    jaycsol, Jun 30, 2011 IP