ANTICHAT.XYZ    VIDEO.ANTICHAT.XYZ    НОВЫЕ СООБЩЕНИЯ    ФОРУМ  
Баннер 1   Баннер 2
Antichat снова доступен.
Форум Antichat (Античат) возвращается и снова открыт для пользователей. Здесь обсуждаются безопасность, программирование, технологии и многое другое. Сообщество снова собирается вместе.
Новый адрес: forum.antichat.xyz
Вернуться   Форум АНТИЧАТ > Безопасность и Уязвимости > Уязвимости > Форумы
   
Ответ
 
Опции темы Поиск в этой теме Опции просмотра

Делаем анонимный форум vBulletin [3.6.8]
  #1  
Старый 06.05.2010, 22:38
Аватар для -Gory King-
-Gory King-
Постоянный
Регистрация: 26.06.2009
Сообщений: 569
Провел на форуме:
2453356

Репутация: 50


Отправить сообщение для -Gory King- с помощью ICQ
Post Делаем анонимный форум vBulletin [3.6.8]

Делаем анонимный форум vBulletin [3.6.8]


По многочисленным просьбам, решил в vBulletin полностью отключить ведение логов IP адресов, и сразу попутно писать эту статью

Эта статья на примере vBulletin 3.6.8, по этому если у вас версия другая (а я уверен), то в ней могут быть новые файлы, которые ведут дополнительную запись в БД, в них уже придётся вам самим исправлять.

А я на примере 3.6.8, начну:

1.

Открываем файл /register.php
Ищем строку:
Код:
// register IP address
$userdata->set('ipaddress', IPADDRESS);
и заменяем на:
Код:
// register IP address
$userdata->set('ipaddress', '');
Дальше там же ищем:

Код:
$ipaddress = IPADDRESS;
eval(fetch_email_phrases('newuser', 0));
и заменяем на:
Код:
$ipaddress = '';
eval(fetch_email_phrases('newuser', 0));

2.
Открываем файл /inlinemod.php
Ищем строку:

