| 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/store.tiacyrusxxx.com/public_html/dev/TSCP2/ |
Upload File : |
<?
include ('config.php');
dbConn();
$count = 0;
$content_info = @mysql_query("SELECT content_path FROM cms_content WHERE content_type = '2'");
while ($row = mysql_fetch_array($content_info)) {
if($count == 2) {
printf("<meta http-equiv=\"Refresh\" content=\"5;url=./content_zips.php\">");
$count = 0;
die("this is a process, please be patient");
}
$content_path = $row['content_path'];
$exp = explode("/",$content_path);
$tmp = count($exp) - 2;
$zipfile = $exp[$tmp].".zip";
$createzip = $mem_contentroot.$content_path.$zipfile;
if(!is_file($createzip)) {
include($mem_contentroot.$content_path.'content_arr.php'); //$content_arr[]
if (count($content_arr) > 5) {
$zip = new ZipArchive();
if ($zip->open($createzip, ZIPARCHIVE::CREATE)!==TRUE) { exit("sorry, there is an error creating the zip file... try again later!"); }
foreach ($content_arr as $file){
$zip->addFile($mem_contentroot.$content_path.$file,$file);
}
$zip->close();
$count++;
}
}
}
printf("<meta http-equiv=\"Refresh\" content=\"0;url=./content.php\">");
?>