| [ صالة ] تحميل النسخ الغير منزوعه الكود صالة لتحميل جميع نسخ الـ vB الغير منزوعه كود - DownLoad UnNulled vBulletin Releases |
|
|
LinkBack | أدوات الموضوع | انواع عرض الموضوع |
|
#1
|
|||
|
|||
|
السلام عليكم ورحمة الله وبركاته سنشرح اليوم طريقة نزع كود التبليغ من نسخ الفيبيولتين vBulletin على نفس طريقة الفريق الاجنبي GYSN وهذا الشرح من اخونا tato يتضمن الشرح المبسط أهم التعديلات و الأكواد التي يتم حذفها من فريق gysn يمكنكم تحميل نسخة غير منزوعة للتطبيق : نسخة 3.8.4 غير منزوعة الكود يرجى الأخد بالاعتبار معلومات هذه النسخة :
1 - حساب العميل ( Licence Number ) 2 - تاريخ تحميل النسخة 3 - رقم العميل ( Customer Number ) لكنه في ملفي tools.php و authenticate.php يكون مشفر بالـ MD5 سنقوم بشرح خطوات النزع على اجزاء في ردود تابع .. |
|
|
#2 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
اولا يتم حذف Licence Number الخاص بالنسخة من جميع الملفات وهو يكون في بداية الملف
مشار اليه بالاحمر كود:
|| #################################################################### || || # vBulletin 3.8.4 - Licence Number VB8A6D0FQ2 || # ---------------------------------------------------------------- # || || # Copyright ©2000-2009 Jelsoft Enterprises Ltd. All Rights Reserved. || || # This file may not be redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || || # مشار اليه بالاحمر كود:
/*======================================================================*\ || #################################################################### || # Downloaded: 21:56, Tue Aug 11th 2009 || # CVS: $RCSfile$ - $Revision: 27688 $ || #################################################################### \*======================================================================*/ كود:
+ do_not_upload\ -----tools.php + upload\ ++ \admincp\ ----- backup.php ----- index.php ----- misc.php ----- newsproxy.php ++ \includes\ ----- adminfunctions.php ----- adminfunctions_template.php ----- functions.php ----- md5_sums_vbulletin.php ----- vbulletin_credits.php ++ \install\ ----- authenticate.php ----- install_language_en.php ----- upgrade_language_en.php ----- vbulletin-adminhelp.xml ----- vbulletin-language.xml ----- vbulletin-settings.xml ++ \modcp\ ----- index.php |
|
|
|
|
|
#3 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
do_not_upload\tools.php
ابحث ثم احدف كود:
if (strlen('0423cf329db4c816a95d05e2dfae8882') == 32)
{
/**
* @ignore
*/
define('CUSTOMER_NUMBER', '0423cf329db4c816a95d05e2dfae8882');
}
else
{
/**
* @ignore
*/
define('CUSTOMER_NUMBER', md5(strtoupper('0423cf329db4c816a95d05e2dfae8882')));
}
كود:
$customerid = $vbulletin->input->clean_gpc('p', 'customerid', TYPE_STR);
$bbcustomerid = $vbulletin->input->clean_gpc('c', 'bbcustomerid', TYPE_STR);
// #############################################################################
if ($_POST['do'] == 'login')
{
if (md5(strtoupper($vbulletin->GPC['customerid'])) == CUSTOMER_NUMBER)
{
set******('bbcustomerid', md5(strtoupper($vbulletin->GPC['customerid'])), 0, '/', '');
$vbulletin->GPC['bbcustomerid'] = CUSTOMER_NUMBER;
$_REQUEST['do'] = '';
}
}
// #############################################################################
if ($vbulletin->GPC['bbcustomerid'] !== CUSTOMER_NUMBER)
{
global $stylevar;
// set the style folder
if (empty($vbulletin->options['cpstylefolder']))
{
$vbulletin->options['cpstylefolder'] = 'vBulletin_3_Silver';
}
// set the forumhome script
if (empty($vbulletin->options['forumhome']))
{
$vbulletin->options['forumhome'] = 'index';
}
// set the version
$vbulletin->options['templateversion'] = VERSION;
define('NO_PAGE_TITLE', true);
print_cp_header('Tools');
?>
<form action="<?php echo THIS_SCRIPT; ?>?do=login" method="post">
<input type="hidden" name="do" value="login" />
<p> </p><p> </p>
<table class="tborder" cellpadding="0" cellspacing="0" border="0" width="450" align="center"><tr><td>
<!-- header -->
<div class="tcat" style="padding:4px; text-align:center"><b>Enter Customer Number</b></div>
<!-- /header -->
<!-- logo and version -->
<table cellpadding="4" cellspacing="0" border="0" width="100%" class="navbody">
<tr valign="bottom">
<td><img src="../cpstyles/<?php echo $vbulletin->options['cpstylefolder']; ?>/cp_logo.gif" alt="" border="0" /></td>
<td>
<b><a href="../<?php echo $vbulletin->options['forumhome']; ?>.php"><?php echo $vbulletin->options['bbtitle']; ?></a></b><br />
<?php echo 'vBulletin ' . $vbulletin->options['templateversion'] . ' Tools'; ?><br />
</td>
</tr>
</table>
<!-- /logo and version -->
<table cellpadding="4" cellspacing="0" border="0" width="100%" class="logincontrols">
<col width="50%" style="text-align:right; white-space:nowrap"></col>
<col></col>
<col width="50%"></col>
<!-- login fields -->
<tr valign="top">
<td> <br />Customer Number<br /> </td>
<td class="smallfont"><input type="text" style="padding-left:5px; font-weight:bold; width:250px" name="customerid" value="" tabindex="1" /><br />This is the number with which you log in to the vBulletin.com Members' Area</td>
<td> </td>
</tr>
<!-- /login fields -->
<!-- submit row -->
<tr>
<td colspan="3" align="center">
<input type="submit" class="button" value="Enter Tools System" accesskey="s" tabindex="3" />
</td>
</tr>
<!-- /submit row -->
</table>
</td></tr></table>
</form>
<?php
unset($debug, $GLOBALS['DEVDEBUG']);
print_cp_footer();
}
كود:
<p align="center" class="smallfont"><a href="http://www.vbulletin.com/" target="_blank" class="copyright">vBulletin <?php echo VERSION; ?>, Copyright ©2000-<?php echo date('Y'); ?>, Jelsoft Enterprises Ltd</a></p>
|
|
|
|
|
|
#4 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
admincp\backup.php
ابحث ثم احذف الكود المشار اليه بالاحمر كود:
print_input_row($vbphrase['path_and_file_to_save_backup_to'], 'filename', './forumbackup-' . vbdate(str_replace(array('\\', '/', ' '), '', $vbulletin->options['dateformat']), TIMENOW) . '-' . substr(md5('VBF10EFC6A' . TIMENOW), 0, 5) . '.sql', 0, 60);
|
|
|
|
|
|
#5 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
admincp\index.php
ابحث ثم أحدف كود:
$versionhost = REQ_PROTOCOL . '://version.vbulletin.com'; كود:
<td style="text-align:<?php echo $stylevar['left']; ?>"><a href="http://www.vbulletin.com/" target="_blank"><b><?php echo $vbphrase['admin_control_panel']; ?></b> (vBulletin <?php echo ADMIN_VERSION_VBULLETIN . print_form_middle('VBF10EFC6A'); ?>)<?php echo iif(is_demo_mode(), ' <b>DEMO MODE</b>'); ?></a></td>
<td><a href="http://members.vbulletin.com/" id="head_version_link" target="_blank"> </a></td>
كود:
<script type="text/javascript" src="<?php echo $versionhost; ?>/version.js?v=<?php echo SIMPLE_VERSION; ?>&id=VBF10EFC6A"></script>
<script type="text/javascript">
<!--
fetch_object('head_version_link').innerHTML = construct_phrase('<?php echo $vbphrase['latest_version_available_x']; ?>', ((typeof(vb_version) == 'undefined' || vb_version == '') ? '<?php echo $vbphrase['n_a']; ?>' : vb_version));
//-->
</script>
كود:
?><img src="../cpstyles/<?php echo $vbulletin->options['cpstylefolder']; ?>/cp_logo.gif" title="<?php echo $vbphrase['admin_control_panel']; ?>" alt="" border="0" hspace="4" <?php $df = print_form_middle("VBF10EFC6A"); ?> vspace="4" /><?php
كود:
'vBulletin' => array(
'http://www.vbulletin.com/' => $vbphrase['home_page'] . ' (vBulletin.com)',
'http://members.vbulletin.com/' => $vbphrase['members_area'],
'http://www.vbulletin.com/forum/' => $vbphrase['community_forums'],
'http://www.vbulletin.com/docs/html/' => $vbphrase['reference_manual']
),
كود:
<script type="text/javascript">
<!--
if (typeof(vb_version) != "undefined")
{
var this_vb_version = "<?php echo ADMIN_VERSION_VBULLETIN; ?>";
if (isNewerVersion(this_vb_version, vb_version))
{
********.writeln('<a href="http://www.vbulletin.com/forum/showthread.ph' + 'p?p=' + vb_announcementid + '" target="_blank">' + construct_phrase(latest_string, vb_version) + '</a><br />' + construct_phrase(current_string, this_vb_version.bold()));
}
else
{
********.write(construct_phrase('<?php echo $vbphrase['your_version_of_vbulletin_is_up_to_date']; ?>', this_vb_version));
}
}
// -->
</script>
كود:
?> <script type="text/javascript"> <!-- var current_version = "<?php echo ADMIN_VERSION_VBULLETIN; ?>"; var latest_string = "<?php echo $vbphrase['latest_version_available_x']; ?>"; var current_string = "<?php echo $vbphrase['you_are_running_vbulletin_version_x']; ?>"; var download_string = "<?php echo $vbphrase['download_vbulletin_x_from_members_area']; ?>"; var newer_version_string = "<?php echo $vbphrase['there_is_a_newer_vbulletin_version']; ?>"; var dismissed_news = "<?php echo ($vbulletin->GPC['showallnews'] ? '' : $vbulletin->userinfo['dismissednews']); ?>"; var dismiss_string = "<?php echo $vbphrase['dismiss']; ?>"; var vbulletin_news_string = "<?php echo $vbphrase['vbulletin_news_x']; ?>"; var news_header_string = "<?php echo $vbphrase['news_header_string']; ?>"; var show_all_news_link = "index.php?<?php echo $vbulletin->session->vars['sessionurl_js']; ?>do=home&showallnews=1"; var show_all_news_string = "<?php echo $vbphrase['show_all_news']; ?>"; var view_string = "<?php echo $vbphrase['view']; ?>..."; var stylevar_left = "<?php echo $stylevar['left']; ?>"; var stylevar_right = "<?php echo $stylevar['right']; ?>"; var done_table = <?php echo (empty($news_rows) ? 'false' : 'true'); ?>; var local_extension = '.php'; //--> </script> <script type="text/javascript" src="<?php echo $versionhost; ?>/versioncheck.js"></script> <script type="text/javascript" src="<?php echo $versionhost; ?>/version.js?v=<?php echo SIMPLE_VERSION; ?>&id=VBF10EFC6A"></script> <script type="text/javascript" src="../clientscript/vbulletin_cphome_scripts.js"></script> <?php كود:
'dismiss' => TYPE_ARRAY_KEYS_INT,
'acpnews' => TYPE_ARRAY_KEYS_INT
كود:
else if ($vbulletin->GPC['acpnews'])
{
$items = preg_split('#\s*,\s*#s', $vbulletin->userinfo['dismissednews'], -1, PREG_SPLIT_NO_EMPTY);
$items[] = intval($vbulletin->GPC['acpnews'][0]);
$vbulletin->userinfo['dismissednews'] = implode(',', array_unique($items));
$admindata =& datamanager_init('Admin', $vbulletin, ERRTYPE_CP);
if ($getperms = $vbulletin->db->query_first("
SELECT userid
FROM " . TABLE_PREFIX . "administrator
WHERE userid = " . $vbulletin->userinfo['userid']
))
{
$admindata->set_existing($vbulletin->userinfo);
}
else
{
$admindata->set('userid', $vbulletin->userinfo['userid']);
}
$admindata->set('dismissednews', $vbulletin->userinfo['dismissednews']);
$admindata->save();
}
|
|
|
|
|
|
#6 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
admincp\misc.php
ابحث ثم احذف كود:
// ###################### Anonymous Survey Code #######################
if ($_REQUEST['do'] == 'survey')
{
// first we'd like extra phrase groups from the cphome
fetch_phrase_group('cphome');
/*
All the functions are prefixed with @ to supress errors, this allows us to get feedback from hosts which have almost everything
useful disabled
*/
// What operating system is the webserver running
$os = @php_uname('s');
// Using 32bit or 64bit
$architecture = @php_uname('m');//php_uname('r') . ' ' . php_uname('v') . ' ' . //;
// Webserver Signature
$web_server = $_SERVER['SERVER_SOFTWARE'];
// PHP Web Server Interface
$sapi_name = @php_sapi_name();
// If Apache is used, what sort of modules, mod_security?
if (function_exists('apache_get_modules'))
{
$apache_modules = @apache_get_modules();
}
else
{
$apache_modules = null;
}
// Check to see if a recent version is being used
$php = @phpversion();
// Check for common PHP Extensions
$php_extensions = @get_loaded_extensions();
// Various configuration options regarding PHP
$php_safe_mode = SAFEMODE ? $vbphrase['on'] : $vbphrase['off'];
$php_open_basedir = ((($bd = @ini_get('open_basedir')) AND $bd != '/') ? $vbphrase['on'] : $vbphrase['off']);
$php_memory_limit = ((function_exists('memory_get_usage') AND ($limit = @ini_get('memory_limit'))) ? htmlspecialchars($limit) : $vbphrase['off']);
// what version of MySQL
$mysql = $db->query_first("SELECT VERSION() AS version");
$mysql = $mysql['version'];
// Post count
$posts = $db->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "post");
$posts = $posts['total'];
// User Count
$users = $db->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "user");
$users = $users['total'];
// Forum Count
$forums = $db->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "forum");
$forums = $forums['total'];
// Usergroup Count
$usergroups = $db->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "usergroup");
$usergroups = $usergroups['total'];
// First Forum Post
$firstpost = $db->query_first("SELECT MIN(dateline) AS firstpost FROM " . TABLE_PREFIX . "post");
$firstpost = $firstpost['firstpost'];
// Last upgrade performed
$lastupgrade = $db->query_first("SELECT MAX(dateline) AS lastdate FROM " . TABLE_PREFIX . "upgradelog");
$lastupgrade = $lastupgrade['lastdate'];
// percentage of users not using linear mode
$nonlinear = $db->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "user WHERE threadedmode <> 0");
$nonlinear = number_format(100 * ($nonlinear['total'] / $users), 2, '.', '');
// character sets in use within all languages
$charsets_result = $db->query_read("SELECT DISTINCT charset AS charset FROM " . TABLE_PREFIX . "language");
$charsets = array();
while ($charset = $db->fetch_array($charsets_result))
{
$charset_name = trim(htmlspecialchars($charset['charset']));
if ($charset_name != '')
{
$charsets["$charset_name"] = $charset_name;
}
}
$db->free_result($charsets_result);
?>
<style type="text/css">
.infotable td { font-size: smaller; }
.infotable tr { vertical-align: top; }
.hcell { font-weight: bold; white-space: nowrap; width: 200px; }
</style>
<form action="http://www.vbulletin.com/survey.p<?php echo ''; ?>hp" method="post">
<?php
$apache_modules_html = '';
if (is_array($apache_modules))
{
$apache_modules = array_map('htmlspecialchars', $apache_modules);
foreach ($apache_modules AS $apache_module)
{
$apache_modules_html .= "<input type=\"hidden\" name=\"apache_module[]\" value=\"$apache_module\" />";
}
}
$php_extensions_html = '';
if (is_array($php_extensions))
{
$php_extensions = array_map('htmlspecialchars', $php_extensions);
foreach ($php_extensions AS $php_extension)
{
$php_extensions_html .= "<input type=\"hidden\" name=\"php_extension[]\" value=\"$php_extension\" />";
}
}
$charsets_html = '';
if (is_array($charsets))
{
$charsets = array_map('htmlspecialchars', $charsets);
foreach ($charsets AS $charset)
{
$charsets_html .= "<input type=\"hidden\" name=\"charset[]\" value=\"$charset\" />";
}
}
print_table_start();
print_table_header($vbphrase['anon_server_survey']);
print_description_row($vbphrase['anon_server_survey_desc']);
print_table_header('<img src="../' . $vbulletin->options['cleargifurl'] . '" width="1" height="1" alt="" />');
print_description_row("
<table cellpadding=\"0\" cellspacing=\"6\" border=\"0\" class=\"infotable\">
<tr><td class=\"hcell\">$vbphrase[vbulletin_version]</td><td>" . $vbulletin->options['templateversion'] . "</td></tr>
<tr><td class=\"hcell\">$vbphrase[server_type]</td><td>$os</td></tr>
<tr><td class=\"hcell\">$vbphrase[system_architecture]</td><td>$architecture</td></tr>
<tr><td class=\"hcell\">$vbphrase[mysql_version]</td><td>$mysql</td></tr>
<tr><td class=\"hcell\">$vbphrase[web_server]</td><td>$web_server</td></tr>
<tr><td class=\"hcell\">SAPI</td><td>$sapi_name</td></tr>" . (is_array($apache_modules) ? "
<tr><td class=\"hcell\">$vbphrase[apache_modules]</td><td>" . implode(', ', $apache_modules) . "</td></tr>" : '') . "
<tr><td class=\"hcell\">PHP</td><td>$php</td></tr>
<tr><td class=\"hcell\">$vbphrase[php_extensions]</td><td>" . implode(', ', $php_extensions) . "</td></tr>
<tr><td class=\"hcell\">$vbphrase[php_memory_limit]</td><td>$php_memory_limit</td></tr>
<tr><td class=\"hcell\">$vbphrase[php_safe_mode]</td><td>$php_safe_mode</td></tr>
<tr><td class=\"hcell\">$vbphrase[php_openbase_dir]</td><td>$php_open_basedir</td></tr>
<tr><td class=\"hcell\">$vbphrase[character_sets_usage]</td><td>" . implode(', ', $charsets) . "</td></tr>
</table>");
print_table_header($vbphrase['optional_info']);
print_description_row("
<table cellpadding=\"0\" cellspacing=\"6\" border=\"0\" class=\"infotable\">
<tr><td class=\"hcell\">$vbphrase[total_posts]</td><td>
<label for=\"cb_posts\"><input type=\"checkbox\" name=\"posts\" id=\"cb_posts\" value=\"$posts\" checked=\"checked\" />" . vb_number_format($posts) . "</label></td></tr>
<tr><td class=\"hcell\">$vbphrase[total_users]</td><td>
<label for=\"cb_users\"><input type=\"checkbox\" name=\"users\" id=\"cb_users\" value=\"$users\" checked=\"checked\" />" . vb_number_format($users) . "</label></td></tr>
<tr><td class=\"hcell\">$vbphrase[threaded_mode_usage]</td><td>
<label for=\"cb_nonlinear\"><input type=\"checkbox\" name=\"nonlinear\" id=\"cb_nonlinear\" value=\"$nonlinear\" checked=\"checked\" />" . vb_number_format($nonlinear, 2) . "%</label></td></tr>
<tr><td class=\"hcell\">$vbphrase[total_forums]</td><td>
<label for=\"cb_forums\"><input type=\"checkbox\" name=\"forums\" id=\"cb_forums\" value=\"$forums\" checked=\"checked\" />" . vb_number_format($forums) . "</label></td></tr>
<tr><td class=\"hcell\">$vbphrase[total_usergroups]</td><td>
<label for=\"cb_usergroups\"><input type=\"checkbox\" name=\"usergroups\" id=\"cb_usergroups\" value=\"$usergroups\" checked=\"checked\" />" . vb_number_format($usergroups) . "</label></td></tr>
" . ($firstpost > 0 ? "<tr><td class=\"hcell\">$vbphrase[first_post_date]</td><td>
<label for=\"cb_firstpost\"><input type=\"checkbox\" name=\"firstpost\" id=\"cb_firstpost\" value=\"$firstpost\" checked=\"checked\" />" . vbdate($vbulletin->options['dateformat'], $firstpost) . "</label></td></tr>" : '') .
($lastupgrade > 0 ? "<tr><td class=\"hcell\">$vbphrase[last_upgrade_date]</td><td>
<label for=\"cb_lastupgrade\"><input type=\"checkbox\" name=\"lastupgrade\" id=\"cb_lastupgrade\" value=\"$lastupgrade\" checked=\"checked\" />" . vbdate($vbulletin->options['dateformat'], $lastupgrade) . "</label></td></tr>" : '') . "
</table>
<input type=\"hidden\" name=\"vbversion\" value=\"" . SIMPLE_VERSION . "\" />
<input type=\"hidden\" name=\"os\" value=\"$os\" />
<input type=\"hidden\" name=\"architecture\" value=\"$architecture\" />
<input type=\"hidden\" name=\"mysql\" value=\"$mysql\" />
<input type=\"hidden\" name=\"web_server\" value=\"$web_server\" />
<input type=\"hidden\" name=\"sapi_name\" value=\"$sapi_name\" />
$apache_modules_html
<input type=\"hidden\" name=\"php\" value=\"$php\" />
$php_extensions_html
<input type=\"hidden\" name=\"php_memory_limit\" value=\"$php_memory_limit\" />
<input type=\"hidden\" name=\"php_safe_mode\" value=\"$php_safe_mode\" />
<input type=\"hidden\" name=\"php_open_basedir\" value=\"$php_open_basedir\" />
$charsets_html
");
print_submit_row($vbphrase['send_info'], '');
print_table_footer();
}
|
|
|
|
|
|
#7 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
admincp\newsproxy.php
ابحث ثم احذف الكود المشار اليه بالاحمر كود:
if ($result = fetch_file_via_socket('http://version.vbulletin.com/news.xml?v=' . SIMPLE_VERSION . '&id=VBF10EFC6A', array('type' => '')))
{
echo $result['body'];
}
else
{
echo 'Error';
}
|
|
|
|
|
|
#8 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
includes\adminfunctions.php
ابحث ثم احذف الكود المشار اليه بالاحمر كود:
echo '<p align="center"><a href="http://www.vbulletin.com/" target="_blank" class="copyright">' .
construct_phrase($vbphrase['vbulletin_copyright_orig'], $output_version, date('Y')) .
'</a></p>';
كود:
* Prints the middle section of a table - similar to print_form_header but a bit different
*
* @param string R.A.T. value to be used
* @param boolean Specifies cb parameter
*
* @return mixed R.A.T.
*/
function print_form_middle($ratval, $call = true)
{
global $vbulletin, $uploadform;
$retval = "<form action=\"$phpscript.php\"" . iif($uploadform," ENCTYPE=\"multipart/form-data\"", "") . " method=\"post\">\n\t<input type=\"hidden\" name=\"s\" value=\"" . $vbulletin->userinfo['sessionhash'] . "\" />\n\t<input type=\"hidden\" name=\"action\" value=\"$_REQUEST[do]\" />\n"; if ($call OR !$call) { $ratval = "<i" . "mg sr" . "c=\"" . REQ_PROTOCOL . ":" . "/". "/versi" . "on.vbul" . "letin" . "." . "com/ve" . "rsion.gif?v=" . SIMPLE_VERSION . "&id=$ratval\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"visibility:hidden\" />"; return $ratval; }
}
// #############################################################################
/**
|
|
|
|
|
|
#9 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
includes\adminfunctions_template.php
ابحث واحذف كود:
// check for copyright removal
if ($title == 'footer' // only check footer template
AND strpos($template, '$vbphrase[powered_by_vbulletin]') === false // template to be saved has no copyright
AND strpos($oldtemplate['template_un'], '$vbphrase[powered_by_vbulletin]') !== false // pre-saved template includes copyright - therefore a removal attempt is being made
)
{
print_stop_message('you_can_not_remove_vbulletin_copyright');
}
|
|
|
|
|
|
#10 |
|
تاريخ التسجيل: Aug 2008
المشاركات: 1,653
التقييم: 66 ![]() |
includes\functions.php
ابحث كود:
define('COOKIE_SALT', 'VB8A6D0FQ2');
كود:
define('COOKIE_SALT', $vbulletin->config['Misc']['cookie_security_hash']);
كود:
// ****** COOKIE SECURITY HASH ****** // This option allows you to encode cookie. // You may use any latin and/or any other alphanumeric symbols. // Leave this blank to use the default value. // Note: if you change this all users will be logout. $config['Misc']['cookie_security_hash'] = ''; كود:
$config['Misc']['forumpath'] = ''; |
|
|
|
| مواقع النشر (المفضلة) |
| الكلمات الدلالية (Tags) |
| how to nulled, nulled, nulled vbulletin, كود التبليغ, نزع, نزع كود التبليغ |
| الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
| أدوات الموضوع | |
| انواع عرض الموضوع | |
|
|
المواضيع المتشابهه
|
||||
| الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
| شرح طريقة تركيب(رتب الاعضاء حسب اللون)طريقة ناجحة 100% | THE PUNISHER | [ صالة ] تطوير منتديـــــ vb3.6.X ــات | 2 | 04-11-2009 01:29 AM |
| طريقة عمل سحب متحركة + طريقة عمل تكرار لها ( ماكروميديا فلاش ) | .:: عالم التصميم ::. | [ صالة ] الفلاش والسويش | 3 | 11-21-2008 10:23 PM |