.:: توحيد مقاسات المواضيع ::.

منتدى خاص للنقاش حول هاكات الجيل الثاني أفكارها، مشاكل تركيبها وكل ماله علاقة بها.

المشرف: alhitary

صورة العضو الرمزية
uae555
عضو متميز
عضو متميز
مشاركات: 305
اشترك في: الأحد مايو 08, 2005 8:11 pm
مكان: uaeuae

مشاركةبواسطة uae555 » الخميس أغسطس 18, 2005 8:33 am

r7aal4ever

???????? ????




صورة العضو الرمزية
liana
عضو جديد
عضو جديد
مشاركات: 34
اشترك في: الجمعة يونيو 24, 2005 4:43 am
اتصال:

مشاركةبواسطة liana » الخميس أغسطس 18, 2005 11:56 am

??????? ??? ???? ?? ?? ????????
? ?? ???? ?? ??? ????? ? ??? ?????
? ?? ??? ?????? ??? ?????? :cry:
http://www.mawlaty.com
اهلاً بكم معنا

صورة

صورة العضو الرمزية
muwa
عضو متميز
عضو متميز
مشاركات: 317
اشترك في: السبت يوليو 09, 2005 1:01 pm
مكان: فلسطين
اتصال:

مشاركةبواسطة muwa » الجمعة أغسطس 19, 2005 1:15 pm

????? ???? ??? ?????

???? ?? .. :wink:

???? ??????
http://www.alnibrass.net

أقوى العروض .. النبراس

Xx JustMe xX
مشرف سابق
مشرف سابق
مشاركات: 1997
اشترك في: الخميس فبراير 20, 2003 6:33 pm
مكان: -- K.S.A --

مشاركةبواسطة Xx JustMe xX » الاثنين أغسطس 22, 2005 8:57 am

?? ???? ?? ??? ????? ? ??? ?????
????? ??

?? ??????? ??????? ????? ?? ??????????????????????????? ???? ???? ?????? ?
# استمارة الدعم الفني
ܔܓ܏ܛܜ قبل أن تصبح مسؤولاً في منتدى .. أرجو الدخول ܔܓ܏ܛܜ

آللهــم اجعـــل القــرآن ربيــع قلوبنــا .. ونــور صدورنــا .. وجــلاء أحزاننــا .. وذهاب همومنــا

صورة

رجاء لا تبحث عن بريدي الخاص فلن أدعم بالماسنجر أو الرسائل الخاصة :idea:

صورة العضو الرمزية
liana
عضو جديد
عضو جديد
مشاركات: 34
اشترك في: الجمعة يونيو 24, 2005 4:43 am
اتصال:

مشاركةبواسطة liana » الاثنين أغسطس 22, 2005 9:08 am

?? ??? ?????? ? ??? ??????? ?????? ????:!:
???
??? ????? ?? ???? ???? ??????...
http://www.mawlaty.com
اهلاً بكم معنا

صورة

Xx JustMe xX
مشرف سابق
مشرف سابق
مشاركات: 1997
اشترك في: الخميس فبراير 20, 2003 6:33 pm
مكان: -- K.S.A --

مشاركةبواسطة Xx JustMe xX » الاثنين أغسطس 22, 2005 9:13 am

???? ??? ????? ??? ????? ??? ??? ???? ????? ???????

????? : Force Word Wrapping

كود: تحديد الكل

#################################################################
## Mod Title: Force Word Wrapping
## Mod Author: TerraFrost (http://www.frostjedi.com/phpbb)
## Mod Version: 1.01
## Mod Releasedate: Mar. 30, 2004
## Mod Description: Word Wrapping is normally something that is transparant,
##                  and goes on, unnoticed, all the time.  As text approaches
##                  the scroll bar, or whatever, word wrapping is what stops
##                  it from going past it.  In short, word wrapping creates
##                  new lines whenever not having a new line would mess things
##                  up.
##
##                  However, traditional word wrapping algorithims rely on
##                  spaces to determine when the new line should occur.  If you
##                  have a string of characters that has no spaces yet still
##                  approaches the scroll bar, you may have a problem.  Indeed,
##                  you may find yourself with everything stretched, horizontoly.
##                  This script attempts to remedy this.
##                  
##                  For support / comments / whatever, visit here:
##                  http://www.frostjedi.com/phpbb/viewforum.php?f=6
##
## Mod Changelog: x.xx: - add ability in admin control panel to alter number of 
##                        chars it takes before a space is added.
##                1.01: - the '\n' character no longer counts towards the eighty
##                        characters that are required before a space is inserted.
##                1.00: - initial release
##
## Installation Level: Easy
## Installation Time: 1 Minutes
## New Features:
##     Force Word Wrapping
##
## Files To Edit: 5
##      includes/bbcode.php
##      includes/topic_review.php
##      privmsg.php
##      viewtopic.php
##      posting.php
##
#################################################################
#

