| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 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/tadpolexstudio.com/public_html/ |
Upload File : |
<?php
/**
* DO NOT MAKE CHANGES TO THIS FILE. THE CMS MAY AUTOMATICALLY UPDATE THESE FILES AND OVERWRITE YOUR CHANGES.
* FOR A GUIDE TO INTEGRATING CUSTOM CODE, PLEASE SEE:
*
* https://support.elevatedx.com/q/customcode/
*
* LICENSE: This source file is subject to the Elevated X license
* that is available through the world-wide-web at the following URI:
* http://www.elevatedx.com/terms.php. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to sales@elevatedx.com so we can mail you a copy immediately.
*
* @category Stubs
* @package ElevatedXCMS
* @copyright Elevated X, Inc.
* @license http://www.elevatedx.com/terms.php
* @link http://www.elevatedx.com/
*
*/
if (!defined('ELCMXS6')) exit;
define('CMSINCLUDEVERSION', 4);
$pini = parse_ini_file("cmsinclude.ini.php", true);
if ($pini === false)
{
echo "Could not open cmsinclude.ini.php. ";
if (!file_exists("cmsinclude.ini.php"))
{
echo "<br />System cannot find this file. Please make sure it is present.";
exit;
}
elseif (!is_readable("cmsinclude.ini.php"))
{
echo "<br />System cannot read this file. Please make sure there are read permissions on this file.";
exit;
}
elseif (filesize("cmsinclude.ini.php") == "0")
{
echo "<br />cmsinclude.ini.php is blank. Please upload a valid file.";
exit;
}
else
{
echo "<br />cmsinclude.ini.php has a parse error. Please check the contents of this file to make sure it is valid.";
echo "<br />";
ini_set("display_errors", "on");
error_reporting(E_ALL);
$pini = parse_ini_file("cmsinclude.ini.php", true);
}
exit;
}
function scallback($m)
{ return $_SERVER[$m[1]]; }
$fload = $pini["flags"]["CMS_ADMIN"] . "/includes/alwaysexec.php";
$fload = preg_replace_callback("/\\\$_SERVER\[(\S+)\]/", "scallback", $fload);
$incres = include_once $fload;
if (!$incres)
{ ?>
Could not open <?php echo $fload ?>. Please make sure:
<ul>
<li>The file exists and the specified path is correct.
<li>There are no open_basedir restrictions in place for this path.
</ul>
<p>Please contact your host with this error message.</p>
<?php
exit;
}
$loadvars = cmsinclude_load($pini);
foreach
($loadvars as $k => $v)
{
$$k = &$loadvars[$k];
}