// Only define DEBUG_MODE if it's not already defined if (!defined('DEBUG_MODE')) { define('DEBUG_MODE', false); } // Only show errors in development if (DEBUG_MODE === true) { ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); } // Check if article exists if (empty($article)) { // Article not found, show 404 page include_once FRONTEND_PATH . '/templates/404.php'; exit; } // Set page variables $pageTitle = $article['title'] . ' - ' . APP_NAME; $pageDescription = !empty($article['excerpt']) ? strip_tags($article['excerpt']) : truncate_text(strip_tags($article['content']), 160); // Clean any remaining HTML entities from the description $pageDescription = html_entity_decode(strip_tags($pageDescription)); $ogType = 'article'; $ogImage = !empty($article['featured_image']) ? 'https://' . $_SERVER['HTTP_HOST'] . '/' . $article['featured_image'] : null; $currentUrl = 'https://' . $_SERVER['HTTP_HOST'] . '/article/' . $article['slug']; $activeNav = ''; $showBreadcrumbs = true; // Set breadcrumbs $breadcrumbs = []; // Add category to breadcrumbs if available if (!empty($articleCategories) && count($articleCategories) > 0) { $category = $articleCategories[0]; // Use first category $breadcrumbs[] = [ 'title' => $category['name'], 'url' => '/category/' . $category['slug'] ]; } // Add article to breadcrumbs $breadcrumbs[] = [ 'title' => $article['title'], 'active' => true ]; // Generate schema.org markup for article $schemaMarkup = generate_article_schema($article); // The update_tags function has been moved to frontend/includes/functions.php // Debug: Before view count increment error_log("DEBUG: Before increment_article_views - Article ID: " . $article['id']); // Increment view count before displaying increment_article_views($article['id']); // Debug: After view count increment error_log("DEBUG: After increment_article_views - Article ID: " . $article['id']); // For debugging - create a debug log that will be displayed on the page $debugLog = []; $debugLog[] = "Debug: Article ID: " . $article['id']; // Get database connection global $db; // Initialize debug log $debugLog[] = "Using existing database connection via dbQuery"; // Debug: Database connection check error_log("DEBUG: Database connection check - DB is " . ($db ? "available" : "NOT available")); // Make sure article tags are loaded and initialized as an array if (!isset($articleTags)) { // Fetch existing tags for this article try { if ($db) { $tagQuery = "SELECT t.id, t.name, t.slug FROM tags t JOIN news_tags nt ON t.id = nt.tag_id WHERE nt.news_id = ?"; $tagStmt = $db->prepare($tagQuery); $tagStmt->execute([$article['id']]); $articleTags = $tagStmt->fetchAll(PDO::FETCH_ASSOC); } else { $articleTags = []; error_log('Database connection not available when fetching article tags'); } } catch (Exception $e) { // If there's an error, initialize as empty array $articleTags = []; error_log('Error fetching article tags: ' . $e->getMessage()); } } // Ensure $articleTags is always an array if (!is_array($articleTags)) { $articleTags = []; } // Debug: Before calling update_tags error_log("DEBUG: About to call update_tags function - Article ID: " . $article['id']); error_log("DEBUG: ArticleTags count before update: " . count($articleTags)); // Update article tags based on content $tagsUpdated = false; $tagsUpdated = update_tags(); error_log("DEBUG: update_tags function returned: " . ($tagsUpdated ? "TRUE" : "FALSE")); // Refresh article tags after potential updates if update was successful if ($tagsUpdated && $db) { error_log("DEBUG: Refreshing article tags after successful update"); try { $tagQuery = "SELECT t.id, t.name, t.slug FROM tags t JOIN news_tags nt ON t.id = nt.tag_id WHERE nt.news_id = ?"; $tagStmt = $db->prepare($tagQuery); $tagStmt->execute([$article['id']]); $articleTags = $tagStmt->fetchAll(PDO::FETCH_ASSOC); } catch (Exception $e) { // Log error but continue with existing tags error_log('Error refreshing article tags: ' . $e->getMessage()); } } // Update debug log with more information $debugLog[] = "Debug: Database connection: " . ($db ? "Available" : "NOT available"); $debugLog[] = "Debug: ArticleTags count: " . count($articleTags); // Add function call trace for debugging $debugLog[] = "Debug: Execution trace:"; $debugLog[] = "- Before increment_article_views"; $debugLog[] = "- After increment_article_views"; $debugLog[] = "- Database connection check: " . ($db ? "SUCCESS" : "FAILED"); $debugLog[] = "- Article tags loaded: " . (isset($articleTags) ? "YES" : "NO"); $debugLog[] = "- About to call update_tags"; $debugLog[] = "- update_tags result: " . ($tagsUpdated ? "SUCCESS" : "FAILED"); // Add database connection details $debugLog[] = "Debug: Database connection details:"; if ($db) { $debugLog[] = "- Connection type: " . get_class($db); $debugLog[] = "- Connection hash: " . spl_object_hash($db); } // Add more detailed database info if ($db) { try { $debugLog[] = "Debug: Database info:"; $stmt = $db->query("SELECT DATABASE() as db_name"); $dbInfo = $stmt->fetch(PDO::FETCH_ASSOC); $debugLog[] = "- Current database: " . ($dbInfo['db_name'] ?? 'unknown'); // Check if tags table exists and has data $stmt = $db->query("SELECT COUNT(*) as tag_count FROM tags"); $tagCount = $stmt->fetch(PDO::FETCH_ASSOC); $debugLog[] = "- Tags in database: " . ($tagCount['tag_count'] ?? 'unknown'); } catch (Exception $e) { $debugLog[] = "- Error getting DB info: " . $e->getMessage(); } } // Include header include_once FRONTEND_PATH . '/includes/header.php'; // Display debug information at the top of the page (only during development) if (defined('DEBUG_MODE') && DEBUG_MODE === true) { echo '
'; echo '

