Sponsor

Showing posts with label page. Show all posts
Showing posts with label page. Show all posts

Thursday, October 9, 2014

Facebook Photo Contest – Viral App Nulled

Facebook photo contest app is build to get Real Targeted Fans and viral promote Products and Services.
ADMIN PANEL – Admin password: 123456
App Description:
Each of the users of this Facebook photo contest first need to Like the page to enter the photo contest, vote or submit their photo, which bring you new real fans.
Fore each user that enter the contest, a link from the contest is posted to their wall (link that you can customize from admin)
Every photo have three buttons: Vote, Share, Invite
Each user that will submit photo will promote it using the Share and Invite buttons to get votes, which brings new users and fans.
Vote button: users will vote the photos with this button, when user click the button changes from Vote to Voted also it share to user wall as ”Voted on: Contest Title” , only one vote per photo.
Share button: with Share button, a link from the particular photo is posted to user profile, so his friends will see it and come to Like the page and vote for his photo.

Invite button
: the invited message is posted to each invited users wall, not just notification, so he and his friends will see and come to the Page to Like etc. Facebook Apps
When the contest End, the app will show the Winner with most votes and his photo.
You can add this app to any Facebook Fan Page you have old or new Page, to collect new fans.
Easy to change design and language, we can also do for you.
You will receive this Facebook Photo Contest App files and full Installation Doc. to install the app on your hosting. Easy to install, easy to use. You will have the app for unlimited time and create as many contest as you need.
Admin Panel features:
  • Set End time of current contest.
  • Create New contest after current ended.
  • Activate/Deactivate and customize the auto post link that is posted to users wall on first use.
  • Showing list of all users with their info.
  • Post status updates to multiple users any time you need.
  • Send emails to users any time you need.
  • Delete users.
  • Export users data: name, email, facebook id, token.

    Download Now : http://download.clan.su/load/file/facebook_photo_contest_viral_app_nulled/1-1-0-16

Saturday, October 4, 2014

Viral Referral Script

What does it do?
This PHP script will make a dynamic referral URL; when the user shares the URL to other people then it will at a referral (once they hit the link); after [10] hits (One is from the main user) it will unlock a [link] as a reward.

Features
-Bound to IP (they cannot get more hits by using another browser
-Easy to use
-Customizable 
-And the best of all; I give it FREE, EXCLUSIVE for scripts-cms.blogspot.com

Updated to V2Changes:
-Is now bound to IP

Updated to V3
Changes:
-Fixed a bug where the referral script would only regenerate 9 random ID's => Is not unlimited


Download Viral Referral Script

Installation:
- Create a database in cpanel and then go to phpmyadmin and under SQL (Don't forget to select your database) in your database past the following code:

CREATE TABLE IF NOT EXISTS `cookie_ref` ( 
`REF_id` bigint(254) NOT NULL AUTO_INCREMENT, 
`REF_val` varchar(254) NOT NULL, 
`REF_hits` int(1) NOT NULL, 
PRIMARY KEY (`REF_id`) 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
-Then add the following code:
CREATE TABLE IF NOT EXISTS `cookie_ref_ips` ( `IP_id` bigint(20) NOT NULL AUTO_INCREMENT, 
`IP_address` varchar(20) NOT NULL, 
`REF_val` varchar(50) NOT NULL, 
PRIMARY KEY (`IP_id`) 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
- Edit config.php - Located in /dbcon/ - and fill in your created DBuser,Pass,DBname
- Change the 'yoururl.com' to your website in the index.php file
- Then you can extract the script from the index.php file, and integrate it in your own page.


OPTIMAL:If you want the page to automatically refresh, then add the following code at the START of your index.php (before ANYTHING else)

<?php
header("Refresh: 120;");
?>
You can change the refresh time, it is set as 2 minutes in the example.

Then it should work!