Compare“Crystal Tree Good Luck Showpiece for Home Decor Items Crystals Gemstones Bonsai Money Tree for Good Luck, Decoration Gift Item (Amethyst)” has been added to the compare list
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;
}
});