MoneyFree v1.0.0

Get unlimited free traffic from viral based site.


Thank you for purchasing my script. If you have any questions please feel free to email me. Thanks so much!

Minimum server requirements are required. Almost all hosting’s server support this.

The installation process is easy and doesn’t require a lot of time.
 
  1. Create a MySQL database and a MySQL user (with full permissions).
  2. Extract downloaded file
  3. Open “Upload/include/db.php” with your favorite text editor.
  4. Edit your MySQL database information and save.
    • Hostname = normaly localhost
    • DBusername = your mysql username
    • DBpassword = your mysql password
    • DBname = your mysql database name
  5. Import/execute the SQL file located in “SQL_File/import-sql.sql”.
  6. Upload files present on “Upload” folder to your website using ftp or file manager in your hosting’s control panel
 
That is it. You have successfully installed the script.
Visit: http://yoursite.com/panel
Login using default username: admin and default password: passadmin
 
For security reasons, please change your default username or password by navigating the “Settings -> Administrator”
If you are familiar with PHP code, this script comes with a code structure that is easy for you to modify.You can make modification to create another type of viral referral site. Follow these instructions:
 

Basic strings that can be used:

 
Get site info from settings
 
 
<?php echo GetUrl;?> // Your site address. output: http://yourdaomain.com
<?php echo SET['site_link'];?> // Your site address. output: http://yourdaomain.com/
<?php echo Logo;?> // Your site logo. output: logo.png
<?php echo SET['fb_app_id'];?> // Facebook APP ID
<?php echo SiteName;?> // Your site Name. output: MoneyFree
<?php echo HeadTags;?>// Head Code.
<?php echo FooterTags;?> // Footer code.
<?php echo GetUrl;?> // Your site address. output: http://yourdaomain.com
<?php echo SET['site_link'];?> // Your site address. output: http://yourdaomain.com/
<?php echo Logo;?> // Your site logo. output: logo.png
<?php echo SET['fb_app_id'];?> // Facebook APP ID
<?php echo SiteName;?> // Your site Name. output: MoneyFree
<?php echo HeadTags;?>// Head Code.
<?php echo FooterTags;?> // Footer code.
 
Showing Ads
 
 
<?php echo $BannerCodeTop;?> // Ad code
<?php echo $BannerCodeContent;?> // Ad code
<?php echo $Bannercodebottom;?> // Ad code
<?php echo $HeadCode ;?> // Head Ad code
 
Referral 
 
 
<?php echo referlink;?> // Referral Link. output: ?ref=oqczUXU2b
<?php echo Bonus;?> // Welcome bonus. output: 5.00
<?php echo Payout;?> // Min. Payout amount. output: 25.00
<?php echo Rate;?> // Rate per visit. output: 0.10
<?php echo WdLink;?> // Link redirect. output: http://targetredirectsite.ext
<?php echo $error;?> // Display error messages.
<?php echo $hits;?> // Total visitors in the current referral link. output: 5
<?php echo $Bal;?> // Total balance in the current referral link. output: 25.00
<?php echo $lPayout;?> // Last payout for current referral link. output: 25.00
<?php echo $Proc;?> // Remaining balance needed. output: 25.00
<?php echo $percent;?> // percentage
<?php echo $textpercent;?> // output: 100%
<?php echo $setpercent;?> // output. 100%
<?php echo $Rec;?> // Amount received per 100 visitor. output. 10
 
 
Example usage based on the amount of traffic:
 
<?php if($Bal <$Payout){?>

content here

<?php } elseif($Bal >$Payout || $Bal == $Payout) {?>

content here

<?php }?>
 
OR, With the specified value:
 
<?php if($Bal <$20){?>

content here

<?php } elseif($Bal >$20 || $Bal == $20) {?>

content here

<?php }?>
 
 
Example usage based on the amount of visitors:
 
 
<?php if($hits <$10){?>

content here

<?php } elseif($hits >$10 || $hits == $10) {?>

content here

<?php }?>
 
 
Parts that must be included/set when creating a new php file:
 
