اسلاميات منوعة دليل المواقع قصص الانبياء عالم الفوتوشوب ترجمة المواقع عالم الصور موقع شامل نت
اتصل بنا التداوي بالاعشاب الفوائد الدينية الهكر والحماية عالم البالتوك العاب الفلاش الجوالات والبلوتوث

قديم 05-03-2006, 10:39 PM   #1 (permalink)

شاملي غير شكل

 
الصورة الرمزية fadi_4x4

 
 

بدي مساعده في هاك جدول الاخصائيات vBulletin3.5.0 لو سمحتو




بدي مساعده في هاك جدول الاخصائيات vBulletin3.5.4 وليس المعروض في العنوان لو سمحتو
الجدول الي فيه أنشك 10 أعضاء
وأخر عشر أعضاء منتسبين للمنتدى
وأخر عشر مشاركات

وشريط المواضيع المتميزه

واذا في مجال شرح كيف أركبهم

تحياتي لكم يا أحلا منتدى
 

__________________

من مواضيعي
[align=center]

[glow=FF9900]لا اُنكر أنَّ البَغْيَ في الدُّنيا ظَهَرْ
والضَّميَر الحيَّ في دوَّامة العصر انْصَهَرْ
أنا لا أنكر أنَّ الوهمَ في عالمنا المسكون بالوهم انتشرْ
غيَر أنَّي لم أزلْ أحلف بالله الأحَدْ
أنَّ نَصرَ اللهِ آتٍ وعدوَّ اللهِ لن يلقى من الله سَنَدْ
لن ينال المعتدي مِا يبتغي في القدسِ
ما دام لنا فيها وَلَدْ
[/glow]


[/align]


التعديل الأخير تم بواسطة fadi_4x4 ; 05-03-2006 الساعة 10:46 PM.
fadi_4x4 غير متواجد حالياً  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

قديم الأعلانات

 

 
قديم 05-26-2006, 02:26 AM   #2 (permalink)

الإدارة

 
الصورة الرمزية شامل نت

 
 

افتراضي




مرحبا,,
الهاك اللي تبيه نفس الهاك الموجود في شامل اسفل المنتدى ولكن من دون اخر عشر مواضيع
اخر عشر مواضيع هذا هاك لوحده ممكن تركبه في المكان اللي تبي
مثلا عندك شامل في اعلى الهيدر
عموما تابع الخطوات

1- افتح ملف index.php


ابحث عن :

كود:
'forumhome_subforumseparator_post'


استبدله بهذا :

كود:
'forumhome_subforumseparator_post',
	'forumhome_stats_poster',
	'forumhome_stats_member',
	'forumhome_stats_thread',


في نفس الملف ابحث عن هذا:

كود:
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###


اضف بعده بسطر هذا:

كود:
// ### TOP 5 STATS BY ANIMEWEBBY ###########################################
$displayrecords = "5"; // how many records should we show?
$excludedforums = "13"; // forums to be excluded from latest threads. Format "0,5,7"
$threadchars = "30"; // number of characters in thread title before '...' is added

$getstats_posters = $DB_site->query("SELECT userid, username, posts FROM " . TABLE_PREFIX . "user ORDER BY posts DESC LIMIT 0, $displayrecords");
while ($getstats_poster = $DB_site->fetch_array($getstats_posters))
{
		eval('$stats_posters .= "' . fetch_template('forumhome_stats_poster') . '";');
}

$getstats_members = $DB_site->query("SELECT userid, username, posts, joindate FROM " . TABLE_PREFIX . "user ORDER BY joindate DESC LIMIT 0, $displayrecords");
while ($getstats_member = $DB_site->fetch_array($getstats_members))
{
		eval('$stats_members .= "' . fetch_template('forumhome_stats_member') . '";');
}

