| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/baberankings.com.bak/shruingChwGkl4/ |
Upload File : |
<?php // $Revision: 2.1.2.9 $
/************************************************************************/
/* phpAdsNew 2 */
/* =========== */
/* */
/* Copyright (c) 2000-2005 by the phpAdsNew developers */
/* For more information visit: http://www.phpadsnew.com */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
// Figure out our location
define ('phpAds_path', '.');
// Set invocation type
define ('phpAds_invocationType', 'adjs');
/*********************************************************/
/* Include required files */
/*********************************************************/
require (phpAds_path."/config.inc.php");
require (phpAds_path."/libraries/lib-io.inc.php");
require (phpAds_path."/libraries/lib-db.inc.php");
if (($phpAds_config['log_adviews'] && !$phpAds_config['log_beacon']) || $phpAds_config['acl'])
{
require (phpAds_path."/libraries/lib-remotehost.inc.php");
if ($phpAds_config['log_adviews'] && !$phpAds_config['log_beacon'])
require (phpAds_path."/libraries/lib-log.inc.php");
if ($phpAds_config['acl'])
require (phpAds_path."/libraries/lib-limitations.inc.php");
}
require (phpAds_path."/libraries/lib-view-main.inc.php");
require (phpAds_path."/libraries/lib-cache.inc.php");
/*********************************************************/
/* Java-encodes text */
/*********************************************************/
function enjavanate ($str, $limit = 0)
{
$str = str_replace("\r", '', $str);
print "var phpadsbanner = '';\n\n";
while (strlen($str) > 0)
{
if ($limit)
{
$line = substr ($str, 0, $limit);
$str = substr ($str, $limit);
}
else
{
$line = $str;
$str = '';
}
$line = addcslashes($line, "\0..\37'\\");
$line = str_replace('<', "<'+'", $line);
print "phpadsbanner += '$line';\n";
}
print "\ndocument.write(phpadsbanner);\n";
}
/*********************************************************/
/* Register input variables */
/*********************************************************/
phpAds_registerGlobal ('what', 'clientid', 'clientID', 'context',
'target', 'source', 'withtext', 'withText',
'exclude', 'block', 'referer', 'blockcampaign');
/*********************************************************/
/* Main code */
/*********************************************************/
if (isset($clientID) && !isset($clientid)) $clientid = $clientID;
if (isset($withText) && !isset($withtext)) $withtext = $withText;
if (!isset($what)) $what = '';
if (!isset($clientid)) $clientid = 0;
if (!isset($target)) $target = '';
if (!isset($source)) $source = '';
if (!isset($withtext)) $withtext = '';
if (!isset($context)) $context = '';
if (isset($exclude) && $exclude != '')
{
$exclude = explode (',', $exclude);
$context = array();
for ($i = 0; $i < count($exclude); $i++)
if ($exclude[$i] != '')
$context[] = array ("!=" => $exclude[$i]);
}
// Set real referer
if (isset($referer) && $referer)
$HTTP_REFERER = $HTTP_SERVER_VARS['HTTP_REFERER'] = stripslashes($referer);
// Get the banner
$output = view_raw ($what, $clientid, $target, $source, $withtext, $context);
// Show the banner
header("Content-type: application/x-javascript");
enjavanate($output['html']);
// Block this banner for next invocation
if (isset($block) && $block != '' && $block != '0' && $output['bannerid'])
print ("\nif (document.phpAds_used) document.phpAds_used += 'bannerid:".$output['bannerid'].",';\n");
// Block this campaign for next invocation
if (isset($blockcampaign) && $blockcampaign != '' && $blockcampaign != '0' && $output['campaignid'])
print ("\nif (document.phpAds_used) document.phpAds_used += 'campaignid:".$output['campaignid'].",';\n");
?>