Here is a little code to show your user when will be his file deleted. It will show in the Server Files Tab
Find This Code In your main.php
<td><?php echo $file["size"]; ?></td>
After That Add This Code
<td><?php
$timeStampFromDb =$file["date"]; // Gets File DownLoad TiME
$hoursToAdd = $options['delete_delay']; // 8 hours or what hours you add .
$expireTime = $timeStampFromDb + $hoursToAdd; // time when 8 hours is added to the time from db
$now = date('H:i:s'); // time at the moment
$interval = $expireTime - $now; // if this is negative, time has expired
echo date('H:i:s', $interval);
?></td>So what we did ? We collected the file download time. Then added our own delet time . Then some maths and result.






Find content
Male
Display name history










