форум vBSupport.ru > vBulletin > vBulletin 4.0.x-4.1.х > Хаки, моды и скрипты 4.0.x-4.1.х
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'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота.
Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
 
 
 
 
SeM13
Знаток
 
SeM13's Avatar
Default vbMediaWiki [4.0.2 RC3]
4

description:
vbmediawiki integration plug-in provides full mediawiki integration, including user system and search system.

This is an easy solution to integrating mediawiki with your vbulletin forum software. If activated, vbulletin will take over full management of users and login. A single registration works for the wiki as well as for the forums. It means that users are registered on the both systems at the same time, and when they log-in, they're logged to both systems at the same time.

how does the integration look like:
search integration:
the mediawiki content is implemented as a new content type into the vbulletin search
system. Search results are shown together with the results from the forum, blog, cms
search. Indexing is all done exactly the same way as the original vbulletin content types.



advanced search:

search the indexed mediawiki pages with advanced search
options like title only, by user, by date and sort the results.



'what's new' integration:
showing a list of the last wiki pages that where created or edited. The list is
created directly from the wiki database and does not rely on the vbulletin index.



permissions settings:
are done per usergroup: Admin control panel -> usergroups -> usergroup manager -> edit
interesting might be the "minimum of required posts" for editing wiki pages;
it will reduce write access to active forum members.



user stats:

additional stats about how many pages a user edited or created.
Forum -> member list -> {?user} -> about me



integrated skin:
the vbmediawiki skin that is completely integrated into the forum
wiki tab on the navbar
personal wiki links under the navbar
navbits showing the location
content inside the page



original skins are still working, just some links are different and there is a new "forum" link at the top so the user can go back
after the user logged in he can decide himself if he wants to use the integrated skin or another one

login:
single sign on over the forum.

  • perfect solution:
    on a fresh forum installation the first thing you should do is to set the forum to utf-8:
    admin control panel -> languages & phrases -> language manager -> [edit settings]
    there set "html character set" to: Utf-8

    important: that is not possible anymore if there are posts already, because they would be messed up.
  • other solution:
    many of you will not be able to change the forum charset, so this product is checking the charset and will convert the mediawiki content. You should make sure that you remove all not latin languages from the mediawiki.

it might be necessary to turn off magic quotes either in php.ini or in .htaccess.
Else you might get this error when editing pages:
error: Your edit has been rejected because your client mangled the punctuation characters in the edit token. The edit has been rejected to prevent corruption of the page text. This sometimes happens when you are using a buggy web-based anonymous proxy service.
next is that vbulletin user names are different to the one mediawiki is using. Mediawiki always makes the first char uppercase, so it is inconsistent to vbulletin.
  • solution: to make it perfect, you need to edit "...\wiki\includes\user.php", open it in any editor and replace "$wgcontlang->ucfirst( $name )" by just "$name" ... There are two places inside user.php where you need to do that

next difference is the user name charset that is restriction by mediawiki. Problem there is that every user name also is a title for a wiki page where the user can write something about himself. Bad charters in the user name might break that page.
  • solution: we need to restrict the vbulleting charset and also we need to change all existing usernames.
    admin control panel -> settings -> options -> user registration options
    there set "username regular expression" to something like: ^[a-za-z0-9]+$
    this would allow alphanumeric characters only.
the forum and the mediawiki must be on the same server and both must have the same domain, something like:
http://www.name.com/ - for the forum
http://www.name.com/wiki/ - for the wiki

also i only support the latest versions.
As of right now that are:
vbulletin: 4.0.2
mediawiki: 1.15.1

installation:
1: upload the contents of the "wiki_upload" directory into your wiki root directory.
2: upload the contents of the "forum_upload" directory into your wiki root directory.
3: add this two lines to your 'wiki/localsettings.php':
PHP Code:
definevb_install_path'../forum' );
require_once( 
"$ip/includes/authplugin_vbmediawiki.php" ); 
vb_install_path needs to be adjusted to the relative path from the wiki to your forum.
4: install the new product-vbmediawiki.xml
5: go to your vbulletin options and look for "vbulletin mediawiki: Options"
setup the path to the wiki there and the informatin for the wiki db

upgrade:
uninstall the old product
copy the new files to the server
install the new product-vbmediawiki.xml

actual issues:
integration skin might need to be checked using opera browser (to be done)

changes:
4.0.2rc3:
fixed printable version of wiki pages
fixed maintenance scripts
wiki page redirects are not shown as search results anymore
sub pages should be working now
fixed problems with script loading order
added support for pretty urls and aliasing
and more fixes

4.0.2rc2:
fixed about me wiki stats

4.0.2rc1:
Fixed problems with some vb hooks
fixed content specific search
fixed search result charset

>>Скачать + Дополнительные скриншоты + RC2<<
Bot
Yandex Bot Yandex Bot is online now
 
Join Date: 05.05.2005
Реклама на форуме А что у нас тут интересного? =)
 
 
Мишка
Продвинутый
 
Мишка's Avatar
Default
0

Давно увидел эту красоту,даже скачал,но вот переводить лень стало...А так штука хорошая и удобная)
 
 
SeM13
Знаток
 
SeM13's Avatar
Default
0

Много переводить? я просто не пробывал его на себе.
Если много то я со своим малым опытом перевода браться не буду
 
 
Мишка
Продвинутый
 
Мишка's Avatar
Default
0

SeM13,ну не мало по-поему,сейчас точно не помню...
 
 
Hitsi
Специалист
 
Hitsi's Avatar
Default
0

Прикрутил... но тема оформления не отображается (вообще никакая).. все в одном блоке подряд без оформлений...
Как побороть не знаю (
 
 
YaSurok
Простоузер
Default
0

Потратил кучу времени.
Всё поставил по инструкции, ошибок не было.
В тему форума wiki не интегрировалась.
Пробовал создавать пользователей они тоже не синхронизируются но куски от wiki в модуле поиска и профилях появились.
Как настроить не пойму.
Да и перевод не помешал бы, а то кусков с английским текстом появляется много.
 
 
Мишка
Продвинутый
 
Мишка's Avatar
Default
0

YaSurok,
Quote:
[4.0.2 RC3]
,подожди финал.Возможно ошибки из-за этого
 
 
YaSurok
Простоузер
Default
0

Quote:
Originally Posted by Мишка View Post
подожди финал.Возможно ошибки из-за этого
Подождать можно. (Примерно сколько не подскажете, может есть информация)
Но вот интересует вопрос возможно ли потом будет прикрутить уже к рабочему форуму, наполненую wiki?
 
 
Мишка
Продвинутый
 
Мишка's Avatar
Default
0

YaSurok,информация о финальной версии,может быть только у автора...

Quote:
Но вот интересует вопрос возможно ли потом будет прикрутить уже к рабочему форуму, наполненую wiki?
Все возможно,если постараться)
 
 
dasagere
Простоузер
Default
0

мда, попробовал поставить на Vbulletin 4.0.3 + MediaWiki 1.15.3
В навбаре вместо названия ссылки на вики вижу:
Code:
{$vboptions['mediawiki_name']}
и ссылка аналогично неверная, не подставлено значение из опции.
При попытке открыть вики вижу вообще пустую страницу.
Будем ждать обновления.
 


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 03:25 PM.


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