#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php

#
#-----[ FIND ]------------------------------------------
#
?>

#
#-----[	BEFORE, ADD ]-----------------------------------
#
// Force Word Wrapping (by TerraFrost)
function word_wrap_pass($message) {
   $maxChars = 70;
   $curCount = 0;
   $tempText = "";
   $finalText = "";
   $inTag = false;

   for ($num=0;$num<strlen($message);$num++) {
      $curChar = $message{$num};
      if ($curChar == "<") {
         $tempText .= "<";
         $inTag = true;
      } elseif ($inTag && $curChar == ">") {
         $tempText .= ">";
         $inTag = false;
      } elseif ($inTag)
         $tempText .= $curChar;
      elseif ($curChar == " " || $curChar == "\n") {  // at this point, !$inTag is assumed.
         $finalText .= $tempText . " ";
         $tempText = "";
         $curCount = 0;
      } elseif ($curCount >= $maxChars) {
         $finalText .= $tempText . $curChar . " ";
         $tempText = "";
         $curCount = 0;
      } else {
         $tempText .= $curChar;
         $curCount++;
      }
   }

   return $finalText . $tempText;
}

#
#-----[ OPEN ]------------------------------------------
#
includes/topic_review.php

#
#-----[ FIND ]------------------------------------------
#
			if ( $board_config['allow_smilies'] && $row['enable_smilies'] )
			{
				$message = smilies_pass($message);
			}

#
#-----[	AFTER, ADD ]------------------------------------
#
			$message = word_wrap_pass($message);

#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php

#
#-----[ FIND ]------------------------------------------
#
	$message = str_replace("\n", "\n<br />\n", $message);

#
#-----[	AFTER, ADD ]------------------------------------
#
	$message = word_wrap_pass($message);

#
#-----[ OPEN ]------------------------------------------
#
privmsg.php

#
#-----[ FIND ]------------------------------------------
#
	if ( $board_config['allow_smilies'] && $privmsg['privmsgs_enable_smilies'] )
	{
		$private_message = smilies_pass($private_message);
	}

#
#-----[	AFTER, ADD ]------------------------------------
#
	$private_message = word_wrap_pass($private_message);

#
#-----[ FIND ]------------------------------------------
#
		if ( $smilies_on )
		{
			$preview_message = smilies_pass($preview_message);
		}

#
#-----[	AFTER, ADD ]------------------------------------
#
		$preview_message = word_wrap_pass($preview_message);

#
#-----[ OPEN ]------------------------------------------
#
posting.php

#
#-----[ FIND ]------------------------------------------
#
		$preview_message = str_replace("\n", '<br />', $preview_message);

#
#-----[	AFTER, ADD ]------------------------------------
#
		$preview_message = word_wrap_pass($preview_message);

#
#-----[	SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
# استمارة الدعم الفني
ܔܓ܏ܛܜ قبل أن تصبح مسؤولاً في منتدى .. أرجو الدخول ܔܓ܏ܛܜ

آللهــم اجعـــل القــرآن ربيــع قلوبنــا .. ونــور صدورنــا .. وجــلاء أحزاننــا .. وذهاب همومنــا

صورة

رجاء لا تبحث عن بريدي الخاص فلن أدعم بالماسنجر أو الرسائل الخاصة :idea:

صورة العضو الرمزية
liana
عضو جديد
عضو جديد
مشاركات: 34
اشترك في: الجمعة يونيو 24, 2005 4:43 am
اتصال:

مشاركةبواسطة liana » الاثنين أغسطس 22, 2005 9:45 am

