X7ROOT File Manager
Current Path:
/home/mysptejz/public_html/billing
home
/
mysptejz
/
public_html
/
billing
/
ðŸ“
..
📄
.htaccess
(933 B)
ðŸ“
733331
ðŸ“
admin
📄
aff.php
(1.84 KB)
📄
affiliates.php
(108.66 KB)
📄
announcements.php
(5.93 KB)
📄
announcementsrss.php
(7.39 KB)
ðŸ“
assets
ðŸ“
attachments
📄
banned.php
(19.1 KB)
📄
cart.php
(1.06 MB)
📄
clientarea.php
(1.17 MB)
📄
configuration.php
(454 B)
📄
configuressl.php
(124.56 KB)
📄
contact.php
(47.61 KB)
📄
creditcard.php
(7.11 KB)
ðŸ“
crons
📄
dist.loghandler.php
(1.47 KB)
📄
dl.php
(66.83 KB)
📄
dologin.php
(6.53 KB)
📄
domainchecker.php
(27.53 KB)
ðŸ“
downloads
📄
downloads.php
(5.91 KB)
📄
error_log
(201 B)
ðŸ“
feeds
ðŸ“
includes
📄
index.php
(14.65 KB)
📄
init.php
(104.2 KB)
📄
install.txt
(89 B)
📄
knowledgebase.php
(5.94 KB)
ðŸ“
lang
📄
link.php
(10.57 KB)
📄
login.php
(6.11 KB)
📄
logout.php
(11.63 KB)
ðŸ“
modules
📄
networkissues.php
(47.76 KB)
📄
networkissuesrss.php
(15.4 KB)
ðŸ“
oauth
📄
paynow-whmcs-1.0.1.zip
(168.07 KB)
📄
payzw-30-12-2021.zip
(12.04 KB)
📄
payzw.sql
(411 B)
📄
pwreset.php
(10.12 KB)
📄
register.php
(80.14 KB)
ðŸ“
resources
📄
serverstatus.php
(43.43 KB)
ðŸ“
status
📄
submitticket.php
(134.66 KB)
📄
supporttickets.php
(71.86 KB)
ðŸ“
templates
ðŸ“
templates_c
📄
unsubscribe.php
(8.49 KB)
📄
upgrade.php
(142.65 KB)
ðŸ“
vendor
📄
viewemail.php
(21.29 KB)
📄
viewinvoice.php
(65.03 KB)
📄
viewquote.php
(88.99 KB)
📄
viewticket.php
(176.78 KB)
📄
whmcs.zip
(114.74 MB)
📄
whois.php
(229 B)
Editing: aff.php
<?php /** * Affiliate Cookie Tracking + Redirection Handler * * @package WHMCS * @author WHMCS Limited <development@whmcs.com> * @copyright Copyright (c) WHMCS Limited 2005-2018 * @license https://www.whmcs.com/license/ WHMCS Eula * @version $Id$ * @link https://www.whmcs.com/ */ use WHMCS\Affiliate\Referrer; use WHMCS\Carbon; 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'); $referrer = trim($_SERVER['HTTP_REFERER'] ?? ''); Referrer::firstOrCreate([ 'affiliate_id' => $aff, 'referrer' => $referrer, ])->hits()->create([ 'affiliate_id' => $aff, 'created_at' => Carbon::now()->toDateTimeString(), ]); } /** * 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);
Upload File
Create Folder