// filter out deletion notices if can't be seen
$forumperms = fetch_permissions($forumid);
if (!($permissions['forumpermissions'] & CANSEEDELNOTICE))
{
	$delquery = ", NOT ISNULL(deletionlog.primaryid) AS isdeleted, deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason";
	$delthreadlimit = "AND deletionlog.primaryid IS NULL";
	$deljoin = "LEFT JOIN " . TABLE_PREFIX . "deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid AND type = 'thread')";
}
else
{
	$delquery = ", NOT ISNULL(deletionlog.primaryid) AS isdeleted, deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason";
	$delthreadlimit = "";
	$deljoin = "LEFT JOIN " . TABLE_PREFIX . "deletionlog AS deletionlog ON(thread.threadid = deletionlog.primaryid AND type = 'thread')";
}

$getstats_threads = $DB_site->query("
SELECT thread.threadid, thread.title, thread.lastpost, thread.forumid, thread.replycount, thread.lastposter, thread.dateline, IF(views<=replycount, replycount+1, views) AS views, thread.visible, user.username, user.userid 
$delquery
		FROM " . TABLE_PREFIX . "thread AS thread
		LEFT JOIN  " . TABLE_PREFIX . "user AS user ON (user.username = thread.lastposter)
$deljoin
WHERE thread.forumid NOT IN ($excludedforums)
$delthreadlimit
ORDER BY thread.lastpost DESC LIMIT 0, $displayrecords");

while ($getstats_thread = $DB_site->fetch_array($getstats_threads))
{
	$getstats_thread[title] = unhtmlspecialchars($getstats_thread[title]);
	if (strlen($getstats_thread[title]) > $threadchars)
	{		
		$getstats_thread[titletrimmed] = substr($getstats_thread[title], 0, strrpos(substr($getstats_thread[title], 0, $threadchars), ' ')) . '...';
	}
	else
	{
		$getstats_thread[titletrimmed] = $getstats_thread[title];
	}
	if ($getstats_thread[lastpost] > $bbuserinfo[lastvisit])
	{
		$getstats_thread[newpost] = true;
	}
	if ($getstats_thread[isdeleted])
	{
		$getstats_thread[isdeleted] = true;
	}
	eval('$stats_threads .= "' . fetch_template('forumhome_stats_thread') . '";');
}

ادخل لوحة التحكم الخاصه بالمنتدى ثم الاشكال والقوالب ثم اضافة قالب جديد

اضف تمبلت جديد باسم : forumhome_stats_member
واضف فيه هذا
كود:
<tr>
				<td class="smallfont" width="100%"><b><a href="member.php?u=$getstats_member[userid]">$getstats_member[username]</a></b></td>
				<td class="smallfont" align="right"><b>$getstats_member[posts]</b></td>
			</tr>

اضف تمبلت جديد باسم : forumhome_stats_poster

واضف فيه هذا


كود:
	<tr>
				<td width="100%"><b><a href="member.php?u=$getstats_poster[userid]">$getstats_poster[username]</a></b></td>
				<td class="smallfont" align="right"><b>$getstats_poster[posts]</b></td>
			</tr>

اضف تمبلت جديد باسم : forumhome_stats_thread
واضف فيه هذا


كود:
<tr>
				<td class="smallfont"><strong>[<i><if condition="$getstats_thread[newpost]">جديد<else />قديم</if></i>] <a href="showthread.php?$session[sessionurl]goto=newpost&t=$getstats_thread[threadid]" title="<phrase 1="$getstats_thread[title]">$vbphrase[go_first_unread_in_thread_x]</phrase>">$getstats_thread[titletrimmed]</a></strong></td>
				<if condition="$getstats_thread[isdeleted]">
				<td  class="smallfont"colspan=3" align="left"><phrase 1="member.php?$session[sessionurl]u=$getstats_thread[del_userid]" 2="$getstats_thread[del_username]">$vbphrase[thread_deleted_by_x]</phrase></td>
				<else />
				<td class="smallfont"><strong><a href="member.php?$session[sessionurl]u=$getstats_thread[userid]">$getstats_thread[lastposter]</a></strong></td>
				<td class="smallfont" align="right"><strong>$getstats_thread[views]</strong></td>
				<td class="smallfont" align="right"><strong>$getstats_thread[replycount]</strong></td>
				</if>
			</tr>


افتح تمبلت FORUMHOME
اضف هذا .. في اي مكان يعجبك
ويفضل تحت هذا السطر
<!-- end what's going on box -->

كود:
<!-- top statistics box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
	<tr>
		<td class="tcat" colspan="3">
			<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_statistics')"><img id="collapseimg_forumhome_statistics" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_statistics].gif" alt="" border="0" /></a>
            <span lang="ar-sa">احصائيات المنتديات </span></td>
	</tr>
</thead>
<tbody id="collapseobj_forumhome_statistics" style="$vbcollapse[collapseobj_forumhome_statistics]">
	<tr>
		<td class="thead" width="23%" align="center" nowrap><span lang="ar-sa">
        اكثر الاعضاء نشاطاَ</span></td>
		<td class="thead" width="22%" align="center" nowrap><span lang="ar-sa">
        الاعضاء الجدد</span></td>
		<td class="thead" width="55%" nowrap align="center"><span lang="ar-sa">
        المشاركات الاخيرة</span></td>
	</tr>
	<tr>
		<td class="alt2" width="23%" valign="top">
		<table>
			<tr>
				<td class="smallfont" width="100%"><span lang="ar-sa">الاسم</span></td>
				<td class="smallfont" align="right" nowrap><span lang="ar-sa">
                المشاركات</span></td>
			</tr>
			$stats_posters
		</table>
		</td>
		<td class="alt1" width="22%" valign="top">
		<table>
			<tr>
				<td class="smallfont" width="100%" nowrap><span lang="ar-sa">
                الاسم</span></td>
				<td class="smallfont" align="right" nowrap><span lang="ar-sa">
                المشاركات</span></td>
			</tr>
			$stats_members
		</table>
		</td>
		<td class="alt2" width="55%" valign="top">
		<table>
			<tr>
				<td class="smallfont" width="70%" nowrap><span lang="ar-sa">
                الموضوع</span></td>
				<td class="smallfont" width="30%" nowrap><span lang="ar-sa">
                المشاركات الاخيرة</span></td>
				<td class="smallfont" align="right" nowrap><span lang="ar-sa">
                المشاهدات</span></td>
				<td class="smallfont" align="right" nowrap><span lang="ar-sa">
                المشاركات</span></td>


			</tr>
			$stats_threads
		</table>
		</td>
	</tr>
</tbody>
</table>
<br />
<br />
<!-- end top statistics box -->
ان شاء الله يكون واضح واي استفسار لا تتردد,,

تحياتي
 

__________________

من مواضيعي

شامل نت غير متواجد حالياً  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
قديم 05-26-2006, 12:03 PM   #3 (permalink)

شاملي ماحد قدة

 
الصورة الرمزية المستاء

 
 

افتراضي




جزاك الله كل خير / شامل نت

فعلاً شرح وافي من خبير المنتدى ومصمم الموقع ..

ياخوي كلمة شكر وحدها ماتكفيك وربي شاهد ..


أتمنى لك التوفيق


أخ فادي إن شاء الله تكون المعلومة وصلت ، يعني مايبيلها كلام هذا شامل نت بصمة التميز


تحياتي

المستاء
 

__________________

من مواضيعي
[align=center][/align]

المستاء غير متواجد حالياً  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
موضوع مغلق



الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1)
 
أدوات الموضوع
انواع عرض الموضوع تقييم هذا الموضوع
تقييم هذا الموضوع:

تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة
Trackbacks are متاحة
Pingbacks are متاحة
Refbacks are متاحة


المواضيع المتشابهه
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
لايفوتكم اسرار وندوز xp zooro144 شامل الكمبيوتر والإنترنت 10 05-04-2006 07:28 PM
الرافضه (الشيعه ) ووجودهم في السعوديه .... دكتور الحب شـــامل دين ودنيا 4 02-11-2006 05:41 AM
صيانه أجهزة الكمبيوتر wahidkml شامل الكمبيوتر والإنترنت 4 06-21-2005 04:50 PM
رسالة إلى مريض Beso شـــامل دين ودنيا 0 07-16-2004 10:16 PM


الساعة الآن 06:09 AM.
Powered by vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74