+ الرد على الموضوع
النتائج 1 إلى 5 من 5
  1. #1
    برووق is on a distinguished road
    تاريخ التسجيل
    23 / 09 / 2005
    الدولة
    مجهولة
    المشاركات
    15
    معدل تقييم المستوى
    243

    Smi73 ابو راشد ممكن لوسمحت تحل لى المشكله

    السلام عليكم ورحمة الله وبركاته

    عندي استفسارين اتمنى ان اجد الاجابه عليهما بسرعه

    كيف انقل صندوق المحادثات من صفحة المنتدى الى الفي بي أدفانسد بورتال

     
  2. #2
    المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute الصورة الرمزية المودة
    تاريخ التسجيل
    17 / 08 / 2004
    العمر
    32
    المشاركات
    20,806
    معدل تقييم المستوى
    26158

    افتراضي رد: ابو راشد ممكن لوسمحت تحل لى المشكله

    شكلك بليد في الحساب ... هذا استفسار واحد ... ههههههههههههه ... اذا قصدك الخط الساخن أو شبيهه فعندها جرب ما يلي :

    في الإعدادات الإفتراضية للبورتال وفي خانة المتغيرات الإضافية أضف ما يلي :

    كود:
    Shoutbox
    افتح البلقنز المسمى الخط الساخن للإهداءات ـ القوالب وغير موقع الخطاف إلى global_start واستبدل محتويات البلقنز بما يلي :

    كود:
    if (THIS_SCRIPT == 'index' OR THIS_SCRIPT == 'adv_index')
    {
    
    $Used    = 0;
    $UsedArr = array();
    $smilies = $db->query_read("
    		SELECT smilieid, smilietext, smiliepath, smilie.title,
    		imagecategory.title AS category
    		FROM " . TABLE_PREFIX . "smilie AS smilie
    		LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
    		ORDER BY imagecategory.displayorder, smilie.displayorder
    	");
    $Smilie_Build  = '';
    $Total_Smilies = $db->num_rows($smilies);
    
    if ($Total_Smilies > 0)
    {
    	while ($emo = $db->fetch_array($smilies))
    	{
    		if ($vbulletin->options['shout_smilies_show'] > 0)
    		{ 
    			$Smilie_Cache[] = $emo;
    		}
    		else
    		{
    			$Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$emo['smilietext'].'\')"><img src="'.$emo['smiliepath'].'" alt="'.$emo['title'].'" border="0" /></a> ';
    		}
    	}
    
    	if ($vbulletin->options['shout_smilies_show'] > $Total_Smilies)
    	{
    		$vbulletin->options['shout_smilies_show'] = $Total_Smilies;
    	}
    
    	if ($vbulletin->options['shout_smilies_show'] > 0)
    	{
    		while ($Used < $vbulletin->options['shout_smilies_show'])
    		{
    			$GetEmo = $Total_Smilies;
    			$GetEmo = rand(0, $GetEmo);
    
    			if (!in_array($GetEmo, $UsedArr) && $Smilie_Cache[$GetEmo])
    			{
    				$Used++;
    				$GetEmo = $Smilie_Cache[$GetEmo];
    				$Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')"><img src="'.$GetEmo['smiliepath'].'" alt="'.$GetEmo['title'].'" border="0" /></a> ';
    			}
    		}
    	}
    }
    else
    {
    	$Smilie_Build = 'لا يوجد إبتسامات';
    }
    
    $Options_DropDown         = array(); // Items included will be parsed to create drop down menus
    $DropDowns                = array(); // Completed constructed drop down menus
    
    $Options_DropDown['font_selector']    = array('إفتراضي', 'Arial', 'Arial Black', 'Arial Narrow', 'Book Antiqua', 'Century Gothic', 'Comic Sans MS', 'Courier New', 'Fixedsys', 'Franklin Gothic Medium', 'Garamond', 'Georgia', 'Impact', 'Lucida Console', 'Lucida Sans Unicode', 'Microsoft Sans Serif', 'Palatino Linotype', 'System', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana');
    $Options_DropDown['color_selector']   = array();
    $Options_DropDown['color_selector'][] = 'Default';
    
    $hex   = array();
    $hex[] = '0';
    $hex[] = '3';
    $hex[] = '6';
    $hex[] = '9';
    $hex[] = 'C';
    $hex[] = 'F';
    
    for ($a = 0; $a < 6; $a++)
    {
    	for ($b = 0; $b < 6; $b++)
    	{
    		for ($c = 0; $c < 6; $c++)
    		{
    			$Options_DropDown['color_selector'][] = '#' . $hex[$a].$hex[$a].$hex[$b].$hex[$b].$hex[$c].$hex[$c];
    		}
    	}
    }
    
    if (is_array($Options_DropDown))
    {
    	foreach ($Options_DropDown as $Menu => $Options)
    	{
    		$DropDowns[$Menu] = '';
    		if (is_array($Options))
    		{
    			foreach ($Options as $Selection)
    			{
    				if (preg_match("#^\#([a-z0-9]+)$#i", $Selection))
    				{
    					$Extra = ' style="color:'.$Selection.';"';
    				}
    				else
    				{
    					$Extra = '';
    				}
    
    				if ($Selection == 'Default')
    				{
    					$Text = (($Menu == 'color_selector') ? 'اللون' : 'نوع الخط') . ' [إفتراضي]';
    				}
    				else
    				{
    					$Text = $Selection;
    				}
    
    				$DropDowns[$Menu] .= '<option value="'.$Selection.'"'.$Extra.'>'.$Text.'</option>' . "\n";
    			}
    		}
    	}
    }
    
    if ($vbulletin->options['shout_banned_perms'] == 2 && isBanned($vbulletin->userinfo))
    {
    	$Shoutox = '';
    }
    else
    {
    	eval('$Shoutbox = "' . fetch_template('forumhome_vbshout') . '";');
    }
    
    	switch ($vbulletin->options['shout_position'])
    	{
    		case 1:
    			$Position = '<!-- what\'s going on box -->';
    		break;
    
    		case 2:
    			$Position = '<!-- end what\'s going on box -->';
    		break;
    
    		case 4:
    			$Position = '<!-- main -->';
    		break;
    
    		default:
    			$Position = '$navbar';
    		break;
    	}
    
    }
    تاكد انك تستخدم الخط الساخن حتى لا تتسبب في مشكله ... هذا الشرح خاص بالخط الساخن أو vbshout ... تحياتي .

     
  3. #3
    برووق is on a distinguished road
    تاريخ التسجيل
    23 / 09 / 2005
    الدولة
    مجهولة
    المشاركات
    15
    معدل تقييم المستوى
    243

    افتراضي رد: ابو راشد ممكن لوسمحت تحل لى المشكله

    مشكور اخي بو راشد على الشكر


    بس ما ضبط معي

    انا برفق ملف المحادثه لوسمحت تعدل لى الملف وتشوف لى حل

    شاكرا تعاونك معنا
    الملفات المرفقة

     
  4. #4
    المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute المودة has a reputation beyond repute الصورة الرمزية المودة
    تاريخ التسجيل
    17 / 08 / 2004
    العمر
    32
    المشاركات
    20,806
    معدل تقييم المستوى
    26158

    افتراضي رد: ابو راشد ممكن لوسمحت تحل لى المشكله

    هذه النسخه غير جيده ... جرب هذي :

    http://www.mwadah.com/showthread.php?t=2887

    تحياتي .

     
  5. #5
    برووق is on a distinguished road
    تاريخ التسجيل
    23 / 09 / 2005
    الدولة
    مجهولة
    المشاركات
    15
    معدل تقييم المستوى
    243

    افتراضي رد: ابو راشد ممكن لوسمحت تحل لى المشكله

    طلع معي بس فيه الابتسامات تطلع ولما اضغط عليها

    تطلع صفحة الابتسامات وما تضيف

     

 
+ الرد على الموضوع

معلومات الموضوع

الأعضاء الذين يشاهدون هذا الموضوع

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

     

مواقع النشر (المفضلة)

مواقع النشر (المفضلة)

ضوابط المشاركة

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