форум vBSupport.ru > vBulletin > Old vB versions (3.0.x & 2.x.x) > vBulletin 3.6.x > Hacks, mods and scripts [3.6.x]
Register Меню vBsupport Изображения Files Manager О рекламе Today's Posts Search
  • Родная гавань
  • Блок РКН снят
  • Premoderation
  • For English speaking users
  • Каталог Фрилансеров
  • If you want to buy some product or script
  • Администраторам
VBsupport перешел с домена .ORG на родной .RU Ура! Пожалуйста, обновите свои закладки - VBsupport.ru
Блок РКН снят, форум доступен на всей территории России, включая новые терртории, без VPN
На форуме введена премодерация ВСЕХ новых пользователей

Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
for English speaking users:
You may be surprised with restriction of access to the attachments of the forum. The reason is the recent change in vbsupport.org strategy:

- users with reputation < 10 belong to "simple_users" users' group
- if your reputation > 10 then administrator (kerk, Luvilla) can decide to move you into an "improved" group, but only manually

Main idea is to increase motivation of community members to share their ideas and willingness to support to each other. You may write an article for the subject where you are good enough, you may answer questions, you may share vbulletin.com/org content with vbsupport.org users, receiving "thanks" equal your reputation points. We should not only consume, we should produce something.

- you may:
* increase your reputation (doing something useful for another members of community) and being improved
* purchase temporary access to the improved category:
10 $ for 3 months. - this group can download attachments, reputation/posts do not matter.
20 $ for 3 months. - this group can download attachments, reputation/posts do not matter + adds eliminated + Inbox capacity increased + files manager increased permissions.

Please contact kerk or Luvilla regarding payments.

Important!:
- if your reputation will become less then 0, you will be moved into "simple_users" users' group automatically.*
*for temporary groups (pre-paid for 3 months) reputation/posts do not matter.
Уважаемые пользователи!

На форуме открыт новый раздел "Каталог фрилансеров"

и отдельный раздел для платных заказов "Куплю/Закажу"

Если вы хотите приобрести какой то скрипт/продукт/хак из каталогов перечисленных ниже:
Каталог модулей/хаков
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
Taf
Простоузер
Question Все темы на одну странницу
0

Нужен скрипт выводящий все темы форума (ссылки с названием тем) на одну странницу кроме тем из скрытых разделов.
Ребята как реализовать php не знаю(
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
Лео
В Черном списке
 
Лео's Avatar
Default
0

Quote:
Originally Posted by Taf View Post
все темы форума (ссылки с названием тем) на одну странницу
а форум большой? Без листинга будет попа ведь у MySQL есть предел памяти запроса
 
 
Taf
Простоузер
Unhappy
0

Есть такой скрипт, но он выводит не все темы на страницу а разбивает их по 6 тем на страницу (а надо что бы все были на одной или хотя бы делил их по штук 250 на страницу):
Click image for larger version

Name:	555.jpg
Views:	18
Size:	35.8 KB
ID:	17605
PHP Code:
<?php
$script 
'sitemap.php';
$count 100;
$lastpost true;
$asc false;


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

// #################### DEFINE IMPORTANT CONSTANTS #######################
define('SKIP_SESSIONCREATE'1);
define('DIE_QUIETLY'1);
define('THIS_SCRIPT''sitemap');

// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special data templates from the datastore
$phrasegroups = array('forum');
$specialtemplates = array();

// pre-cache templates used by specific actions
$actiontemplates = array();

// ######################### REQUIRE BACK-END ############################
require_once('./global.php');

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

// We don't want no stinkin' sessionhash
$vbulletin->session->vars['sessionurl'] =
$vbulletin->session->vars['sessionurl_q'] =
$vbulletin->session->vars['sessionurl_js'] =
$vbulletin->session->vars['sessionhash'] = '';

$vbulletin->input->clean_array_gpc('r', array(
    
'offset'  => TYPE_UINT,
));

if(
$vbulletin->GPC['offset']) $offset=$vbulletin->GPC['offset'];
else 
$offset 0;

// check to see if there is a forum preference

    
foreach (array_keys($vbulletin->forumcache) AS $forumid)
    {
        
$forumperms =& $vbulletin->userinfo['forumpermissions']["$forumid"];
        if (
$forumperms $vbulletin->bf_ugp_forumpermissions['canview']
            AND (
$forumperms $vbulletin->bf_ugp_forumpermissions['canviewothers'])
            AND ((
$forumperms $vbulletin->bf_ugp_forumpermissions['canviewthreads']))
            AND 
verify_forum_password($forumid$vbulletin->forumcache["$forumid"]['password'], false)
        )
        {
            
$forumchoice[] = $forumid;
        }
    }

    if (!empty(
$forumchoice))
    {
        
$forumsql "AND thread.forumid IN(" implode(','$forumchoice) . ")";
    }
    else
    {
        
$forumsql "";
    }

if (empty(
$forumchoice))
{    
// no access to view selected forums
    
exit;
}

$threadcount $db->query_first_slave("
    SELECT count(*)    AS totalthreads    
    FROM " 
TABLE_PREFIX "thread AS thread
    WHERE 1=1
        
$forumsql
        AND thread.visible = 1
        AND open <> 10
"
);
$totalthreads $threadcount['totalthreads'];

$threadcache = array();
// query last threads from visible / chosen forums
$threads $db->query_read_slave("
    SELECT thread.threadid, thread.title, thread.lastpost        
    FROM " 
TABLE_PREFIX "thread AS thread
    WHERE 1=1
        
$forumsql
        AND thread.visible = 1
        AND open <> 10
    ORDER BY " 
. ($lastpost "thread.lastpost" "thread.dateline") . ($asc?" ASC ":" DESC ") ."
    LIMIT "
.$offset.",$count
"
);
while (
$thread $db->fetch_array($threads))
// fetch the threads
    // remove sessionhash from urls:
    
$threadcache[] = $thread;
}

