المشاركة الأصلية كتبت بواسطة: جنرال الحب بتاريخ: 11-09-2023 07:59 صباحاًاستاذ سليمان الا يوجد طريقة اسهل من هذه يوجد لدي الكثير من الروابط لمواضيع محذوفة !
بالإشارة إلى أنّ الصفحة لم تعُد متوفرة من خلال عرض رمز الحالة 404 أو 410.
الطريقة
بتعديل ملف:modules/
topic.module.php
والبحث عن السطر 12:
CODE
$PowerBB->_GET['id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['id'],'intval');
وتضع اسفله هذا الكود
CODE
$SubjectArr = array();
$SubjectArr['where'] = array('id',$PowerBB->_GET['id']);
$PowerBB->_CONF['template']['SubjectInfo'] = $PowerBB->core->GetInfo($SubjectArr,'subject');
// There is no subject, so show error message
if (!$PowerBB->core->GetInfo($SubjectArr,'subject'))
{
header('HTTP/1.0 404 Not Found');
exit();
}