форум vBSupport.ru > vBulletin > Вопрос — Ответ > Помогите найти!
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'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
arrival
Простоузер
Default История Поисковых Запросов
0

Ищу хак для просмотра поисковых запросов пользователей
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
arrival
Простоузер
Default
0

Есть только этот кому надо но он ввыдает отчет только за последний час

выкладываю
Attached Files
File Type: xml product-last_15_searches_bh.xml (10.7 KB, 6 views)
 
 
arrival
Простоузер
Default
0

есть этот кто может скачать

http://www.vbulletin.org/forum/showthread.php?t=61424
 
 
Василий Шуйский
Продвинутый
Default
1

Quote:
Originally Posted by arrival View Post
есть этот кто может скачать

http://www.vbulletin.org/forum/showthread.php?t=61424
PHP Code:
  vB3 15 Most Recent Searches Made By Our Members Version 1.1 (By Boofo and EvilLS1)  What does this hack do? This hack will display the last 15 searches made by your members on your main site search page at the topThe search words are then linked to those search resultsIt uses your censor options to make sure nothing bad shows upThe searchee will also be visiblebut only to AdminsThe search box will only show up when searches have been madeThe AdminSupermod and Mod searches will not show up in the listingIt is done this way so any searches made in your private forums are not shown to the regular members.  Version InformationVersion 1.0 --Initial release Version 1.1 --Re-did the template code to make it match the default style a little better and also added the ability to collaspe the table.  CreditsA big thank you goes out to Antionline for his original version of this hack for vB2partly on which this hack is based.  Installation overviewFiles to edit: (1) --search.php Templates to edit: (1) --search_forums  Installation Instructions: ~~~~~~~~~~~~~~~~~~~~~ In search.php  Find: ~~~~~~~~~~~~~~~~~~~~~  if ($_REQUEST['do'] == 'intro') {     globalize($_REQUEST, array(         'query' => STR,         'searchuser' => STR,         'forumid' => STR,         'forumchoice'     ));  ~~~~~~~~~~~~~~~~~~~~~ BELOW it add: ~~~~~~~~~~~~~~~~~~~~~  //   global $vboptions;   $querycount=$DB_site->query_first("SELECT COUNT(*) AS orderedids FROM " . TABLE_PREFIX . "search LEFT JOIN " . TABLE_PREFIX . "user USING (userid) WHERE query!='' AND usergroupid NOT IN (5,6,7)");  $numqueries = number_format($querycount[orderedids]);  if ($numqueries =="1"){  $searchcount = "Search";  } else {  $searchcount = "Searches";  }  if ($numqueries > 15){  $numqueries = 15;  }  $lastsearches=$DB_site->query("SELECT search.searchid,search.orderedids,search.dateline,search.query,search.userid,user.username,user.userid,user.usergroupid FROM " . TABLE_PREFIX . "search," . TABLE_PREFIX . "user WHERE query!='' AND user.userid = search.userid AND usergroupid NOT IN (5,6,7) ORDER BY searchid desc LIMIT 0,15");  while ($lastsearchcount=$DB_site->fetch_array($lastsearches)):  $lastsearchdate=vbdate($vboptions['dateformat'],$lastsearchcount[dateline],1);  $lastsearchtime=vbdate($vboptions['timeformat'],$lastsearchcount[dateline],1);  $ourlastquery=$lastsearchcount[query];  $ourlastquery=fetch_censored_text($ourlastquery);  $lastsearchresultscount="$lastsearchcount[orderedids]";  $lastsearchresultscount=explode(",",$lastsearchresultscount);  $lastsearchresultscount=sizeof($lastsearchresultscount);  if ($lastsearchresultscount=="1") {      $numposts = "post";     }     else     {     $numposts = "posts";     }  if ($vboptions['yestoday'] == "2")     {     $lastsearchdate = "$lastsearchdate";     }     else     {     $lastsearchdate = "$lastsearchdate at $lastsearchtime";     }          $sr_matches.="$lastsearchresultscount $numposts
";         $sr_keywords.="$ourlastquery
";         $sr_lastsearchname.= "$lastsearchcount[username]
";         $sr_datetime.=" $lastsearchdate 
";  endwhile;   if ($bbuserinfo['usergroupid']=="6") {     $lastsearch="      Results     Key Words     Searchee     Date Time       $sr_matches     $sr_keywords     $sr_lastsearchname     $sr_datetime \n";     } else {     $lastsearch="      Results     Key Words     Date Time       $sr_matches     $sr_keywords     $sr_datetime \n";  } //   ~~~~~~~~~~~~~~~~~~~~~  Note: If you want the Admin, Supermod and Mod searches to show up in the listing, you will need to delete this part of the code from above:   AND usergroupid NOT IN (5,6,7)  ~~~~~~~~~~~~~~~~~~~~~ In the template "search_forums"  Find: ~~~~~~~~~~~~~~~~~~~~~    ~~~~~~~~~~~~~~~~~~~~~ ABOVE it add: ~~~~~~~~~~~~~~~~~~~~~    '0'">                             [IMG]http://www.vbsupport.ru/forum/$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_15_searches].gif[/IMG]             $numqueries Most Recent $searchcount Made By Our Members                 $lastsearch [IMG]http://www.vbsupport.ru/forum/$vboptions[cleargifurl][/IMG]   
   
~~~~~~~~~~~~~~~~~~~~~  DoneEnjoy
 
 
arrival
Простоузер
Default
0

куда это вставлять ?

Добавлено через 1 минуту
в нормальном виде есть ?

Last edited by arrival : 06-22-2007 at 12:15 PM. Reason: Добавлено сообщение
 
 
Malcolm Reed
Эксперт
 
Malcolm Reed's Avatar
Default
0

Quote:
Originally Posted by arrival View Post
есть этот кто может скачать
иди в тему "качаем с официальных сайтов" и кидай туда ссылку.
 
 
arrival
Простоузер
Default
0

Ищу такой же хак но под 3.6

спасибо
 


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 10:44 PM.


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