// 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 '
'; } ?>

دمشق: وقفة احتجاجية تطالب بإلغاء المرسوم 66 ووقف مشاريع الإخلاء القسري

دمشق: وقفة احتجاجية تطالب بإلغاء المرسوم 66 ووقف مشاريع الإخلاء القسري

أهالي دمشق ينتفضون ضد المرسوم 66 ومشاريع الإخلاء القسري

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

الوقفة، التي جاءت بعد سنوات من التهجير القسري، حملت صوت آلاف العائلات التي خسرت منازلها وحقوقها بفعل مرسوم صدر عام 2012، في ذروة الثورة السورية، تحت عنوان “تنظيم عمراني”، لكنه كان في حقيقته غطاء قانونيًا لأحد أكبر مشاريع التهجير والنهب العقاري الممنهج في تاريخ سوريا الحديث.

مرسوم التهجير المقنّع

ينص المرسوم 66 على إحداث منطقتين تنظيميتين في دمشق، الأولى خلف مشفى الرازي (ماروتا سيتي حاليًا)، والثانية جنوب المتحلق الجنوبي (باسيليا سيتي). لكن بدلًا من إعادة الإعمار لصالح السكان، تم تحويل الملكيات الخاصة إلى أسهم تنظيمية تُدار ضمن شركات عقارية مثل “دمشق الشام القابضة”، لتُباع لاحقًا في سوق مغلقة يهيمن عليها مستثمرون مرتبطون بالسلطة.

سعيد الخان، أحد سكان حي المزة المهجّرين، يصف المرسوم بأنه “مرسوم ظالم”، ويقول لمنصة سوريا 24: “هُجّرنا من بيوتنا لأننا وقفنا مع الثورة. هذه الأرض أرضنا، بنيناها بعرقنا، وبدلًا من أن نحصل على سكن بديل، صادروا منازلنا وشيّدوا أبراجًا لطبقة لا تشبهنا”.

ويضيف: “طالبنا بإعادة التأهيل، جاء المحافظ، استمع، ووعد… لكن شيئًا لم يتغير، والعمل استمر كما كان في زمن النظام. المرسوم ما زال قائمًا، والمطلب واضح: إسقاطه كما سقط من أقرّه”.

شهادات من قلب القضية

تقول المحامية خديجة حليمة، المتحدثة باسم الرابطة، لمنصة سوريا 24 إن المرسوم مثّل عقوبة جماعية ضد آلاف السوريين الذين شاركوا في الثورة أو احتضنوها. وتضيف: “أكثر من 7,500 عائلة تضررت مباشرة من هذا المشروع، دون أن تحصل على سكن بديل أو تعويض. كثيرون عاشوا في بيوت عربية قديمة، امتلكوا أسهمًا بسيطة، صودرت لاحقًا وقُيّمت بثمن بخس لا يتجاوز 3 ليرات للسهم”.

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

أما زكريا الحصوات، من سكان بساتين الرازي خلف مشفى الرازي، فيوضح أن المرسوم صدر بـ”أسلوب مخادع”، ورافقه تسويف طويل ووعود زائفة: “قُدّر السكن البديل بـ100 متر بسعر 60 مليون ليرة، وطُلب منا دفع 10٪ دفعة أولى (أي حوالي 6 ملايين ليرة). بعد سنتين، ارتفعت التكلفة إلى أكثر من مليار ليرة! ومع ذلك، لم نستلم شيئًا”.

ويضيف: “المساكن وُزّعت لأهالٍ من خارج الحي، مثل منطقة اللوان، بينما نحو 9,000 عائلة من السكان الأصليين لم تحصل على شقة أو متر بديل. نحن أصحاب مصانع ومنازل ومحال، لكننا لم نحصل حتى على تعويض إيجار. هناك من فقد 23 شهيدًا في عائلته، ولا يزال يعيش بلا سقف”.

وأشار إلى أن محاميًا أوفدته الدولة سابقًا “استولى على 40٪ من قيمة التعويض، رغم أن المبلغ أصلًا كان زهيدًا ومجحفًا”.

ماروتا وباسيليا: مشروع رفاهية مشيّد على الوجع

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

ما جرى – بحسب ناشطين قانونيين – لم يكن تنظيمًا عمرانيًا، بل هندسة ديموغرافية عنيفة، أدارتها شبكة معقّدة تضم:

  • جهات رسمية (مثل محافظة دمشق)
  • شركات قابضة (كـ”دمشق الشام”)
  • قضاة ومحامين متورطين في تزوير وكالات
  • سماسرة عقاريين
  • شخصيات دينية ومجتمعية لعبت دورًا في جمع معلومات أمنية وتبرير المصادرات

مطالب المحتجين لمنصة “سوريا 24”:

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

بين القانون والعدالة… خطوة واحدة: الإلغاء

المرسوم 66 لم يكن خطأ قانونيًا عابرًا، بل أداة مدروسة لتفريغ الأحياء الشعبية من سكانها، وإعادة تشكيل دمشق لصالح نخبة مالية وأمنية، وبينما ترتفع الأبراج الفاخرة في ماروتا وباسيليا، يقف آلاف السوريين على أطلال منازلهم، في انتظار عدالة مؤجّلة، ويختم المتضرر حديثه بالقول: “هجرنا في ظل القانون، فليُعد القانون لنا كرامتنا”.

ويأمل المتضررون أن يصدر عن الحكومة الجديدة أو الجهات المعنية موقف رسمي خلال الأيام القادمة، يوضح مصير المرسوم 66 ومآلات المشاريع القائمة على أراضيهم. وستتابع منصة سوريا 24 الأمر مع المسؤولين وتوافيكم بأي تطورات.

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

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