| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/ |
Upload File : |
<?php
/**
* Affiliate Cookie Tracking + Redirection Handler
*
* @package WHMCS
* @author WHMCS Limited <development@whmcs.com>
* @copyright Copyright (c) WHMCS Limited 2005-2013
* @license http://www.whmcs.com/license/ WHMCS Eula
* @version $Id$
* @link http://www.whmcs.com/
*/
use WHMCS\Cookie;
define("CLIENTAREA",true);
require("init.php");
// if affiliate id is present, update visitor count & set cookie
if ($aff = $whmcs->get_req_var('aff')) {
update_query("tblaffiliates",array("visitors"=>"+1"),array("id"=>$aff));
Cookie::set('AffiliateID',$aff,'3m');
}
/**
* Executes when a user has clicked an affiliate referral link.
*
* @param int $affiliateId The unique id of the affiliate that the link belongs to
*/
run_hook("AffiliateClickthru", array(
'affiliateId' => $aff,
));
// if product id passed in, redirect to order form
if ($pid = $whmcs->get_req_var('pid')) redir("a=add&pid=".(int)$pid,"cart.php");
// if product group id passed in, redirect to product group
if ($gid = $whmcs->get_req_var('gid')) redir("gid=".(int)$gid,"cart.php");
// if register = true, redirect to registration form
if ($whmcs->get_req_var('register')) redir("","register.php");
// if gocart = true, redirect to cart with request params
if ($whmcs->get_req_var('gocart')) {
$reqvars = '';
foreach ($_GET AS $k=>$v) $reqvars .= $k.'='.urlencode($v).'&';
redir($reqvars,"cart.php");
}
// perform redirect
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".$whmcs->get_config('Domain'),true,301);