Debug Information

'; echo ''; // Direct test of update_tags function with sample data if ($db) { echo '

Direct Test of update_tags Function

'; // Create sample data with proper string values $sampleArticle = [ 'id' => $article['id'], 'title' => 'Sample Title for Testing', 'content' => 'This is sample content for testing the update_tags function.' ]; // Ensure all values are strings to avoid null values $sampleArticle['title'] = (string)$sampleArticle['title']; $sampleArticle['content'] = (string)$sampleArticle['content']; $sampleTags = []; // Try to get some real tags for testing try { $stmt = $db->query("SELECT id, name, slug FROM tags LIMIT 5"); $testTags = $stmt->fetchAll(PDO::FETCH_ASSOC); echo '

Test with ' . count($testTags) . ' sample tags:

'; echo ''; // Run the test echo '

Running test update_tags function...

'; // Set global variables for the test global $article, $articleTags; $originalArticle = $article; $originalTags = $articleTags; // Temporarily set global variables for the test $article = $sampleArticle; $articleTags = $sampleTags; // Run the test $testResult = update_tags(); // Restore original values $article = $originalArticle; $articleTags = $originalTags; echo '

Test result: ' . ($testResult ? 'SUCCESS' : 'FAILED') . '

'; } catch (Exception $e) { echo '

Error during test: ' . htmlspecialchars($e->getMessage()) . '

'; } } echo '
'; } ?>

فادي صقر يثير الجدل: قائد ميليشيا الدفاع الوطني ينفي تورطه في مجزرة التضامن ويعلن استعداده للمثول أمام القضاء

فادي صقر يثير الجدل: قائد ميليشيا الدفاع الوطني ينفي تورطه في مجزرة التضامن ويعلن استعداده للمثول أمام القضاء

نفى قائد ميليشيا "الدفاع الوطني" سابقًا، فادي صقر، تورطه في "مجزرة التضامن"، مؤكدًا أنه تم تعيينه قائدًا للميليشيا بعد وقوع المجزرة. جاء هذا التصريح ردًا على الجدل الذي أثارته تصريحات حسن صوفان، عضو اللجنة العليا للسلم الأهلي، حول دور صقر وإبقائه خارج إطار العدالة رغم اتهامه بارتكاب جرائم قتل بحق المدنيين.

وفي تصريح لصحيفة "نيويورك تايمز"، صرح صقر بأنه عُيّن قائدًا لـ"الدفاع الوطني" بعد مجزرة التضامن، وأنه لم يحصل على أي عفو من الحكومة. "الدفاع الوطني" هي قوات مسلحة رديفة لجيش النظام، تضم مقاتلين محليين، وشاركت في عمليات اقتحام المدن والقرى.

وأضاف صقر: "كانت الدولة واضحة معي منذ البداية، ولو كان لدى وزارة الداخلية أي دليل ضدي، لما كنت أعمل معهم اليوم". وأبدى استعداده للخضوع للقضاء، قائلًا: "سأخضع نفسي لأي قرار قضائي، وفقًا للإجراءات القانونية السليمة".

