3 Minutes .... 12 Instant backlinks !

primhuman

Junior Member
Joined
Apr 13, 2010
Messages
115
Reaction score
68
I just got an email from paulie ciara today .. He's a good man though .. Hope you'll like it ;)

Thanks,
primhuman

Code:
http://www.paulieciara.com/?p=31
 
If you are interested in ALL of his weekly backlink packets from this year, go to...

http://www.blackhatworld.com/blackhat-seo/member-downloads/175182-get-high-page-ranking-angela-style-backlink-packs-screen-shots-show-how-create-them.html

Hope this helps.

Nice share *downloaded* :D
 
That was a nice share, but I think all the sites are coming from the same class C IP address, so they aren't as valuable as having 12 links from 12 high PR sites on 12 different class C IP's. Much like Ning, all the sites are pulling your profile page from the same IP.
 
That was a nice share, but I think all the sites are coming from the same class C IP address, so they aren't as valuable as having 12 links from 12 high PR sites on 12 different class C IP's. Much like Ning, all the sites are pulling your profile page from the same IP.

I think thats right .. :rolleyes: thanks paulie for this though :D
 
That was a nice share, but I think all the sites are coming from the same class C IP address, so they aren't as valuable as having 12 links from 12 high PR sites on 12 different class C IP's. Much like Ning, all the sites are pulling your profile page from the same IP.

Of course you are right. But using them only as one of many different backlink strategies, makes them still valuable. And his profile links are created easily and fast because he provides screenshots of how to do it for each site. So there is no guesswork.
 
Here's a quick PHP script to generate links to your profiles on all these sites. They do need to be crawled to be useful, after all. :)

Usage: copy and paste this into a file like ist_links.php and then link to it from one of your sites e.g.,
http://yoursite.com/ist_links.php?username=FOO

where FOO is your username on all the sites.

Code:
<?php
        if( !isset($_GET['username']) || empty($_GET['username']) ) {
                die(':(');
        }

        $username = $_GET['username'];

        $urls = array(
                        "http://austinist.com/profile/$username",
                        "http://bostonist.com/profile/$username",
                        "http://chicagoist.com/profile/$username",
                        "http://dcist.com/profile/$username",
                        "http://gothamist.com/profile/$username",
                        "http://houstonist.com/profile/$username",
                        "http://laist.com/profile/$username",
                        "http://phillyist.com/profile/$username",
                        "http://seattlest.com/profile/$username",
                        "http://sfist.com/profile/$username",
                        "http://shanghaiist.com/profile/$username",
                        "http://torontoist.com/profile/$username",
                        "http://londonist.com/profile/$username"
                );
?>
<html>
<head>
<title><?php echo $username; ?>'s Profiles</title>
</head>
<body>
<p>
<?php
        foreach( $urls as $url ) {
                preg_match( "/(\w+\.com)/", $url, $matches );
                        $urn = $matches[0];

                echo <<<EOS
<a href="$url">$username's profile on $urn</a><br />
EOS;
        }
?>
</p>
</body>
</html>

Feel free to change up the link text or whatever you want.
 
Last edited:
You make my life easierrr ~~ o0o :D
 
Back
Top