PR Storm Question

mtime88

Regular Member
Joined
Mar 10, 2008
Messages
329
Reaction score
84
How many hits do you do per url with prstorm?
 
I've read on threads here that you shouldn't do more than 4....
 
When I run PRstorm I usually do 2 to be safe. Anything more might be suspicious
 
I usually do around 7 per referrer. I also have a code on my site, so if the webmaster of the spammed site visits mine, they will see a link to their site.
Code:
<?
   $referer = $_SERVER['HTTP_REFERER'];

   $request_uri = ltrim($_SERVER['REQUEST_URI'],'/');
echo '<BR>'.$request_uri;
if($_SERVER["HTTP_REFERER"])
{
   $parsed = @parse_url(strtolower($referer));

   // COMMENT: Replace YOURDOMAIN.COM with your own domain.
   if($parsed[host] && !eregi(strtolower("YOUDOMAIN.com"),$parsed[host]))
   {
  echo '<a href="http://';
  echo str_replace("statistics.","",str_replace("stats.","",$parsed[host]));
  echo '/" target="_blank" rel="nofollow">[url]http://www.';[/url]
  echo ucfirst(str_replace("statistics.","",str_replace("stats.","",str_replace("www.","",$parsed[host]))))."</a>";
   }
}
?>

It just displays the domain the visitor clicked from to get to my site. The webmaster might not mind, if he thinks there is a backlink to his site.
 
maineyak-
Where do you put the code on your site? I am using Wordpress blogs hosted on my own server and not sure where to put this type of code.
 
I actually could use a clue with PR Storm. Is the thought that it brings curious webmasters to the site, or does it create some sort of enduring backlink that helps the site overall? Thx.
 
jagrmeister if the webmaster publicizes there awstats you will get a backlink from the site.
 
I have a question regarding PR Storm. How do I set it up to run through Tor? I have Tor/Vidalia/Privoxy running for Firefox, but can't sort out how to have other apps, especially PR Storm run through it. :rolleyes:

Oh and maineyak, cheers for the code. ;)
 
I have a question regarding PR Storm. How do I set it up to run through Tor? I have Tor/Vidalia/Privoxy running for Firefox, but can't sort out how to have other apps, especially PR Storm run through it. :rolleyes:

Oh and maineyak, cheers for the code. ;)

when running tor use this proxy: 120.0.0.1:80
 
Trota thanks for the reply, do you mean under the Advanced tab and then under Control Port?
 
Back
Top