How to fake your Feedburner Subscribers

Please note that this tutorial required GD Library to be intalled on your web server. Please consult your web host.

feedburner-fakerI am writing this tutorial just for fun though I dont appreciate these kinds of things. But for those who have relatively low number of subscribers (like I have right now on this , only 4 subscribers) this is a good technique to help you get some subscribers.

Create a new file with any name, In this tutorial I have used feedcounter.php then add the following code to the file and save it.

<?php
//Send a generated image to the browser
create_image();
exit();
function create_image(){
//Create the image resource
$image = imagecreatefromgif('feedcount-static.gif');
//We are making brown color
$brown = ImageColorAllocate($image, 68, 68, 68);
//Check for the get parameters
if (isset($_GET['count']) && is_numeric($_GET['count']))
$feedcount = $_GET['count'];
else
$feedcount = 21;

// Some Alignment Calculations
$bbox = imagettfbbox(7.5, 0,'verdana.ttf', $feedcount);
$xcorr = 0 + $bbox[2];    $xcorr = 36 - $xcorr;
//Add the number in brown color to the image
imagettftext($image,7.5,0,$xcorr,13,$brown,'verdana.ttf',$feedcount);
//Tell the browser what kind of file is come in
header("Content-Type: image/gif");
imagegif($image);
//Free up resources
ImageDestroy($image);}?>

Upload the verdana.ttf font file in the same directory where our php file is. Then open the URL of the php file. use ?count=[number] parameter to put any number of reader. Save the image and use it for your blog.

Incase you dont have GD Library installed on your web server you can use the one I have created. Just change the number and get the image that you want here

FakeBurner – Fake your feedburner counter

Related posts:

  1. How to Display Technorati Stats on Your Blog
  2. How to Control A PHP Web Application Remotely
  3. MS DOS Tutorials – How to change colors in DOS prompt
  4. How to Install a Local Web Server on Windows XP
  5. How to increase your computers performance by simple RAM Tweak


The author is a small business owner himself specialising in Web Development. He runs Insight Studios which offers specialized Web Development, SEO Services and PPC Management for Small Business and SME thus ensuring growth and prosperity using the power of social media.

Share This Post

Related Articles

4 Responses to “How to fake your Feedburner Subscribers”

  1. williams says:

    jaja..this is great thanks for sharing
    I never thought a script could be used for this so easily

    I would have done it by hand :P

  2. Atif says:

    You’re welcome, lol yeah but it took me a lot of time to know what what it was and what size. :)

  3. I have been wanting to do this kind of the article myself on my blog but I’ve decided against it for the simple reason that those who are not the right mind might still attempt to do (read:fake) so and damage the whole credibility of having feedburners stats.

    Still, you are letting the cat out of the bag….anyway, I usually judge the popularity of a blog not by the no. of subscribers but by the no. of comments on each post instead.

  4. Atif says:

    people can fake comments too right?

Leave a Reply

© 2012 MyGeekPal. All rights reserved. Site Admin · Entries RSS · Comments RSS
Designed by Insight Studios