??? ???
????? ? ???? ??? ???????..
http://www.mawlaty.com
اهلاً بكم معنا

صورة

Xx JustMe xX
مشرف سابق
مشرف سابق
مشاركات: 1997
اشترك في: الخميس فبراير 20, 2003 6:33 pm
مكان: -- K.S.A --

مشاركةبواسطة Xx JustMe xX » الاثنين أغسطس 22, 2005 10:12 am

??? ??? ?????? :)
# استمارة الدعم الفني
ܔܓ܏ܛܜ قبل أن تصبح مسؤولاً في منتدى .. أرجو الدخول ܔܓ܏ܛܜ

آللهــم اجعـــل القــرآن ربيــع قلوبنــا .. ونــور صدورنــا .. وجــلاء أحزاننــا .. وذهاب همومنــا

صورة

رجاء لا تبحث عن بريدي الخاص فلن أدعم بالماسنجر أو الرسائل الخاصة :idea:

صورة العضو الرمزية
lieil
عضو جديد
عضو جديد
مشاركات: 13
اشترك في: السبت مايو 06, 2006 9:26 pm

مشاركةبواسطة lieil » الجمعة يوليو 28, 2006 9:03 pm

???? ??? ????? ??? ????? ??? ??? ???? ????? ???????

????? : Force Word Wrapping


???:
#################################################################
## Mod Title: Force Word Wrapping
## Mod Author: TerraFrost (http://www.frostjedi.com/phpbb)
## Mod Version: 1.01
## Mod Releasedate: Mar. 30, 2004
## Mod Description: Word Wrapping is normally something that is transparant,
## and goes on, unnoticed, all the time. As text approaches
## the scroll bar, or whatever, word wrapping is what stops
## it from going past it. In short, word wrapping creates
## new lines whenever not having a new line would mess things
## up.
##
## However, traditional word wrapping algorithims rely on
## spaces to determine when the new line should occur. If you
## have a string of characters that has no spaces yet still
## approaches the scroll bar, you may have a problem. Indeed,
## you may find yourself with everything stretched, horizontoly.
## This script attempts to remedy this.
##
## For support / comments / whatever, visit here:
## http://www.frostjedi.com/phpbb/viewforum.php?f=6
##
## Mod Changelog: x.xx: - add ability in admin control panel to alter number of
## chars it takes before a space is added.
## 1.01: - the '\n' character no longer counts towards the eighty
## characters that are required before a space is inserted.
## 1.00: - initial release
##
## Installation Level: Easy
## Installation Time: 1 Minutes
## New Features:
## Force Word Wrapping
##
## Files To Edit: 5
## includes/bbcode.php
## includes/topic_review.php
## privmsg.php
## viewtopic.php
## posting.php
##
#################################################################
#

#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php

#
#-----[ FIND ]------------------------------------------
#
?>

#
#-----[ BEFORE, ADD ]-----------------------------------
#
// Force Word Wrapping (by TerraFrost)
function word_wrap_pass($message) {
$maxChars = 70;
$curCount = 0;
$tempText = "";
$finalText = "";
$inTag = false;

for ($num=0;$num<strlen($message);$num++) {
$curChar = $message{$num};
if ($curChar == "<") {
$tempText .= "<";
$inTag = true;
} elseif ($inTag && $curChar == ">") {
$tempText .= ">";
$inTag = false;
} elseif ($inTag)
$tempText .= $curChar;
elseif ($curChar == " " || $curChar == "\n") { // at this point, !$inTag is assumed.
$finalText .= $tempText . " ";
$tempText = "";
$curCount = 0;
} elseif ($curCount >= $maxChars) {
$finalText .= $tempText . $curChar . " ";
$tempText = "";
$curCount = 0;
} else {
$tempText .= $curChar;
$curCount++;
}
}

return $finalText . $tempText;
}

#
#-----[ OPEN ]------------------------------------------
#
includes/topic_review.php

#
#-----[ FIND ]------------------------------------------
#
if ( $board_config['allow_smilies'] && $row['enable_smilies'] )
{
$message = smilies_pass($message);
}

#
#-----[ AFTER, ADD ]------------------------------------
#
$message = word_wrap_pass($message);

#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php

