Пароли на скачивание файлов в Member Area меняются автоматически каждый день
Если вам нужно скачать какой то скрипт, за паролем ко мне в ЛС
привет какирам
kerk
Ещё раз обращаем Ваше внимание: всё, что Вы скачиваете и устанавливаете на свой форум, Вы устанавливаете исключительно на свой страх и риск.
Сообщество vBSupport'а физически не в состоянии проверять все стили, хаки и нули, выкладываемые пользователями.
Помните: безопасность Вашего проекта - Ваша забота. Убедительная просьба: при обнаружении уязвимостей или сомнительных кодов обязательно отписывайтесь в теме хака/стиля
Спасибо за понимание
На форуме введена премодерация ВСЕХ новых пользователей
Почта с временных сервисов, типа mailinator.com, gawab.com и/или прочих, которые предоставляют временный почтовый ящик без регистрации и/или почтовый ящик для рассылки спама, отслеживается и блокируется, а так же заносится в спам-блок форума, аккаунты удаляются
Не можете скачать вложение? Изменения в правах групп пользователей внимательно читаемэту и эту темы Короткая версия - тут
На официальном сайте обнародовали раздел, посвященный ходу развития линейки vBulletin 4.
Welcome to the vBulletin 4 Micro-Site!
This section of the vBulletin.com site is dedicated to the sharing of information about vB4, the next major series of vBulletin.
Key features and improvements that will be included in the first vBulletin 4 release are:
- Cross-content search system providing a single interface to search across forum posts, blog entries and comments and other supported products
- Improved search performance
- A fresh design and layout making use of semantic markup and CSS styling
- An enhanced style and template system to enhance your ability to change the layout
- Controls to assist with the placement of advertising elements
- SEO features, including friendly URLs
- A centralized attachment system, allowing the sharing of attachments across products
The goal of the vBulletin 4 series is to develop a modern, scalable application platform that will allow your communities to thrive.
The vBulletin 4 series will include a number of releases, with each iteration bringing improvements in features, usability and architecture. Development efforts are prioritized towards those areas that can provide real, tangible benefits to our customers, at all times with an eye toward maintaining and enhancing the performance and reliability expected of a vBulletin product.
Alongside significant strides forward within the vBulletin forum product, we are also producing a new content management system to facilitate the creation, editing and publishing of non-forum pages. Further details about CMS features, and how it will integrate with vBulletin will be posted in due course.
We are working hard and plan to have vBulletin 4.0 released in beta form in early Q2 of 2009.
Из анонса следует, что основной упор в нововведениях будет выполнен в сторону улучшения, оптимизации поисковой системы в целом, а именно объединение поискового интерфейса с блогами и прочими поддерживаемыми продуктами (реализация единого поискового индекса); объединения системы вложений, позволяющей обмениваться вложениями между продуктами; улучшению системы шаблонов.
Плюс ко всему, новая линейка нас порадует интегрированной платформой управления рекламными элементами; встроенным ЧПУ (пока что, жалкое подобие vBSeo) и новым, лаконичным дизайном.
Выход ?-версии запланирован на второй квартал 2009 года. Не так уж и долго осталось ждать
Лента новостей расположена тут: News and Announcements; FAQ тут: Frequently Asked Questions
I'm one of the developers here at VBulletin, and I've recently been building some widgets that are intended to be included with vB4. We're still cleaning up the editor interface, but what I'm showing here should be reasonably close to what we deliver.
I've done three widgets. These are
static html. I've been testing with google gadgets, so you can encapsulate some significant functionality.
rss feed. I've tested with atom v2 and rss v2. Other versions should work but I haven't tested yet.
navigation widget. You'll see below
Just to illustrate, let's say I want to have two different page layouts. I will use a two-column layout, with a narrow column on the right for the widget and the wider column on the left for content. On some pages I want the right column to be navigation, and on other pages I want to have a fishpond.
Here's what I need to do: Create Widgets
The system will come with several widget types. Currently we're expecting to ship the three types above. You need to create an instance of the types you want to use with type-specific configuration information. So for a static html widget you need to give it html. For a rss widget you need to give it the location for the rss feed. You create a widget in this interface:
And once it's created, you set the widget-specific information like this. Each widget has a different interface with the appropriate settings. I went to google, found a fish pond gadget, configured it, copied the html, and pasted it into this interface.
So make one of these for whatever gadgets you like. I made one rss feed, one navigation widget, two static html (a calculator and a fishpond).
Create Grid and Layouts
Now let's create the two layouts. We have a new CMS Option in admincp. That gives us a grid manager. Grids define the left-right column layout, some header information, etc.
and a layout manager, which looks like this.
Now I go to the content page. Here's my default page:
No, I don't like that. I'd rather have an RSS feed. Back to the layout editor, change the right widget to "Rss Feed"
and the page looks like this.
Now when I created the pages, I created some with this template and some with the second template. The second template uses the navigation widget. There are three configuration parameters for this widget
Show children
Show top-level (of the CMS) pages. I only have one top-level page, so I can't show you its' effect.
Show parent- this shows the tree up to the top.
So here's a page with no children. Depending on the settings I can make it look like this.
or this
by checking the boxes in the configuration interface here.
Note that there is not a "show children" function. We always show the children of the displayed page.
For those of you who are comfortable writing php code, we've written the class structure so you can add your own gadgets. Writing the widget may be difficult or easy, but hooking it into vBulletin will not be difficult.