| 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.0.2.5 $
/************************************************************************/
/* 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', 'xmlrpc');
/*********************************************************/
/* Include required files */
/*********************************************************/
require (phpAds_path."/config.inc.php");
require (phpAds_path."/libraries/lib-db.inc.php");
require (phpAds_path."/libraries/lib-xmlrpcs.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");
/*********************************************************/
/* Wrapper function to view_raw() */
/*********************************************************/
function phpAds_xmlrpcView ($msg)
{
global $xmlrpcerruser;
$view_params = array();
// Parse parameters
for ($i = 0; $i < $msg->getNumParams(); $i++)
{
$p = $msg->getParam($i);
if ($i)
{
// Put the decoded value the view arg array
$view_params[] = phpAds_xmlrpcDecode($p);
}
else
{
// First parameter: Remote information supplied be XML-RPC client
$p = phpAds_xmlrpcDecode($p);
if (!isset($p['remote_addr']))
return new xmlrpcresp(0, $xmlrpcerruser + 1,
"Missing 'remote_addr' member!");
while (list($k, $v) = each($p))
{
switch ($k)
{
case 'remote_addr':
$GLOBALS['HTTP_SERVER_VARS']['REMOTE_ADDR'] =
$GLOBALS['REMOTE_ADDR'] = $v;
break;
case 'remote_host':
$GLOBALS['HTTP_SERVER_VARS']['REMOTE_HOST'] =
$GLOBALS['REMOTE_HOST'] = $v;
break;
default:
$varname = 'HTTP_'.strtoupper($k);
$GLOBALS['HTTP_SERVER_VARS'][$varname] =
$GLOBALS[$varname] = $v;
break;
}
}
}
}
// Call view with supplied parameters
$output = call_user_func_array('view_raw', $view_params);
// What parameter should be always set
if (!is_array($output))
return new xmlrpcresp(0, $xmlrpcerruser + 99,
"An error occurred while fetching banner code");
if (isset($GLOBALS['phpAds_xmlError']))
return $GLOBALS['phpAds_xmlError'];
return new xmlrpcresp(phpAds_xmlrpcEncode($output));
}
/*********************************************************/
/* XML-RPC error handler */
/*********************************************************/
function phpAds_xmlrpcErrorHandler ($errno, $errstr, $errfile, $errline)
{
global $xmlrpcerruser, $phpAds_xmlError;
if ($errno & (E_ERROR|E_USER_ERROR))
$phpAds_xmlError = new xmlrpcresp(0, $xmlrpcerruser + 100,
"Error in '$errfile' at line $errline: $errstr");
}
/*********************************************************/
/* Main code */
/*********************************************************/
// Register function to send error as an XML-RPC error message - PHP4 only
if (function_exists('set_error_handler'))
set_error_handler('phpAds_xmlrpcErrorHandler');
// Open a connection to the database
phpAds_dbConnect();
// Create server for the view method with possible signatures
$server = new xmlrpc_server(array(
"phpAds.view" => array(
"function" => 'phpAds_xmlrpcView',
"signature" => array(
array($xmlrpcStruct, $xmlrpcStruct, $xmlrpcString, $xmlrpcInt, $xmlrpcString, $xmlrpcString, $xmlrpcBoolean),
array($xmlrpcStruct, $xmlrpcStruct, $xmlrpcString, $xmlrpcInt, $xmlrpcString, $xmlrpcString, $xmlrpcBoolean, $xmlrpcArray)
)
)
)
);
?>