<?php
// Require
include("include/main.php");

// Meta Config
$PageTitle ='Page title!'; // Title for this page
$PageUrl ='example-usage'; // Url for this page. eg: example
$Bot ='noindex, nofollow'; // Meta robots content
$PageDesc =''; // Page Description
$PageKey =''; // Page Keywords
$PageImage =''; // Og Image
?>
 
Let’s try creating a new page based on the number of hits:
 
<?php

// Require
include("include/main.php");


// Referral Config
$minVisit ='50'; // How many people must be invited before taking action
$percentHits = ( $hits / $minVisit ) * 100; // Calculate percentages
$setpercentHits = substr($percentHits,0,2); // Cut if it exceeds 100%
$setpercentHits = str_replace('.','', $setpercentHits); // Removing dot (.)


// Meta Config
$PageTitle ='Congratulations! You are chosen as the Samsung Galaxy S8 prize winner!'; // Title for this page
$PageUrl ='example-usage'; // Url for this page. eg: example
$Bot ='noindex, nofollow'; // Meta robots content
$PageDesc =''; // Page Description
$PageKey =''; // Page Keywords
$PageImage =''; // Og Image
?>

<!DOCTYPE html>
<html xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title><?php echo $PageTitle;?></title>
<!--\ Title -->

<link rel="canonical" href="<?php echo $SiteUrl?>/<?php echo $PageUrl; ?>" />

<!-- Metatags -->
<meta name="description" content="<?php echo $PageDesc;?>" />
<meta name="keywords" content="<?php echo $PageKey;?>" />
<?php if(isset($_GET['ref'])){?>
<meta name="robots" content="noindex, nofollow">
<?php } else {?>
<meta name="robots" content="<?php echo $Bot;?>">
<?php } ?>
<!-- Facebook -->
<meta property="fb:app_id" content="<?php echo ($SET['fb_app_id']);?>" />
<meta property="og:url" content="<?php echo $SiteUrl?>/<?php echo $PageUrl; ?><?php echo $referlink;?>" />
<meta property="og:type" content="website" />
<meta property="og:title" content="<?php echo $PageTitle;?>" />
<meta property="og:description" content="<?php echo $PageDesc;?>" />
<meta property="og:image" content="<?php echo $SiteUrl?>/<?php echo $PageImage; ?>" />
<!--\ Facebook -->
<!--\ Metatags -->

<!-- Css -->
<link href="/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/cookie.css" rel="stylesheet">
<link href="/assets/css/social.css" rel="stylesheet">
<link href="/assets/css/default.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"/>
<link href="/assets/vendor/simple-line-icons/css/simple-line-icons.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet">
<!--\ Css -->

<!-- Head code & Ads -->
<?php if (!empty($HeadTags)){ ?>
<?php echo $HeadTags;?>
<?php } if (!empty($HeadCode)){ ?>
<?php echo $HeadCode;?>
<?php }?>
<!--\ Head code & Ads -->
</head>
<body>

<!-- Section Start -->
<section class="content text-left">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="card text-center">
<div class="card-header">
<h3>Congratulations! You are chosen as the Samsung Galaxy S8 prize winner!</h3>
</div>

<div class="card-body">

<!-- Showing Error message -->
<?php echo $error; ?>
<!--\ Displaying Error message -->

<h5 class="card-title">Invite <?php echo $minVisit;?> people to get Samsung Galaxy $8 for free!</h5>
<p class="card-text">You can invite <?php echo $minVisit;?> people by sharing the referral link below ↓</p>
<!-- Simple Social Share -->
<div class="social-share">
<!-- Facebook Share Button -->
<a target="_blank" class="btns facebook" href="https://facebook.com/sharer.php?t=<?php echo $PageTitle;?>&u=<?php echo $SiteUrl?>/<?php echo $PageUrl; ?><?php echo $referlink;?>"><i class="fab fa-facebook-f"></i> Share</a>
<!-- Twitter Share Button -->
<a target="_blank" class="btns twitter" href="https://twitter.com/intent/tweet?text=<?php echo $PageTitle;?>&url=<?php echo $SiteUrl?>/<?php echo $PageUrl; ?><?php echo $referlink;?>"><i class="fab fa-twitter"></i> Tweet</a>
<!-- Googple Plus Share Button -->
<a target="_blank" class="btns gplus" href="https://plus.google.com/share?url=<?php echo $SiteUrl?>/<?php echo $PageUrl; ?><?php echo $referlink;?>"><i class="fab fa-google-plus-g"></i> Share</a>
</div>