Код:
    /*insert query*/
    $db->query_write("
        REPLACE INTO " . TABLE_PREFIX . "search (userid, showposts, ipaddress, personal, forumchoice, sortby, sortorder, searchtime, orderedids, announceids, dateline, displayterms, searchhash)
        VALUES (" . $vbulletin->userinfo['userid'] . ", 0, '" . $db->escape_string(IPADDRESS) . "', 1, '', '', 'DESC', '', '" . $db->escape_string($threadids) . "', '', " . TIMENOW . ", '" . $db->escape_string(serialize($display)) . "', '')
    ");
и заменяем на:
Код:
    /*insert query*/
    $db->query_write("
        REPLACE INTO " . TABLE_PREFIX . "search (userid, showposts, ipaddress, personal, forumchoice, sortby, sortorder, searchtime, orderedids, announceids, dateline, displayterms, searchhash)
        VALUES (" . $vbulletin->userinfo['userid'] . ", 0, '" . $db->escape_string('') . "', 1, '', '', 'DESC', '', '" . $db->escape_string($threadids) . "', '', " . TIMENOW . ", '" . $db->escape_string(serialize($display)) . "', '')
    ");
Дальше там же ищем:

Код:
    /*insert query*/
    $db->query_write("
        REPLACE INTO " . TABLE_PREFIX . "search (userid, showposts, ipaddress, personal, forumchoice, sortby, sortorder, searchtime, orderedids, announceids, dateline, displayterms, searchhash)
        VALUES (" . $vbulletin->userinfo['userid'] . ", 1, '" . $db->escape_string(IPADDRESS) . "', 1, '', '', 'DESC', '', '" . $db->escape_string($postids) . "', '', " . TIMENOW . ", '" . $db->escape_string(serialize($display)) . "', '')
    ");
и заменяем на:

Код:
    /*insert query*/
    $db->query_write("
        REPLACE INTO " . TABLE_PREFIX . "search (userid, showposts, ipaddress, personal, forumchoice, sortby, sortorder, searchtime, orderedids, announceids, dateline, displayterms, searchhash)
        VALUES (" . $vbulletin->userinfo['userid'] . ", 1, '" . $db->escape_string('') . "', 1, '', '', 'DESC', '', '" . $db->escape_string($postids) . "', '', " . TIMENOW . ", '" . $db->escape_string(serialize($display)) . "', '')
    ");
3.
Открываем файл /online.php
Ищем строку:

Код:
    $userinfo["{$vbulletin->userinfo['userid']}"]['location'] = '/online.php';
    $userinfo["{$vbulletin->userinfo['userid']}"]['host'] = IPADDRESS;
    $userinfo["{$vbulletin->userinfo['userid']}"]['lastactivity'] = TIMENOW;
и заменяем на:

Код:
    $userinfo["{$vbulletin->userinfo['userid']}"]['location'] = '/online.php';
    $userinfo["{$vbulletin->userinfo['userid']}"]['host'] = '';
    $userinfo["{$vbulletin->userinfo['userid']}"]['lastactivity'] = TIMENOW;
4.
Открываем файл /search.php
Ищем строку:

Код:
    if ($prevsearch = $db->query_first("
        SELECT searchid, dateline
        FROM " . TABLE_PREFIX . "search AS search
        WHERE " . iif(!$vbulletin->userinfo['userid'], "ipaddress ='" . $db->escape_string(IPADDRESS) . "'", "userid = " . $vbulletin->userinfo['userid']) . "
        ORDER BY dateline DESC LIMIT 1
    "))
и заменяем на:

Код:
    if ($prevsearch = $db->query_first("
        SELECT searchid, dateline
        FROM " . TABLE_PREFIX . "search AS search
        WHERE " . iif(!$vbulletin->userinfo['userid'], "ipaddress ='" . $db->escape_string('') . "'", "userid = " . $vbulletin->userinfo['userid']) . "
        ORDER BY dateline DESC LIMIT 1
    "))
Дальше там же ищем:

Код:
$db->query_write("
REPLACE INTO " . TABLE_PREFIX . "search (userid, titleonly, ipaddress, personal, query, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, searchterms, displayterms, searchhash, completed)
VALUES (" . $vbulletin->userinfo['userid'] . ", " . intval($vbulletin->GPC['titleonly']) . " ,'" . $db->escape_string(IPADDRESS) . "', " . ($vbulletin->options['searchsharing'] ? 0 : 1) . ", '" . $db->escape_string($search['query']) . "', '" . $db->escape_string($search['searchuser']) . "', '" . $db->escape_string($search['forumchoice']) . "', '" . $db->escape_string($search['sortby']) . "', '" . $db->escape_string($vbulletin->GPC['sortorder']) . "', $searchtime, " . intval($vbulletin->GPC['showposts']) . ", '" . implode(',', $search['orderedids']) . "', " . TIMENOW . ", '" . $db->escape_string($search['searchterms']) . "', '" . $db->escape_string($search['displayterms']) . "', '" . $db->escape_string($searchhash) . "', 1)
### SAVE ITEM IDS IN ORDER ###
");
и заменяем на:

Код:
$db->query_write("
REPLACE INTO " . TABLE_PREFIX . "search (userid, titleonly, ipaddress, personal, query, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, searchterms, displayterms, searchhash, completed)
VALUES (" . $vbulletin->userinfo['userid'] . ", " . intval($vbulletin->GPC['titleonly']) . " ,'" . $db->escape_string('') . "', " . ($vbulletin->options['searchsharing'] ? 0 : 1) . ", '" . $db->escape_string($search['query']) . "', '" . $db->escape_string($search['searchuser']) . "', '" . $db->escape_string($search['forumchoice']) . "', '" . $db->escape_string($search['sortby']) . "', '" . $db->escape_string($vbulletin->GPC['sortorder']) . "', $searchtime, " . intval($vbulletin->GPC['showposts']) . ", '" . implode(',', $search['orderedids']) . "', " . TIMENOW . ", '" . $db->escape_string($search['searchterms']) . "', '" . $db->escape_string($search['displayterms']) . "', '" . $db->escape_string($searchhash) . "', 1)
### SAVE ITEM IDS IN ORDER ###
");
Дальше там же ищем:
Код:
VALUES (
" . $vbulletin->userinfo['userid'] . ",
" . intval($vbulletin->GPC['titleonly']) . ",
'" . $db->escape_string(IPADDRESS) . "',
" . ($vbulletin->options['searchsharing'] ? 0 : 1) . ",
и заменяем на:

Код:
VALUES (
" . $vbulletin->userinfo['userid'] . ",
" . intval($vbulletin->GPC['titleonly']) . ",
'" . $db->escape_string('') . "',
" . ($vbulletin->options['searchsharing'] ? 0 : 1) . ",

Дальше там же ищем:
Код:
VALUES (
" . $vbulletin->userinfo['userid'] . ",
" . intval($vbulletin->GPC['titleonly']) . " ,
'" . $db->escape_string(IPADDRESS) . "',
" . ($vbulletin->options['searchsharing'] ? 0 : 1) . ",
и заменяем на:

Код:
VALUES (
" . $vbulletin->userinfo['userid'] . ",
" . intval($vbulletin->GPC['titleonly']) . " ,
'" . $db->escape_string('') . "',
" . ($vbulletin->options['searchsharing'] ? 0 : 1) . ",
Дальше там же ищем:
Код:
$db->query_write("
REPLACE INTO " . TABLE_PREFIX . "search (userid, titleonly, ipaddress, personal, query, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, searchterms, displayterms, searchhash, completed)
VALUES (" . $vbulletin->userinfo['userid'] . ", " . intval($vbulletin->GPC['titleonly']) . " ,'" . $db->escape_string(IPADDRESS) . "', " . ($vbulletin->options['searchsharing'] ? 0 : 1) . ", '" . $db->escape_string($vbulletin->GPC['query']) . "', '" . $db->escape_string($vbulletin->GPC['searchuser']) . "', '" . $db->escape_string($forumchoice) . "', '" . $db->escape_string($vbulletin->GPC['sortby']) . "', '" . $db->escape_string($vbulletin->GPC['sortorder']) . "', $searchtime, " . intval($vbulletin->GPC['showposts']) . ", '" . implode(',', $orderedids) . "', " . time() . ", '" . $db->escape_string(serialize($searchterms)) . "', '" . $db->escape_string(serialize($display)) . "', '" . $db->escape_string($searchhash) . "', 1)
### SAVE ORDERED IDS TO SEARCH CACHE ###
");
и заменяем на:

Код:
$db->query_write("
REPLACE INTO " . TABLE_PREFIX . "search (userid, titleonly, ipaddress, personal, query, searchuser, forumchoice, sortby, sortorder, searchtime, showposts, orderedids, dateline, searchterms, displayterms, searchhash, completed)
VALUES (" . $vbulletin->userinfo['userid'] . ", " . intval($vbulletin->GPC['titleonly']) . " ,'" . $db->escape_string('') . "', " . ($vbulletin->options['searchsharing'] ? 0 : 1) . ", '" . $db->escape_string($vbulletin->GPC['query']) . "', '" . $db->escape_string($vbulletin->GPC['searchuser']) . "', '" . $db->escape_string($forumchoice) . "', '" . $db->escape_string($vbulletin->GPC['sortby']) . "', '" . $db->escape_string($vbulletin->GPC['sortorder']) . "', $searchtime, " . intval($vbulletin->GPC['showposts']) . ", '" . implode(',', $orderedids) . "', " . time() . ", '" . $db->escape_string(serialize($searchterms)) . "', '" . $db->escape_string(serialize($display)) . "', '" . $db->escape_string($searchhash) . "', 1)
### SAVE ORDERED IDS TO SEARCH CACHE ###
");
Дальше там же ищем:

Код:
        // is this search customized for one user?
        if ($search['personal'])
        {
            // if search was by guest, do ip addresses match?
            if ($search['userid'] == 0 AND $search['ipaddress'] == IPADDRESS)
            {
и заменяем на:

Код:
        // is this search customized for one user?
        if ($search['personal'])
        {
            // if search was by guest, do ip addresses match?
            if ($search['userid'] == 0 AND $search['ipaddress'] == '')
            {
Дальше там же ищем:

Код:
    // build search hash
    $searchhash = md5($vbulletin->userinfo['userid'] . IPADDRESS . $forumid . $vbulletin->GPC['days'] . $vbulletin->userinfo['lastvisit'] . $vbulletin->GPC['include'] . '|' . $vbulletin->GPC['exclude']);
и заменяем на:
Код:
    // build search hash
    $searchhash = md5($vbulletin->userinfo['userid'] . '' . $forumid . $vbulletin->GPC['days'] . $vbulletin->userinfo['lastvisit'] . $vbulletin->GPC['include'] . '|' . $vbulletin->GPC['exclude']);
Дальше там же ищем:

Код:
    /*insert query*/
    $db->query_write("
        REPLACE INTO " . TABLE_PREFIX . "search (userid, showposts, ipaddress, personal, forumchoice, sortby, sortorder, searchtime, orderedids, announceids, dateline, displayterms, searchhash, completed)
        VALUES (" . $vbulletin->userinfo['userid'] . ", " . intval($vbulletin->GPC['showposts']) . ", '" . $db->escape_string(IPADDRESS) . "', 1, '" . $db->escape_string($foruminfo['forumid']) . "', '" . $db->escape_string($vbulletin->GPC['sortby']) . "', 'DESC', $searchtime, '$sql_ids', '$sql_aids', " . TIMENOW . ", '" . $db->escape_string(serialize($display)) . "', '" . $db->escape_string($searchhash) . "', 1)
    ");
и заменяем на:
Код:
    /*insert query*/
    $db->query_write("
        REPLACE INTO " . TABLE_PREFIX . "search (userid, showposts, ipaddress, personal, forumchoice, sortby, sortorder, searchtime, orderedids, announceids, dateline, displayterms, searchhash, completed)
        VALUES (" . $vbulletin->userinfo['userid'] . ", " . intval($vbulletin->GPC['showposts']) . ", '" . $db->escape_string('') . "', 1, '" . $db->escape_string($foruminfo['forumid']) . "', '" . $db->escape_string($vbulletin->GPC['sortby']) . "', 'DESC', $searchtime, '$sql_ids', '$sql_aids', " . TIMENOW . ", '" . $db->escape_string(serialize($display)) . "', '" . $db->escape_string($searchhash) . "', 1)
    ");
Дальше там же ищем:

Код:
        VALUES
            (" . $vbulletin->userinfo['userid'] . ", '" . $db->escape_string(IPADDRESS) . "', 1,
            '" . $db->escape_string($user['username']) . "', '" . $db->escape_string($forumchoice) . "',
и заменяем на:

Код:
        VALUES
            (" . $vbulletin->userinfo['userid'] . ", '" . $db->escape_string('') . "', 1,
            '" . $db->escape_string($user['username']) . "', '" . $db->escape_string($forumchoice) . "',

5.
Открываем файл /sendmessage.php
Ищем строку:

Код:
 if ($destemail == $vbulletin->options['webmasteremail'])
            {
                $ip = IPADDRESS;
            }
и заменяем на:

Код:
 if ($destemail == $vbulletin->options['webmasteremail'])
            {
                $ip = '';
            }
Дальше там же ищем:

Код:
        {
            $ip = IPADDRESS;
            $destemail =& $vbulletin->options['webmasteremail'];
        }
и заменяем на:
Код:
        {
            $ip = '';
            $destemail =& $vbulletin->options['webmasteremail'];
        }
6.
Открываем файл /threadrate.php
Ищем строку:


Код:
 if ($rating = $db->query_first("
            SELECT *
            FROM " . TABLE_PREFIX . "threadrate
            WHERE ipaddress = '" . $db->escape_string(IPADDRESS) . "'
и заменяем на:

Код:
  if ($rating = $db->query_first("
            SELECT *
            FROM " . TABLE_PREFIX . "threadrate
            WHERE ipaddress = '" . $db->escape_string('') . "'
Дальше там же ищем:
Код:
            $threadrate->set('vote', $vbulletin->GPC['vote']);
            $threadrate->set('ipaddress', IPADDRESS);
и заменяем на:

Код:
            $threadrate->set('vote', $vbulletin->GPC['vote']);
            $threadrate->set('ipaddress', '');
7.
Открываем файл /includes/adminfunctions.php
Ищем строку:

Код:
    $vbulletin->db->shutdown_query("
        INSERT INTO " . TABLE_PREFIX . "adminlog(userid, dateline, script, action, extrainfo, ipaddress)
        VALUES
        ($userid, " . TIMENOW.", '" . $vbulletin->db->escape_string($script) . "', '" . $vbulletin->db->escape_string($scriptaction) . "', '" . $vbulletin->db->escape_string($extrainfo) ."', '" . IPADDRESS . "')
    ");
и заменяем на:
Код:
    $vbulletin->db->shutdown_query("
        INSERT INTO " . TABLE_PREFIX . "adminlog(userid, dateline, script, action, extrainfo, ipaddress)
        VALUES
        ($userid, " . TIMENOW.", '" . $vbulletin->db->escape_string($script) . "', '" . $vbulletin->db->escape_string($scriptaction) . "', '" . $vbulletin->db->escape_string($extrainfo) ."', '" . '' . "')
    ");
8.
Открываем файл /includes/class_core.php
Ищем строку:

Код:
            $ipaddress      = IPADDRESS;
            $classname      = get_class($this);
и заменяем на:

Код:
   $ipaddress      = '';
            $classname      = get_class($this);

9.

Открываем файл /includes/class_dm_threadpost.php
Ищем строку:

Код:
            if ($this->fetch_field('ipaddress', 'post') === null)
            {
                $this->set('ipaddress', ($this->registry->options['logip'] ? IPADDRESS : ''));
            }
и заменяем на:
Код:
if ($this->fetch_field('ipaddress', 'post') === null)
            {
                $this->set('ipaddress', ($this->registry->options['logip'] ? '' : ''));
            }
Дальше там же ищем:

Код:
$modlogsql[] = "
                    ($entry[userid], " . TIMENOW . ", $forumid, $threadid, $entry[type],
                    '" . $this->dbobject->escape_string($entry['action']) . "', '" . $this->dbobject->escape_string(IPADDRESS) . "')
                ";
и заменяем на:

Код:
                $modlogsql[] = "
                    ($entry[userid], " . TIMENOW . ", $forumid, $threadid, $entry[type],
                    '" . $this->dbobject->escape_string($entry['action']) . "', '" . $this->dbobject->escape_string('') . "')
                ";

10.

Открываем файл /includes/class_dm_threadrate.php
Ищем строку:
Код:
        if (!$this->condition AND $this->fetch_field('userid') == $this->registry->userinfo['userid'] AND !$this->fetch_field('ipaddress'))
        {
            $this->set('ipaddress', IPADDRESS);
        }
и заменяем на:

Код:
        if (!$this->condition AND $this->fetch_field('userid') == $this->registry->userinfo['userid'] AND !$this->fetch_field('ipaddress'))
        {
            $this->set('ipaddress', '');
        }
11.
Открываем файл /includes/functions.php
Ищем строку:

Код:
    global $vbulletin;

    $user_ipaddress = IPADDRESS . '.';
и заменяем на:

Код:
    global $vbulletin;

    $user_ipaddress = '' . '.';
12.
Открываем файл /includes/functions_login.php
Ищем строку:
Код:
    $strikes = $vbulletin->db->query_first("
        SELECT COUNT(*) AS strikes, MAX(striketime) AS lasttime
        FROM " . TABLE_PREFIX . "strikes
        WHERE strikeip = '" . $vbulletin->db->escape_string(IPADDRESS) . "'
    ");
и заменяем на:

Код:
    $strikes = $vbulletin->db->query_first("
        SELECT COUNT(*) AS strikes, MAX(striketime) AS lasttime
        FROM " . TABLE_PREFIX . "strikes
        WHERE strikeip = '" . $vbulletin->db->escape_string('') . "'
    ");
Дальше там же ищем:

Код:
        $strikes_user = $vbulletin->db->query_first("
            SELECT COUNT(*) AS strikes
            FROM " . TABLE_PREFIX . "strikes
            WHERE strikeip = '" . $vbulletin->db->escape_string(IPADDRESS) . "'
                AND username = '" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "'
        ");
и заменяем на:

Код:
        $strikes_user = $vbulletin->db->query_first("
            SELECT COUNT(*) AS strikes
            FROM " . TABLE_PREFIX . "strikes
            WHERE strikeip = '" . $vbulletin->db->escape_string('') . "'
                AND username = '" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "'
        ");
Дальше там же ищем:

Код:
            $ip = IPADDRESS;
            eval(fetch_email_phrases('accountlocked', $user['languageid']));
и заменяем на:

Код:
     $ip = '';
            eval(fetch_email_phrases('accountlocked', $user['languageid']));
Дальше там же ищем:

Код:
    $vbulletin->db->query_write("
        INSERT INTO " . TABLE_PREFIX . "strikes
        (striketime, strikeip, username)
        VALUES
        (" . TIMENOW . ", '" . $vbulletin->db->escape_string(IPADDRESS) . "', '" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "')
    ");
и заменяем на:

Код:
    $vbulletin->db->query_write("
        INSERT INTO " . TABLE_PREFIX . "strikes
        (striketime, strikeip, username)
        VALUES
        (" . TIMENOW . ", '" . $vbulletin->db->escape_string('') . "', '" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "')
    ");
Дальше там же ищем:
Код:
$vbulletin->db->query_write("DELETE FROM " . TABLE_PREFIX . "strikes WHERE strikeip = '" . $vbulletin->db->escape_string(IPADDRESS) . "' AND username='" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "'");
}
и заменяем на:


Код:
$vbulletin->db->query_write("DELETE FROM " . TABLE_PREFIX . "strikes WHERE strikeip = '" . $vbulletin->db->escape_string('') . "' AND username='" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "'");
}
13.
Открываем файл /includes/functions_log_error.php
Ищем строку:

Код:
                $errstring .= "Username: {$vbulletin->userinfo['username']}\r\n";
                $errstring .= 'IP Address: ' . IPADDRESS . "\r\n";
и заменяем на:

Код:
                $errstring .= "Username: {$vbulletin->userinfo['username']}\r\n";
                $errstring .= 'IP Address: ' . '' . "\r\n";
Дальше там же ищем:

Код:
                $errstring .= "Username: $username\r\n";
                $errstring .= 'IP Address: ' . IPADDRESS . "\r\n";
                $errstring .= "Strikes: $GLOBALS[strikes]/5\r\n";
и заменяем на:

Код:
$errstring .= "Username: $username\r\n";
                $errstring .= 'IP Address: ' . '' . "\r\n";
                $errstring .= "Strikes: $GLOBALS[strikes]/5\r\n";
Дальше там же ищем:

Код:
    $modlogsql[] = "(" . intval($logtype) . ", " . intval($log['userid']) . ", " . TIMENOW . ", " . intval($log['forumid']) . ", " . intval($log['threadid']) . ", " . intval($log['postid']) . ", " . intval($log['pollid']) . ", " . intval($log['attachmentid']) . ", '" . $vbulletin->db->escape_string($action) . "', '" . $vbulletin->db->escape_string(IPADDRESS) . "')";
        }
и заменяем на:
Код:
    $modlogsql[] = "(" . intval($logtype) . ", " . intval($log['userid']) . ", " . TIMENOW . ", " . intval($log['forumid']) . ", " . intval($log['threadid']) . ", " . intval($log['postid']) . ", " . intval($log['pollid']) . ", " . intval($log['attachmentid']) . ", '" . $vbulletin->db->escape_string($action) . "', '" . $vbulletin->db->escape_string('') . "')";
        }
Дальше там же ищем:
Код:
$moderatorlog['ipaddress'] = IPADDRESS;
и заменяем на:

Код:
$moderatorlog['ipaddress'] = '';
Ну вот и всё.
Теперь ваши пользователи будут чувствовать себя вполне спокойно

Статья канешно не моя!!
 
Ответить с цитированием

  #2  
Старый 09.05.2010, 08:59
Аватар для vbcreate
vbcreate
Новичок
Регистрация: 07.05.2010
Сообщений: 9
Провел на форуме:
34734

Репутация: 0
Отправить сообщение для vbcreate с помощью ICQ
По умолчанию

Никчему это помоему, лишний гиморой...
 
Ответить с цитированием

  #3  
Старый 09.05.2010, 22:20
Аватар для neval
neval
Moderator - Level 7
Регистрация: 13.12.2006
Сообщений: 531
Провел на форуме:
2127116

Репутация: 383


По умолчанию

не проще ли один раз предопределить константу(?) IPADDRESS и не делать
"Дальше там же ищем: и заменяем на:" двадцать раз?
 
Ответить с цитированием

  #4  
Старый 11.05.2010, 12:26
Аватар для =VoVaN=
=VoVaN=
Участник форума
Регистрация: 16.04.2010
Сообщений: 100
Провел на форуме:
1262520

Репутация: 8
Отправить сообщение для =VoVaN= с помощью ICQ
По умолчанию

Цитата:
Сообщение от vbcreate  
Никчему это помоему, лишний гиморой...
согласен
 
Ответить с цитированием
Ответ



Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Взломайте форум vbulletin 3.6.8.о цене в лс WinN1keFree О Работе 0 08.12.2009 17:27
как установить форум vBulletin ? petrovich-lamer PHP, PERL, MySQL, JavaScript 14 10.06.2005 03:39



Здесь присутствуют: 1 (пользователей: 0 , гостей: 1)
 


Быстрый переход




ANTICHAT.XYZ