$output .= $stylevar[htmldoctype];
$output .= "<html xmlns='http://www.w3.org/1999/xhtml' dir='$stylevar[textdirection]' lang='$stylevar[languagecode]' xml:lang='$stylevar[languagecode]'><head>";
$output .= "<meta http-equiv='Content-Type' content='text/html; charset=".$stylevar[charset]."' />";
$output .= "<title>".$vbulletin->options['bbtitle']."</title></head><body>";

$output .= "\r\n<br/><h2>".$vbphrase['view_full_version'].": <a href='".$vbulletin->options['bburl']."'>".$vbulletin->options['bbtitle']."</a></h2>";
$output .= "\r\n<br/>".$vbphrase['go_to_page'];
$page_current=intval($offset/$count)+1;
$page_max=intval($totalthreads/$count)+1;

for(
$i=1;$i<=$page_max;$i++)
{
    if(
$i<=20||$i==$page_max||($i>$page_current-5&&$i<$page_current+5)) {
        
$output .= "<a href='".$script.".php?offset=".(($i-1)*$count)."'>".$i."</a> "
    }
}

if (!empty(
$threadcache))
{
    foreach (
$threadcache AS $threadnum => $thread)
    {
        
$output .= "\r\n<br/>&raquo; <a href='"$vbulletin->options['bburl'] . "/showthread.php?t=".$thread['threadid']."'>".$thread['title']."</a>";
    }
}
$output .= "</body></html>";

echo 
$output;
?>
 
 
Taf
Простоузер
Default
0

Quote:
Originally Posted by Лео View Post
а форум большой? Без листинга будет попа ведь у MySQL есть предел памяти запроса
около 1000 тем
 
 
GiveMeABreak
Эксперт
 
GiveMeABreak's Avatar
Default
1

Taf, в свободное время, сегодня - завтра напишу хак.

GiveMeABreak добавил 09.07.2009 в 13:12
http://vbsupport.ru/forum/showthread...996#post256996

Last edited by GiveMeABreak : 07-09-2009 at 02:12 PM. Reason: Добавлено сообщение
 
 
Gulia
Специалист
 
Gulia's Avatar
Default
0

А он способствует внутренней перелинковке сайта?
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off




All times are GMT +4. The time now is 08:56 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.