ANTICHAT.XYZ    VIDEO.ANTICHAT.XYZ    НОВЫЕ СООБЩЕНИЯ    ФОРУМ  
Баннер 1   Баннер 2

ANTICHAT — форум по информационной безопасности, OSINT и технологиям

ANTICHAT — русскоязычное сообщество по безопасности, OSINT и программированию. Форум ранее работал на доменах antichat.ru, antichat.com и antichat.club, и теперь снова доступен на новом адресе — forum.antichat.xyz.
Форум восстановлен и продолжает развитие: доступны архивные темы, добавляются новые обсуждения и материалы.
⚠️ Старые аккаунты восстановить невозможно — необходимо зарегистрироваться заново.
Вернуться   Форум АНТИЧАТ > Программирование_OLD > PHP, PERL, MySQL, JavaScript
   
 
 
Опции темы Поиск в этой теме Опции просмотра

  #11  
Старый 10.01.2008, 16:46
Isis
Флудер
Регистрация: 20.11.2006
Сообщений: 3,316
Провел на форуме:
16641028

Репутация: 2371


По умолчанию

vBulletin searchshell.php

PHP код:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vBulletin 3.*.*
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000–2007 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/

// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('NOCOOKIES'1);
define('NOHEADER'1);

// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################

$start time();

print (
"Welcome to vB3 search re-indexer\n");
print (
"What is the full path to your main forum directory? ");

$forumspath fetch_stdin();

// keep looping until they enter a path which exists
while (!is_dir($forumspath))
{
    print (
"\n$forumspath is an invalid directory, please re-enter ");
    
$forumspath fetch_stdin();
}

$forumspath preg_replace('#/$#'''trim($forumspath));
chdir($forumspath);

if (!
file_exists($forumspath '/includes/init.php'))
{
    print (
"\nInvalid forums path, exiting...");
    exit;
}

require_once(
'./global.php');
require_once(
'./includes/functions_databuild.php');

print (
"Would you like to drop the search table? (y/n) ");
$dropdb fetch_stdin();
if (
$dropdb == 'yes' or $dropdb == 'y')
{
    
$db->query_write("TRUNCATE TABLE " TABLE_PREFIX "postindex");
    
$db->query_write("TRUNCATE TABLE " TABLE_PREFIX "word");
    print (
"The tables postindex and word are now empty\n");
}
// tidy up variables dont need this any more
unset($dropdb);

print (
"What post number would you like to start at? (0) ");
$startat intval(fetch_stdin());

print (
"What post number would you like to end at? (none) ");
$endat intval(fetch_stdin());

print (
"Posts to process per cycle? (100000) ");
$perpage intval(fetch_stdin());
if (!
$perpage)
{
    
$perpage 100000;
}

$foruminfo = array('indexposts' => 1);
$firstpost = array();

$notdone TRUE;

while (
$notdone)
{
    
$notdone false;

    
$stopat $startat $perpage;
    if (
$endat)
    {
        if (
$stopat $endat)
        {
            
$stopat $endat;
        }
        if (
$startat >= $endat)
        {
            continue;
        }
    }

    
$posts $db->query_read("
        SELECT postid, post.title, post.pagetext, post.threadid, thread.title AS threadtitle
        FROM " 
TABLE_PREFIX "post AS post
        INNER JOIN " 
TABLE_PREFIX "thread AS thread ON(thread.threadid = post.threadid)
        INNER JOIN " 
TABLE_PREFIX "forum AS forum ON(forum.forumid = thread.forumid)
        WHERE (forum.options & 16384)
            AND post.postid >= 
$startat
            AND post.postid <= 
$stopat
        ORDER BY post.postid
    "
);

    while (
$post $db->fetch_array($posts))
    {
        
$notdone TRUE;

        if (empty(
$firstpost["$post[threadid]"]))
        {
            
$getfirstpost $db->query_first("SELECT MIN(postid) AS postid FROM " TABLE_PREFIX "post WHERE threadid = $post[threadid]");
            
$firstpost["$post[threadid]"] = $getfirstpost['postid'];
        }

        
build_post_index($post['postid'], $foruminfo, ($post['postid'] == $firstpost["$post[threadid]"]) ? 0$post);

        print (
"Processed post: $post[postid]\n");
        
flush();
    }

    
$startat += $perpage;
}

print_postindex_exec_time($start);

// ###################### Start getinput #######################
function fetch_stdin()
{
    static 
$fp;

    if (
$fp)
    {
        
$input fgets($fp255);
    }
    else
    {
        
$fp fopen('php://stdin''r');
        
$input fgets($fp255);
    }

    return 
str_replace(array("\n""\r"), array(''''), $input);
}

// ###################### Start execution time #######################
function print_postindex_exec_time($starttime)
{
    
$seconds time() - $starttime;
    
$d['h'] = floor($seconds/3600);
    
$d['m'] = str_padfloor( ($seconds - ($d['h']*3600)) / 60 ), 20STR_PAD_LEFT);
    
$d['s'] = str_pad($seconds 6020STR_PAD_LEFT);

    print (
"Index complete after $d[h] hours, $d[m] minutes and $d[s] seconds\n");
    exit;
}
/*======================================================================*\
|| ####################################################################
|| #
|| # CVS: $RCSfile$ - $Revision: 16011 $
|| ####################################################################
\*======================================================================*/
?>
 

  #12  
Старый 10.01.2008, 17:00
ZEXEL
Постоянный
Регистрация: 07.01.2008
Сообщений: 591
Провел на форуме:
2899578

Репутация: 549


Отправить сообщение для ZEXEL с помощью ICQ
По умолчанию

ЧТо то не работает, ошибку выдает !
Fatal error: Allowed memory size of 25165824 bytes exhausted (tried to allocate 24893431 bytes) in /superfilter/sf.php on line 38
ему что места мало ?
 

  #13  
Старый 10.01.2008, 17:01
Isis
Флудер
Регистрация: 20.11.2006
Сообщений: 3,316
Провел на форуме:
16641028

Репутация: 2371


По умолчанию

/superfilter/sf.php посмотри этот файл..он чего-то жрет у тебя много оперативке =\
 
 





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


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




ANTICHAT.XYZ