#
#-----[ FIND ]------------------------------------------
#
$message = str_replace("\n", "\n<br />\n", $message);

#
#-----[ AFTER, ADD ]------------------------------------
#
$message = word_wrap_pass($message);

#
#-----[ OPEN ]------------------------------------------
#
privmsg.php

#
#-----[ FIND ]------------------------------------------
#
if ( $board_config['allow_smilies'] && $privmsg['privmsgs_enable_smilies'] )
{
$private_message = smilies_pass($private_message);
}

#
#-----[ AFTER, ADD ]------------------------------------
#
$private_message = word_wrap_pass($private_message);

#
#-----[ FIND ]------------------------------------------
#
if ( $smilies_on )
{
$preview_message = smilies_pass($preview_message);
}

#
#-----[ AFTER, ADD ]------------------------------------
#
$preview_message = word_wrap_pass($preview_message);

#
#-----[ OPEN ]------------------------------------------
#
posting.php

#
#-----[ FIND ]------------------------------------------
#
$preview_message = str_replace("\n", '<br />', $preview_message);

#
#-----[ AFTER, ADD ]------------------------------------
#
$preview_message = word_wrap_pass($preview_message);

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM


???? ???? ??? ????? ?? ??????? ???

????? ????? ???? ????? ???? ??? ???????

Fatal error: Cannot redeclare word_wrap_pass() (previously declared in /home/lieilne/public_html/phpbb2/includes/bbcode.php:1239) in /home/lieilne/public_html/phpbb2/includes/bbcode.php on line 1274
مازلت في بداية المشوار ونصائحكم تهمني
http://www.lieil.com/montda

صورة العضو الرمزية
lieil
عضو جديد
عضو جديد
مشاركات: 13
اشترك في: السبت مايو 06, 2006 9:26 pm

مشاركةبواسطة lieil » الأربعاء أغسطس 02, 2006 8:14 pm

?? ?? ???? ?? ???? ????? ??? ???? ????
مازلت في بداية المشوار ونصائحكم تهمني
http://www.lieil.com/montda

صورة العضو الرمزية
momo2020
عضو فعال
عضو فعال
مشاركات: 625
اشترك في: الأربعاء ديسمبر 21, 2005 3:08 am
مكان: مصـــ ام الدنيا ـــر
اتصال:

مشاركةبواسطة momo2020 » الأربعاء أغسطس 02, 2006 8:37 pm

?????? ?????

?? ??? ?????? ????? ?? ??? ??? ?? ???????

???? ??? ?? ??????? ?????? :P
كلمتان خفيفتان على اللسان ثقيلتان في الميزان حبيبتان الى الرحمن .. سبحان الله وبحمده سبحان الله العظيم .

:P هـــلا

صورة العضو الرمزية
Eng.Masry
عضو جديد
عضو جديد
مشاركات: 64
اشترك في: الأربعاء أغسطس 09, 2006 3:51 am
مكان: جمهورية مصر العربية
اتصال:

مشاركةبواسطة Eng.Masry » الاثنين سبتمبر 18, 2006 7:45 am

??? ?????? ?????? ??? ?????? ???? ?????? ?? ????? ??? ??? ??? ????? ?? ????? ??????? ????? ?? ?????????? ?????? ?????? ??? ?????? ???? ?????? ?? ????? ??? ??? ??? ????? ?? ????? ??????? ????? ?? ???????
PHPBB is the Best

صورة العضو الرمزية
arabgb
عضو جديد
عضو جديد
مشاركات: 4
اشترك في: الاثنين أغسطس 14, 2006 3:29 pm

مشاركةبواسطة arabgb » الثلاثاء سبتمبر 19, 2006 5:40 am

????? ??,, ?????? ??? ????

صورة العضو الرمزية
almohsin
عضو متميز
عضو متميز
مشاركات: 213
اشترك في: الخميس إبريل 14, 2005 6:00 am

مشاركةبواسطة almohsin » الأحد أكتوبر 15, 2006 10:37 am

????? ???? ???? ???? ??? ??? ??????
سلام ومحبة لجميع الطيبين


العودة إلى ”[ ×.2.0 ] الهاكات“

الموجودون الآن

المتصفحون للمنتدى الآن: Bing [Bot] وزائران