форум 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'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
sutki
Простоузер
Question Делаю ротатор для баннеров и контекста, вопрос ?
0

Добрый день, гуру подскажите пожалуйста, где ошибка ?

1. Создаю модуль указываю showthread_complete
2. Вписываю код
Quote:
$code_adv_gip[] = 'Код1';
$code_adv_gip[] = 'Код2';
$code_adv_gip[] = 'Код3';

$count_code_adv_gip = count($code_adv_gip) - 1;
$vivod_reklami = $code_adv_gip[rand(0, $count_code_adv_gip)];
3. Вставляю в шаблон postbit_legacy переменную $vivod_reklami между первым и вторым постом.

Ну и собственно хочу, чтобы Код1, 2 и 3 менялись в произвольном режиме при перегрузке страницы, но они не отображаются, подскажите где ошибка ?

Last edited by sutki : 11-23-2008 at 11:47 PM.
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
real1l
Знаток
 
real1l's Avatar
Default
0

sutki, может это поможет?
 
 
sutki
Простоузер
Default
0

real1l, нет, я перелапатил все темы по этому поводу, и все хаки. К сожалению ничего стояшего не нашел. Прошу помочь, кто понимает в модулях и php - что не так.
 
 
OldEr
Специалист
Master
 
OldEr's Avatar
Default
0

sutki, попробуйте сделать таким образом:
Quote:
$random_ad = rand(1, 3);
$random_ad[1] = 'ad1';
$random_ad[2] = 'ad2';
$random_ad[3] = 'ad3';
 
 
sutki
Простоузер
Default
0

OldEr, спасибо, но что-то не работает, вставил этот код в модуль, в шаблоне прописал $random_ad
выдает
Quote:
Warning: Cannot use a scalar value as an array in /showthread.php(1963) : eval()'d code on line 42

Warning: Cannot use a scalar value as an array in /showthread.php(1963) : eval()'d code on line 43

Warning: Cannot use a scalar value as an array in /showthread.php(1963) : eval()'d code on line 44

Last edited by sutki : 11-24-2008 at 02:11 AM. Reason: Добавлено сообщение
 
 
OldEr
Специалист
Master
 
OldEr's Avatar
Default
1

sutki, извиняюсь. Замените строку
Quote:
$random_ad = rand(1, 3);
на
Quote:
$random_number = rand(1, 3);
 
 
sutki
Простоузер
Default
0

OldEr, спасибо за помощь, но что-то не выходит.
Создаю модуль указываю showthread_complete
Прописал в модуле
Quote:
$random_number = rand(1, 3);
$random_ad[1] = 'ad1';
$random_ad[2] = 'ad2';
$random_ad[3] = 'ad3';
Вставил в шаблон postbit_legacy переменную $random_number между первым и вторым постом.

Ошибка пропала, но не работает :(
 
 
Martell
Эксперт
Master
 
Martell's Avatar
Default
1

Quote:
Originally Posted by sutki View Post
Ошибка пропала, но не работает :(
Вот тебе модуль...

HTML Code:
<?xml version="1.0" encoding="ISO-8859-1"?>

<plugins>
	<plugin active="1" executionorder="5" product="vbulletin">
		<title>Random Banner Rotation</title>
		<hookname>parse_templates</hookname>
		<phpcode><![CDATA[$random_number = rand(1, 3);

$random_banner[1] = '<a href="http://www.your.domain.com/"><img src="http://www.your.domain.com/banners/banner1.gif" alt="" border="0" /></a>';
$random_banner[2] = '<a href="http://www.your.domain.com/"><img src="http://www.your.domain.com/banners/banner2.gif" alt="" border="0" /></a>';
$random_banner[3] = '<a href="http://www.your.domain.com/"><img src="http://www.your.domain.com/banners/banner3.gif" alt="" border="0" /></a>';]]></phpcode>
	</plugin>
</plugins>
Вывод: $random_banner[$random_number]

Все работает без проблем.
 
 
sutki
Простоузер
Default
0

Martell, этот код вставляю в модуль, местоположение модуля showthread_complete
Вставил в шаблон postbit_legacy переменную $random_banner[$random_number] между первым и вторым постом. - Но не работает :((
Пишет ошибка
Quote:
forum/showthread.php(1963) : eval()'d code on line 41
Где ошибка, подскажите пожалуйста ?
 
 
OldEr
Специалист
Master
 
OldEr's Avatar
Default
0

Quote:
Originally Posted by sutki View Post
Вставил в шаблон postbit_legacy переменную $random_number между первым и вторым постом.
Нужно вставить переменную $random_ad
 


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 11:59 PM.


Powered by vBulletin® Version zEdition
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.