<input type="text" class="form-control text-center" value="<?php echo $SiteUrl?>/<?php echo $referlink; ?>" onclick="this.select()"/>
<div id="progress" class="graph"><div id="bar" style="width:<?php if($percentHits < 100){?><?php echo $setpercentHits;?><?php } else { ?>100<?php }?>%"><p><span class="percent"><?php if($percentHits < 100){?><?php echo $setpercentHits;?><?php } else { ?>100<?php }?>%</span> completed...</p></div></div>
<p>
<?php if($hits <$minVisit){?>
<a href="#" class="btn btn-primary btn-block" data-toggle="modal" data-target="#winprize">Get your prize</a>
<?php } elseif($hits >$minVisit || $hits == $minVisit) {?>
<a href="<?php echo $WdLink;?>" class="btn btn-primary btn-block">Get your prize</a>
<?php }?>
</p> <p>You have invited <span class="badge badge-success"><?php echo $hits;?></span> people</p>
<p><small>After you invite <?php echo $minVisit;?> people, you are reserve the right to get this prize.</small></p>
</div>

<div class="card-footer text-muted">&copy; 2018
</div>
</div></div></div></div></div>
</section>
<!--\ Section End -->
<!-- Footer -->
<div class="modal fade" id="winprize">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="alert alert-warning" role="alert">
<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> Please invite <?php echo $minVisit;?> or more people before taking your prize!
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--\ Modal -->

<script src="/assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="/assets/js/jquery.ihavecookies.js"></script>
<script type="text/javascript">var options={title:'&#x1F36A; Accept Cookies & Privacy Policy',message:'This website uses cookies to store data in your browser and to ensure you get the best experience on our website.',delay:600,expires:30,link:'/page/cookies-policy',onAccept:function(){var myPreferences=$.fn.ihavecookies.cookie();console.log('Yay! The following preferences were saved...');console.log(myPreferences);},uncheckBoxes:true,acceptBtnLabel:'Accept Cookies',moreInfoLabel:'More information',cookieTypesTitle:'Select which cookies you want to accept',fixedCookieTypeLabel:'Essential',fixedCookieTypeDesc:'These are essential for the website to work correctly.'} $(document).ready(function(){$('body').ihavecookies(options);$('#ihavecookiesBtn').on('click',function(){$('body').ihavecookies(options,'reinit');});});</script>
<?php if (!empty($FooterTags)){ ?>
<?php echo $FooterTags;?>
<? }?>
</body>
</html>
 
Result: http://demo-moneyfree.phpscripts.cc/-EXAMPLE-USAGE-.php
You can find example of this usage at “Upload/-EXAMPLE-USAGE-.php”
Thanks so much to:
 
– Bootstrap (https://getbootstrap.com/)
– Font Awesome Free 5.3.1 by @fontawesome – https://fontawesome.com
– jQuery – https://jquery.org
– jQuery Form Plugin – http://malsup.com/jquery/form/
– jQuery ihavecookies.js – https://www.jqueryscript.net/other/GDPR-Cookie-Consent-Popup-Plugin.html
– Simple PHP Captcha – https://github.com/yasirmturk/simple-php-captcha
– Landing Page Template – https://startbootstrap.com/
– Summernote – https://summernote.org/
 
Once again, thank you so much for purchasing this php script.
As I said at the beginning, I’d be glad to help you if you have any questions relating to this script.
No guarantees, but I’ll do my best to assist.