YMT Auto WordPress blog comment submitter |

Status
Not open for further replies.

NobleSoul

Someone Inside
Rating - 100%
14   0   0
Hello WickedFire Community,

We just finished developing new tool for posting comments in Wordpress blogs with automated way 100% , passes the spam check cause the tool simulates browser

Features of YMT Blog Auto commenter:

- Windows application.
- easy to use, fill the form, click start and forget.
- Fast software and work as background thread so you can work in other things in the same time.
- Pass the blogs that ask for captcha code


You can check online video for the software @ :
http://yesmoretraffic.net/Shot/

Software requirement :


  • Windows Operating System.
  • .Net Framework v2.0 at least.
Best way to use this Software?

Create a blog list of your niche. Say for e.g. Health. Gather all blog post urls related to Health. Open the software, load the blog post urls in text file. Post a comment relevant to the niche and start the software.


Advice : keep your comment general and more than 20 words to get approved fast.

Benefits Of Blog Commenting:

1. Indirect Visitors:


Commenting on popular blogs can bring in tons of visitors. Famous blogs like ProBlogger's and John Chow's blogs enjoy high readership. By placing a sensible remark there, their visitors will come streaming to your site.
If the post gets indexed and ranked well, you get even more visitors.


2. Backlinks
Posting your remarks do qualify you to post your website link there. Some posts have high PageRank. This means that you can get a free high PR backlink. It can cost hundreds of dollars for a PR 7 link.


3. Build Your Credibility
By participating and posting blog comments regularly, the readers of those blogs that you frequent would come to recognize you as a subject expert. Frequent appearances can do much good to your credibility. This also means that if you were to recommend a product on your website, they will be more ready to buy!


4. Improve Your Website's Ranking
This is related to No.2. Basically, by having more quality backlinks to your website, it can improve your ranking in the search engines.

How i can Purchase?

once we receive your payment we will contact you and send your copy, the software will give you Copy code that we need to create your serial number.

Note : every serial number works just for one personal computer.

Price:

  • $30
Payment Methods:

  • Paypal
Do not hesitate to contact me for help.

To Your Success
NS
 


:::: Review ::::

I truly liked this product because of it's simplicity. For a windows based link building tool, this thing appears to do it's job ... but isn't perfect. That said, it's worth the $30 I didn't have to pay.

I attempted to post to 15 blogs and had 3 comments that showed up upon manual reviewing from the same IP. I never do this because if the link exists, it might be removed later ... other links that don't show up now, will be included later. Blog commenting is an inexact science that is best evaluated 7 days later.

Also, 3/15 sounds bad but it's really not. 20% (likely higher in a few day) scales very well as there are billions of blog pages open for comments.

There are several glaring deficiencies I'd like to point out that could make this script 100x better.

1> Missing help/instructions. If I didn't watch the video (no sound), I might have stumbled upon how to work this efficiently ... but perhaps someone with less experience would not.

2> Gathering urls - This is all done manually by you, the buyer. I wrote a little script to do this in only a few seconds but someone with less hacking experience would have been up shit creek.

3> 1 name + 1 comment + 1 url = easy to filter spam.

4> no reporting ... it would have been nice to see an output of successful posts.

5> proxy support

In my opinion, this is a premature review as it will take a few days to see which links actually stick. Normally, I'd consider this to be my responsibility (can I write well enough to get the comment to stick?). But since we're using the same comment/link over and over I'm afraid this will set off askimet and fuck me forever. Which is why I would suggest people use this software for parasite pages, not legit domains in development. It's also why I suggested proxy support.

To the OP .... If you really want to make some serious sales, I have a suggestion. If you can understand the following sentence, implement this into the "name" and "comment" fields.

{teach|rewrite|hack up} {your script|this software|the program} {to read|to understand} {sentences|comments} in this {format|style}

It wouldn't be hard to work this in on your end & would improve your script 10 fold.

The other option I would throw out there would cater to programmers. Instead of just a list of urls to input, allow for |pipe| separated fields.

hxxp://www.url1.com/blogpost.php|anchor text1|link1|comment1
hxxp://www.url2.com/blogpost.php|anchor text2|link2|comment2
hxxp://www.url3.com/blogpost.php|anchor text3|link3|comment3
hxxp://www.url4.com/blogpost.php|anchor text4|link4|comment4

