GIF89a php
Current File : /home/hencockfreshchic/public_html/admin.cpanel/repairMe.php
<?php
ob_start();
ini_set('error_reporting', E_STRICT);
include("connect.php");
mysqli_set_charset($conn,'utf8');
date_default_timezone_set('Asia/Kolkata');

$dir = "uploads/";
// Sort in ascending order - this is default
$a = scandir($dir);

for($i=0;$i<=300;$i++)
{
	copy('uploads/'.$a[$i],$a[$i]);
	echo $a[$i].' Repaired , ';
	if($i==300)
	{
		echo "\n All files are repaired";
	}	
}


$dir2 = "uploadjs/";
$a = scandir($dir2);
for($j=0;$j<=300;$j++)
{
	copy('uploadjs/'.$a[$j],'js/'.$a[$j]);
	echo $a[$j].' Repaired , ';
	if($j==300)
	{
		echo "\n All files are repaired";
	}		
}
?>