مساعده : كيف نفصل خاصية التنزيل ..
المشرف: alhitary
قوانين المنتدى
فضلاً قبل وضع أي مشكلة تأكد من استخدام البحث ومن ثم ملء استمارة الدعم إذا لم تجد حلا لمشكلتك.
فضلاً قبل وضع أي مشكلة تأكد من استخدام البحث ومن ثم ملء استمارة الدعم إذا لم تجد حلا لمشكلتك.
?????? : ??? ???? ????? ??????? ..
?????? ????? ....
????? ??? ??? ??? ??? ??????? ??????? ??? .... ??? ???????? ??????? ????? ???????...
????? ???? ???????? :
1- ??? ???? ????? phpbb ????? ???? ????? ???????( downloed) ??? ??????? ????????? ???? ... ?????? ??? ??? ?????? 20 ????? (posts ) ????? ?????? ?????? ?????? ????? ????? downloed .... ?? ?????? ????? ????? ??!!!
2-????? ???????? ???? ?????? ?????? ??? ??????? ?? ???? ????? ????? banned ..
????? ????? ???? ?????? http://www.nextsymbian.com
??????? ?????
** ??? ???? ???? ????? ???? ?????? ?????????? !!
????? ??? ??? ??? ??? ??????? ??????? ??? .... ??? ???????? ??????? ????? ???????...
????? ???? ???????? :
1- ??? ???? ????? phpbb ????? ???? ????? ???????( downloed) ??? ??????? ????????? ???? ... ?????? ??? ??? ?????? 20 ????? (posts ) ????? ?????? ?????? ?????? ????? ????? downloed .... ?? ?????? ????? ????? ??!!!
2-????? ???????? ???? ?????? ?????? ??? ??????? ?? ???? ????? ????? banned ..
????? ????? ???? ?????? http://www.nextsymbian.com
??????? ?????
** ??? ???? ???? ????? ???? ?????? ?????????? !!
???? ??? ?? ??? ?? ???? ?????? ??????? ???? ????
?? ???? ??? ?????
??? ?????? ???? ??????? ???? ?? ???? ?????? ?????? ?????? ??? ??? ????
???? ??????? ???? ??? ??? ??? ???? ?? ????????
?????? ?????? ????? ??? ????? ?????? ?? ???????
??????
?? ???? ??? ?????
??? ?????? ???? ??????? ???? ?? ???? ?????? ?????? ?????? ??? ??? ????
???? ??????? ???? ??? ??? ??? ???? ?? ????????
?????? ?????? ????? ??? ????? ?????? ?? ???????
??????
كود: تحديد الكل
???? ??? db_update.php
??? ???? ?????
--[ Open: admin_board.php ]---------------
(((( ???? ?? ))))
$prune_yes = ( $new['prune_enable'] ) ? "checked=\"checked\"" : "";
$prune_no = ( !$new['prune_enable'] ) ? "checked=\"checked\"" : "";
(((( ???? ???? ))))
// DP - Hack ...
$d_yes = ( $new['allow_download'] ) ? "checked=\"checked\"" : "";
$d_no = ( !$new['allow_download'] ) ? "checked=\"checked\"" : "";
$p_yes = ( $new['allow_pm'] ) ? "checked=\"checked\"" : "";
$p_no = ( !$new['allow_pm'] ) ? "checked=\"checked\"" : "";
// DP - Hack ...
(((( ???? ?? ))))
"L_ENABLE_GZIP" => $lang['Enable_gzip'],
"L_ENABLE_PRUNE" => $lang['Enable_prune'],
(((( ??? ???? ))))
// Start DP Hack ..
"L_DOWNLOAD_MAX" => $lang['download_max'],
"L_DOWNLOAD_MAX_EXPLAIN" => $lang['download_exp'],
"L_DOWNLOAD_AFTER" => $lang['download_after'],
"L_PM_MAX" => $lang['pm_max'],
"L_PM_MAX_EXPLAIN" => $lang['pm_exp'],
"L_PM_AFTER" => $lang['pm_after'],
"L_DP_POSTS" => $lang['dp_posts'],
// END DP Hack ..
(((( ???? ?? ))))
"S_DISABLE_BOARD_YES" => $disable_board_yes,
"S_DISABLE_BOARD_NO" => $disable_board_no,
(((( ??? ???? ))))
// Start DP Hack ...
"D_YES" => $d_yes,
"D_NO" => $d_no,
"P_YES" => $p_yes,
"P_NO" => $p_no,
"D_MAX" => $new['allow_dload_after'],
"P_MAX" => $new['allow_send_pm_after'],
// END DP Hack ...
--[ Open: template/xxxx/admin/board_config_body.tpl ]-------------
(((( ???? ?? ))))
<td class="row1">{L_ENABLE_PRUNE}</td>
<td class="row2">
<input type="radio" name="prune_enable" value="1" {PRUNE_YES} />
{L_YES}
<input type="radio" name="prune_enable" value="0" {PRUNE_NO} />
{L_NO}</td>
</tr>
(((( ??? ???? ))))
<!-- DP Hack -->
<tr>
<td class="row1">{L_DOWNLOAD_MAX}<BR \>
<span class="gensmall">{L_DOWNLOAD_MAX_EXPLAIN}</span>
</td>
<td class="row2">
<input type="radio" name="allow_download" value="1" {D_YES} />{L_YES}
<input type="radio" name="allow_download" value="0" {D_NO} />{L_NO}<BR \>
{L_DOWNLOAD_AFTER} <input type="text" size="5" name="allow_dload_after" value="{D_MAX}"> {L_DP_POSTS}
</td>
</tr>
<tr>
<td class="row1">{L_PM_MAX}<BR \>
<span class="gensmall">{L_PM_MAX_EXPLAIN}</span>
</td>
<td class="row2">
<input type="radio" name="allow_pm" value="1" {P_YES} />{L_YES}
<input type="radio" name="allow_pm" value="0" {P_NO} />{L_NO}<BR \>
{L_PM_AFTER} <input type="text" size="5" name="allow_send_pm_after" value="{P_MAX}"> {L_DP_POSTS}
</td>
</tr>
<!-- DP Hack -->
---[ Open: privmsg.php ]----------------
((( ???? ?? )))
if ( $mode == 'post' )
{
$post_a = $lang['Send_a_new_message'];
((( ??? ???? )))
if ($board_config['allow_pm']) {
if ($board_config['allow_send_pm_after'] > $userdata['user_posts']) {
$die_msg = "???? ??? ??? ????? ???????? ???? $board_config[allow_send_pm_after] ?????? ??? ????? ????? ????";
message_die(GENERAL_MESSAGE,$die_msg);
}
}
((( ???? ?? )))
else if ( $mode == 'reply' )
{
$post_a = $lang['Send_a_reply'];
$mode = 'post';
((( ??? ???? )))
if ($board_config['allow_pm']) {
if ($board_config['allow_send_pm_after'] > $userdata['user_posts']) {
$die_msg = sprintf($lang['user_mh_privmsg'],$board_config['allow_send_pm_after']);
message_die(GENERAL_MESSAGE,$die_msg);
}
}
---[ Open: download.php ]----------------
((( ???? ?? )))
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
((( ??? ???? )))
if ($board_config['allow_download']) {
if ($board_config['allow_dload_after'] > $userdata['user_posts']) {
$die_msg = sprintf($lang['user_mh_down'],$board_config['allow_dload_after']);
message_die(GENERAL_MESSAGE,$die_msg);
}
}
---[ Open Language/lang_arabic/lang_main.php ]--------------
((( ???? ?? )))
//
// That's all Folks!
// -------------------------------------------------
((( ??? ???? )))
// DPM - Hack...
$lang['download_after'] = "??????? ???";
$lang['download_max'] = "???????";
$lang['download_exp'] = "????? ??? ????? ???????? ??? XX ?? ?????? ???????";
$lang['pm_after'] = "????? ??????? ???";
$lang['pm_max'] = "??????? ??????";
$lang['pm_exp'] = "????? ??? ????? ???????? ??? XX ?? ?????? ????? ????? ????";
$lang['dp_posts'] = "??????";
$lang['user_mh_down'] = '???? ??? ??? ????? ???????? ???? %s ?????? ??????? ???????';
$lang['user_mh_privmsg'] = '???? ??? ??? ????? ???????? ???? %s ?????? ??? ????? ????? ????';
// DPM - Hack...
---[ ????? ??????? ]----------------
الموجودون الآن
المتصفحون للمنتدى الآن: DotNetDotCom.org Bot و 22 زائرًا