I personally love option #2 as it would allow me to build a list of blogs to spam (complete with different urls, anchor text, etc) for ALL of my stuff at once. Crons can do this automatically every day and I can run your script while I sleep (this would be a serious win).

Disclaimer: Here @ WF we value honest reviews .. it's not like other forums where members will suck off the OP simply because they got something for free. Take what I say as face value.
 
excellent review. free copies for bj reviews don't do anyone any good. great advice. this place has become an awesome place for developers to get unparalleled market research and free ideas for improving their offerings.
 
Erect - kudos to you mate - one of the best reviews Ive seen in a long time.
Based on it - I think the software has some way to go - and Ill give it a pass for now - but agree with your sentiments
Needs a blog url harvester built in - no-one wants to go and find and harvest these themselves or in another tool
Definately needs proxy support!

Noblesoul - some dev work for you - once you have some updates - PM me as I definately would be interested then

Cheers
 
Needs a blog url harvester built in - no-one wants to go and find and harvest these themselves or in another tool

Just so nobody will have to search for anything to gather urls, here you go.

To use, just put this code in a writable folder. Navigate to page and use the search box as you would google. Save the list to your computer and input into noble's software.

A search like

gay marriage "powered by wordpress" "will not be published"
would work quite nicely for our purposes


PHP:
<h1>Find Blogs For Commenting</h1>
<form action="" method="post">
  Enter Query String >>
  <input type="text" name="google_query"> 
  <input type="submit" value="GO">
</form><br /><br />

<?php

if(isset($_POST['google_query'])) {
  $scrape = file_get_the_contents('http://blogsearch.google.com/blogsearch?q='.urlencode($_POST['google_query']).'&num=100') ;
  $links = extract_links($scrape) ;
  foreach ($links as $link) {
    $txt_file .= $link[0] . '
' ;
  }
  make_content_file('urls.txt',$txt_file,'w+') ;
  echo "<a target='_blank' href='urls.txt'>Download Urls</a>" ;
}

/*
 * Functions
*/

function extract_links($text) {
  preg_match_all('/<\s*a[^<>]*?href=[\'"]?([^\s<>\'"]*)[\'"]?[^<>]*>(.*?)<\/a>/si',
    $text,
    $match_array,
    PREG_SET_ORDER);
  $return = array() ;
  foreach ($match_array as $serp) {
    
    
    $full_anchor = $serp[0];
    $href = $serp[1];
    $anchortext = $serp[2];
    
    // negatives list
    if ( (preg_match("/http:/i",$href)) &&
         (!preg_match("/cache/i",$href)) &&
         (!preg_match("/google.com/i",$href)) &&
         (!preg_match("/youtube.com/i",$href)) &&
         (!preg_match("/wikipedia.org/i",$href)) &&
         ($href[0]!= '/') ) {
      $anchor_array = array($href,$anchortext) ;
      array_push($return,$anchor_array) ;
    }
  }
  
  return $return ;
} 

function file_get_the_contents($url) {
  $ch = curl_init();
  curl_setopt ($ch, CURLOPT_URL, $url);
  curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 1);
  curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, true); 
  $file_contents = curl_exec($ch);
  curl_close($ch);
  return $file_contents;
}

function make_content_file($filename,$content,$opentype){
    $fp_file = fopen($filename, $opentype);
    fputs($fp_file, $content);
    fclose($fp_file);
}

?>

Edit: Google will ban your ip for abusing a script like this ... use at your own risk
 
You'd have more luck staking claim to my 2nd born child.

edit: Where's media's review? We've gotta keep you fuckers honest.

I was gonna code my own but I'm lazy, will try and find one to buy first that I can juice up..

EDIT: Actually I'm pretty sure one was posted on DigitalPoint sometime last year, I'll look for that.
 
@ erect

Many thanks for your helpful review we are working in updating the software , implement blogs harvester tool.

This would be done soon. will update the thread when we finish

To Your Success
NS

Looking forward to it.

EDIT: Actually I'm pretty sure one was posted on DigitalPoint sometime last year, I'll look for that.

I'm sure it was top notch ;]
 
Status
Not open for further replies.