1289Products Found
br>🗑️ Processing file...
";
if (file\_exists($video\_path)) {
if (unlink($video\_path)) {
echo "✅ File Deleted";
} else {
$new\_path = $posted\_path . $file\_name;
if (rename($video\_path, $new\_path)) {
echo "⚠️ Delete failed → moved to /posted/";
} else {
echo "❌ Delete + Move both failed";
}
}
}
echo "
✅ DONE";
}
// CURL HELPER
function curl\_post($url, $data) {
$ch = curl\_init();
curl\_setopt($ch, CURLOPT\_URL, $url);
curl\_setopt($ch, CURLOPT\_POST, 1);
curl\_setopt($ch, CURLOPT\_POSTFIELDS, $data);
curl\_setopt($ch, CURLOPT\_RETURNTRANSFER, true);
curl\_setopt($ch, CURLOPT\_SSL\_VERIFYPEER, false);
$res = curl\_exec($ch);
curl\_close($ch);
return $res;
}
// ================= TEST =================
add\_action('init', function() {
if (isset($\_GET\['testvideo'])) {
auto\_video\_post\_function();
exit;
}
});