Update: 2026-07-05 00:21:29

This commit is contained in:
Hamza-Ayed
2026-07-05 00:21:29 +03:00
parent 35c0a6680c
commit 5cf809e0cb
11 changed files with 418 additions and 9 deletions
@@ -2,9 +2,17 @@
require_once __DIR__ . '/../core/bootstrap.php';
$con = Database::get('main');
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status) VALUES ('facebook', 'autonomous_scroll_and_reply', 'pending')");
$stmt->execute();
$platform = $_GET['platform'] ?? 'facebook';
$targetUrl = $_GET['target_url'] ?? null;
if ($targetUrl) {
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status, target_url) VALUES (?, 'autonomous_scroll_and_reply', 'pending', ?)");
$stmt->execute([$platform, $targetUrl]);
} else {
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status) VALUES (?, 'autonomous_scroll_and_reply', 'pending')");
$stmt->execute([$platform]);
}
echo "<h1>Task inserted successfully!</h1>";
echo "<p>A new 'autonomous_scroll_and_reply' task is now pending for Facebook.</p>";
echo "<p>A new 'autonomous_scroll_and_reply' task is now pending for $platform.</p>";
echo "<p>Please restart the Android app now. It will immediately pick up this task and start scrolling!</p>";