ويرى صقر أن خلفيته كـ"علوي" وقائد ميليشيا تابعة للنظام، تمنحه المصداقية لإقناع مؤيدي النظام السابق بعدم التخلي عن الحكومة السورية الجديدة. وتساءل: "هل سيقبلهم جمهور الثورة شركاء في الوطن؟"، معتبرًا أن "اسم فادي صقر هو اختبار لمدى إمكانية التعايش بين طرفي الصراع".

من هو فادي صقر؟

شغل فادي صقر قيادة "الدفاع الوطني" في التضامن ثم في دمشق، وفق "مؤسسة الذاكرة السورية". مجزرة "التضامن" كشف عنها تحقيق لصحيفة "الجارديان" في نيسان 2022، وأظهر أن قوات النظام السوري ارتكبت مجزرة في حي التضامن بدمشق في 16 نيسان 2013، أسفرت عن مقتل نحو 41 شخصًا ودفنهم في مقبرة جماعية. تزامن تولي صقر قيادة "الدفاع الوطني" في التضامن مع ارتكاب المجزرة، حيث تولى قيادة الميليشيا في عام 2012.

يذكر أن صقر كان مديرًا في "المؤسسة الاستهلاكية في دمشق" بداية الثورة السورية عام 2011، ثم انضم إلى "اللجان الشعبية" ومن ثم إلى "الدفاع الوطني". تسلّم قيادة قطاع التضامن لـ"الدفاع الوطني" ثم عُيّن قائدًا للمنطقة الشمالية لـ"الدفاع الوطني"، ونائبًا لقائد مركز دمشق لـ"الدفاع الوطني"، ثم رئيسًا لمراكز دمشق.

الجدل بشأن فادي صقر

تفاقم الجدل بشأن فادي صقر بعد تصريحات حسن صوفان، عضو اللجنة العليا للسلم الأهلي، التي أشار فيها إلى أن وجود شخصيات مثل صقر ضمن مسار السلم الأهلي يساعد في تفكيك العقد وحل المشكلات ومواجهة المخاطر التي تتعرض لها سوريا. وأضاف: "نحن نتفهم الألم والغضب الذي تشعر به عائلات الشهداء، لكننا في مرحلة السلم الأهلي مضطرون لاتخاذ قرارات لتأمين استقرار نسبي للمرحلة المقبلة".

وتناول المؤتمر أيضًا قضية الإفراج عن موقوفين كانوا جنودًا وضباطًا في جيش النظام السابق. وأوضح صوفان أن الضباط الذين تم إطلاق سراحهم هم "ضباط عاملون" منذ عام 2021، وسلموا أنفسهم طوعًا عند الحدود العراقية، وأنهم لم يرتكبوا جرائم حرب. وأكد أن "العدالة الانتقالية لا تعني محاسبة كل من خدم النظام السابق، والمحاسبة هي لكبار المجرمين الذين نفذوا جرائم وانتهاكات جسيمة".

وأشار صوفان إلى أن هذه الإجراءات ليست بديلًا عن العدالة الانتقالية التي بدأت بالفعل، وهي مهمة اللجنة الوطنية للعدالة الانتقالية التي شُكّلت بمرسوم رئاسي، موضحًا أن الإفراج عن هؤلاء الضباط هو جزء من إجراءات السلم الأهلي التي تساعد على تهدئة التوتر المجتمعي.

مجزرة التضامن

في 27 نيسان 2022، كشف تحقيق لصحيفة "الجارديان" معلومات حول مجزرة ارتكبتها قوات النظام السوري في 16 نيسان 2013، في حي التضامن بدمشق، أسفرت عن مقتل نحو 41 شخصًا ودفنهم في مقبرة جماعية. تم ذلك من خلال عرض مقطع مصوّر يوثّق إطلاق الرصاص على عشرات الأشخاص ودفنهم في مقبرة جماعية، ثم حرق جثثهم من قبل عناصر النظام السوري.

واستند التحقيق إلى وثائق وشهادات قدّمها الباحثان أنصار شحود والبروفيسور أوغور أوميت أنجور، من مركز "الهولوكوست والإبادة الجماعية" بجامعة "أمستردام"، نقلًا عن عسكري سابق في قوات النظام استطاع الحصول على المقطع. واعتبر مراسل الصحيفة أن المقطع هو أول وثيقة تدين النظام بشكل صريح لا يمكن الالتفاف عليه، إذ إنه أول مقطع يوثّق ضلوع المخابرات السورية المرتبطة بشكل مباشر بالنظام السوري.

مشاركة المقال:

Warning: Undefined variable $tagsUpdated in /home/comparecarriers/public_html/yallasyrianews.com/frontend/templates/article.php on line 419