Auto Commenter

thankyou again 4 da quick update blackout and i hope you also fix the user agent problem quickly too thankx man:D
 
hi guys - just catching up here and implemented the new functionality addons - I have what I believe to be the up-to-date files on a server, but when I call up the main.html, it doesn't populate the form as I suspect it should... I've filled the .txt files with data to test on my own wp blog etc.
I have the following (addresslist.txt,author.txt,autocommenter.php, comments.txt, emails.txt,main.html,proxies.txt,url.txt,useragents.txt)
my autocommenter.php size is 3,967 bytes - the latest I presume?

Any advice? Thanks in advance!
xhanuman

(I have used the original version successfully) I'm getting a feeling I need to re-up the main.html... looks awfully static.
 
Last edited:
Thanks for the update BlackOut, will test it out and let you know of any probs.
 
Looks like a neat little tool.

Be careful where you post your comments - many blog owners are just waiting for your comments to appear so they can report you.
 
so now who going to code the serp scraper? thats all we need now:D
 
ok,can we have a pause feature on it? or something thatl keep it running even when the computer is off? I would prefer it if it would keep going even when my comp - I can then do a submission for all those who have helped with the script rather than one or two - cos i feel guilty people think I have been selling it everywhere

thanks guys,this is awesome :)
 
blackout or razorbl can you guys make a final update to this script like make all the features work and add the pausing feature hello talking about?? because this script is getting too big damn wish i knew how to code :cool:
 
You could run the program from the commandline under Linux with a cronjob on your webhost. Then it will run while your desktop pc is out. ex.
00 12 * * * php /path/to/autocommenter.php. I will add a file with an url you guys can promote/submit with the next update as a sort of thanx. Much appreciated :D Razorbl and OP send me a message and then i can add your url you want to get promoted as well. Sorry guys I cannot work on this all the time. Thnx for your patience.
 
can we just get a final update where all the features are working i notice you said that u disable the user agents blackout can u get it working and razorbl can we get dat serp scraper please.

:Dthankx
 
I fixed the useragent problem. Also I added a little howto (installation etc..). Will post later today or tomorrow. :)
 
thankx to cd for sharing this simple script and thankx to blackout and razorbl for making this a great script and cant wait for the latest update blackout oh yea and also can you include the pause feature hell0 was talking about on the final update thankx:D
 
Last edited:
I fixed the useragent problem. Also I added a little howto (installation etc..). Will post later today or tomorrow. :)

i cant wait to see it, this is great. maybe this can be an open source script. :D
 
hey blackout when are you going to post the final updated version man? cuz im itching cant wait:D
 
Guys, attached is the latest version of autocommenter. Read the README.txt for a quick howto. With regards to the pause function I have no idea how to implement this at the moment. If you have a big list you do not want to run in one go I would recommend splitting them up. :)
 

Attachments

Guys, attached is the latest version of autocommenter. Read the README.txt for a quick howto. With regards to the pause function I have no idea how to implement this at the moment. If you have a big list you do not want to run in one go I would recommend splitting them up. :)

ok,i guess will jus thave to split them up - on one i had before,at the bottom it would say like submitted to 50 out of 100

then,on next submission,theres a box that says start number,you type 50

but thanks anyways,will be submitting urls if it all works ok now

btw,what is a useragent? is it like a proxy? or ewhat is the difference?
 
Last edited:
ok,i guess will jus thave to split them up - on one i had before,at the bottom it would say like submitted to 50 out of 100

then,on next submission,theres a box that says start number,you type 50

but thanks anyways,will be submitting urls if it all works ok now

Ahhh..thats something different than a "pauze" button. It is possible to define a certain amount of submissions, but I think the whole text files database is too simple for this. A small database would be a better solution then. As I am doing this on the side its a bit much work to reprogram it to do it in a database. Maybe in the future.
 
useragent is what the browser sends to the server when it access a page. If you do not define a useragent it will appear blank in the logs also it could raise flags as it would appear as a bot not a human posting the comment.
 
ok thankx for the update blackout its ok if you cant add the pause feature because i think the best way to use this would be to either have doorway pages or a blogfarm and have a huge list of blogs to comment spam since you would need backlinks in the 100's of 1000's anyway.


:cool:thankx again man
 
yo blackout can you checkout this wordpress url scraper i found on another website for us like can you please modify it to harvest ******** wordpress blogs??



PHP Google Blogsearch URL Scraper
Posted by DaPimp on November 28, 2008 - 12:56 pm

Sometimes you just need a crapload of URL's from Wordpress blogs. It's nobodies business why you need them, if you need them, you need them.

Enter DaPimp's Google Blogsearch URL scraper.

In a nutshell, this script grabs the fist 1,000 results of Wordpress blogs for a given keyword, and spits them out in a nice list for you.

**You'll need PHP5, and a server with cURL enabled for this script to work**

Instructions for use:

1. You can either download the script here (change the file extension to .php), or just copy and paste the code below (wordpress buggers up the quote marks in code, so you'll probably need to go and replace them manually -just download the script, it's much easier)
2. Open the script in a text editor, and change the $keyword variable at the top to the keyword you want to search for
3. Save the script and upload it to your server
4. Navigate to the script in your browser, and wait, you'll get your list

============ Start PHP Script ================

<?php

//give the script a keyword to search for
$keyword = "ipod touch";
$keyword = str_replace(" ", "+", $keyword);

//start a counter so we can number our results
$num = 0;

//set a start for our paging of Google Blogsearch (we're going to be getting 10 pages X 100 results)
$start = 0;

do {

//Create the feed URL we're going to get from Google Blogsearch
$feed = ‘http://blogsearch.google.com/blogsearch_feeds?hl=en&q=%22′ .$keyword. ‘+%22powered+by+wordpress%22&ie=utf-8&num=100&start=' .$start. ‘&output=rss';

//We're using cURL to actually go fetch the page from Google Blogsearch
$ch = curl_init($feed);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $feed);
$page = curl_exec($ch);
curl_close($ch);

//Loop through the feed, and suck out the URL's
$xml = new SimpleXMLElement($page);

foreach ($xml->channel->item as $item) {

//Add 1 to our counter, so our list has numbers next to the URL's
$num = $num + 1;

$link = $item->link;

//Print our shit to the page
echo $num. ‘ - <a href="‘ .$link. ‘">' .$link. ‘</a><br>';

}

//Have a rest so we don't get banned for hitting Google too hard and fast
sleep(30);

//Add 100 to the start, so we can fetch the next 100 results
$start = $start + 100;

}

//Keep doing this shit until we get to page 10 of the Google results
while ($start < 1000);

?>

============ End PHP Script ================
 
Back
Top