The Arcive of Official vBulletin Modifications Site.
It is not a VB3 engine, just a parsed copy!
Archives
Graphics
Styles
Mods
Articles
Forums
VBSupport
vb.org Archive
>
Search Forums
Search Results
User Name
Remember Me?
Password
FAQ
Community
Calendar
Today's Posts
Search
Community Links
Members List
Search Forums
Show Threads
Show Posts
Tag Search
Advanced Search
Найти все сообщения с благодарностями
Go to Page...
Page 1 of 4
1
2
3
>
Last
»
Showing results 1 to 25 of 79
Search took
0.00
seconds.
Search:
Posts Made By:
shka
Forum:
vB5 Programming Discussions
10-28-2021, 01:26 PM
Replies:
5
PHP 7 To PHP 8 Issue
Views:
1,697
Posted By
shka
https://www.php.net/manual/de/migration80.incompat...
https://www.php.net/manual/de/migration80.incompatible.php
A number of warnings have been converted into Error exceptions:
...
Attempting to access unqualified constants which are...
Forum:
vBulletin 5.x Template Modifications
02-22-2021, 09:26 AM
Replies:
20
Mini Mods -
Add new phrase to unread topics
Views:
6,906
Posted By
shka
You can try it with .threadtitle_unread:after { ...
You can try it with .threadtitle_unread:after {
instead of tr.topic-item.unread.js-topic-item .js-topic-title:after {
Forum:
vB5 General Discussions
02-21-2021, 12:04 PM
Replies:
3
Is there a way?
Views:
1,995
Posted By
shka
The way in your first post is not recommendable. ...
The way in your first post is not recommendable.
There are two ways:
A. (complete cleaning)
- Upgrade installation (with or without uninstall mods), important is only deleting all old vb4 files...
Forum:
vB5 General Discussions
02-19-2021, 01:25 PM
Replies:
2
Add Template Name in HTML Comments
Views:
2,185
Posted By
shka
AdminCP / Settings / Product/Hook-System / Add...
AdminCP / Settings / Product/Hook-System / Add Template Name in HTML Comments
Add the template name at the beginning and end of every template rendered. This is useful for debugging and analyzing...
Forum:
vB4 Programming Discussions
02-15-2021, 04:36 PM
Replies:
4
Using options in scripts within template
Views:
599
Posted By
shka
For output/echo values use curly braces and for...
For output/echo values use curly braces and for array use dot syntax instead of square brackets.
https://www.vbulletin.com/docs/html?manualversion=40205500 - search for "template syntax"
Forum:
vB4 Programming Discussions
02-15-2021, 04:05 PM
Replies:
4
Using options in scripts within template
Views:
599
Posted By
shka
<div id="notice">{vb:raw...
<div id="notice">{vb:raw vboptions.drc_notice}</div>
Forum:
vB4 General Discussions
01-29-2021, 04:26 AM
Replies:
3
How do I create a new options group in ACP?
Views:
1,693
Posted By
shka
Two ways possible - creating inside admincp or...
Two ways possible - creating inside admincp or writing directly in product-yourproductname.xml
It is the same way in vb4 and in vb5 so you should read...
Forum:
vB5 General Discussions
01-27-2021, 11:57 AM
Replies:
6
Error 500 when trying to create AD
Views:
559
Posted By
shka
Please first check your error logs. The...
Please first check your error logs.
The other points I've listed are only possible examples for the variety of issues which lead to a error 500.
Forum:
vB5 General Discussions
01-26-2021, 06:08 PM
Replies:
6
Error 500 when trying to create AD
Views:
559
Posted By
shka
First step check error logs. Typically...
First step check error logs.
Typically Permissions, timeouts, misconfiguration in .htaccess.
Forum:
vB4 Programming Discussions
01-18-2021, 01:00 PM
Replies:
12
error message PHP7
Views:
1,099
Posted By
shka
Sure vbet is your problem? Other plugins all...
Sure vbet is your problem? Other plugins all disabled for test?
Forum:
vB4 Programming Discussions
01-18-2021, 11:03 AM
Replies:
12
error message PHP7
Views:
1,099
Posted By
shka
Which plugin?
Which plugin?
Forum:
vB5 Programming Discussions
01-16-2021, 01:34 PM
Replies:
7
Managing Calendar Events
Views:
902
Posted By
shka
In dem Fall war das auskommentierte Array ja aus...
In dem Fall war das auskommentierte Array ja aus den Snippets auf vbulletin.com in deiner Anfrage. Aber sonst wäre das Vorgehen:
Event = normaler Post-Table + zusätzliche Felder in Event-Table...
Forum:
vB5 Programming Discussions
01-15-2021, 09:38 AM
Replies:
4
How to add variable from user table to template
Views:
418
Posted By
shka
If you don't have a screenshot - you should...
If you don't have a screenshot - you should describe where you want to show it. This is not a default vbulletin field, I don't know the meaning of it.
Screenshot of actual board and paint where...
Forum:
vB5 Programming Discussions
01-15-2021, 12:17 AM
Replies:
4
How to add variable from user table to template
Views:
418
Posted By
shka
Which table columns and where / how to display...
Which table columns and where / how to display (screenshot from old system)?
Forum:
vBulletin 4.x Add-ons
01-12-2021, 01:27 PM
Replies:
21
Add-On Releases -
HTML5 Game Mod for ibProArcade
Views:
6,674
Posted By
shka
MySQL Version >=8.0.3? system is a reserved...
MySQL Version >=8.0.3?
system is a reserved word, so you have to use it only with backticks.
So first you could change line 14 of product-gamesystemcheck.xml
...
Forum:
vB5 Programming Discussions
01-11-2021, 04:40 PM
Replies:
7
Managing Calendar Events
Views:
902
Posted By
shka
Ich schreibe es mal auf deutsch, da geht das...
Ich schreibe es mal auf deutsch, da geht das fl?ssiger. Wie bereits erw?hnt besteht ein Event in vB5 nicht nur aus einem Eintrag in den Event-Table, sondern aus einem Topic in einem Forumschannel,...
Forum:
vB4 Programming Discussions
12-27-2020, 03:59 PM
Replies:
1
JavaScript
Views:
424
Posted By
shka
You don't need <script type="text/javascript">,...
You don't need <script type="text/javascript">, <script> is ok.
<script>
var d = new Date();
const options = { year: 'numeric', month: 'long', day: 'numeric' };
...
Forum:
vB4 Programming Discussions
11-25-2020, 02:58 PM
Replies:
13
[SOLVED]Pulling threadid in templates
Views:
2,089
Posted By
shka
One option - you build your link on plugin level....
One option - you build your link on plugin level. Than you have to choose a hook, when $threadinfo already exists. Example with "showthread_complete"
<plugin active="1" executionorder="5">...
Forum:
vB4 Programming Discussions
11-25-2020, 12:03 PM
Replies:
13
[SOLVED]Pulling threadid in templates
Views:
2,089
Posted By
shka
one post above {vb:raw threadinfo.threadid}
one post above
{vb:raw threadinfo.threadid}
Forum:
vB4 Programming Discussions
11-25-2020, 11:52 AM
Replies:
13
[SOLVED]Pulling threadid in templates
Views:
2,089
Posted By
shka
{vb:raw threadinfo.threadid} Like in your...
{vb:raw threadinfo.threadid}
Like in your quotation of kh99 post.In your plugin code you can use $threadinfo['threadid']. ...
threadinfo.threadid and $threadinfo['threadid'] is the same...
Forum:
vB4 Programming Discussions
11-25-2020, 11:03 AM
Replies:
13
[SOLVED]Pulling threadid in templates
Views:
2,089
Posted By
shka
Either my English is too bad and I don't...
Either my English is too bad and I don't understand you.
Or you didn't read my post / code.
Forum:
vB4 Programming Discussions
11-25-2020, 10:46 AM
Replies:
13
[SOLVED]Pulling threadid in templates
Views:
2,089
Posted By
shka
Which template? In postbit_legacy or...
Which template?
In postbit_legacy or post_thanks_button
{vb:raw post.threadid}
Forum:
vB5 Programming Discussions
11-03-2020, 11:10 AM
Replies:
11
Dynamic Header per Forum/Page
Views:
3,695
Posted By
shka
As you wrote they are always inside. But you have...
As you wrote they are always inside. But you have to check if empty or not. Like line 31
<vb:if condition="!empty($page['nodeid']) AND !empty($page['channelid'])">
Or do you mean how you get...
Forum:
vBulletin 5.x Products & Extensions
10-30-2020, 09:45 AM
Replies:
25
Show Thread Enhancements -
Yilmaz - Hide [code,php,html] content from guests (vb5.6.x)
Views:
5,987
Posted By
shka
Dann auch done getan.
Dann auch done getan.
Forum:
vBulletin 5.x Products & Extensions
10-29-2020, 03:37 PM
Replies:
25
Show Thread Enhancements -
Yilmaz - Hide [code,php,html] content from guests (vb5.6.x)
Views:
5,987
Posted By
shka
Another approach: I had created a prototype for...
Another approach: I had created a prototype for zweeper with a frontend controller. This means that the post / bbcode only contains a placeholder and an ajax call, the frontend controller can map any...
Showing results 1 to 25 of 79
Page 1 of 4
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
News and Announcements
News and Announcements
Mod of the Month
Official vB.com Announcements
vBulletin Pre-Sales Questions
vBulletin Styles and Graphics
vBulletin Styles
vBulletin 5.x Styles
vBulletin 3.8 Styles
vBulletin 3.8 Admin CP Styles
vBulletin 4.x Styles
vBulletin Graphic Sets
vBulletin Button Sets
vBulletin Smilie Sets
Miscellaneous Images
vBulletin Rank Sets
vBulletin Avatar Sets
vBulletin Status Icon Sets
vBulletin Article Depository
Read An Article
vBulletin 3 Articles
Programming Articles
General Articles
Management Articles
Graphics Articles
vBulletin Tips & Tricks
vBulletin 4 Articles
vBulletin 5 Connect Articles
Article Submissions
Submit New Article
vBulletin Modifications
vBulletin 5.x Modifications
vBulletin 5.x Products & Extensions
vBulletin 5.x Template Modifications
vBulletin 4.x Modifications
vBulletin 4.x Add-ons
vBulletin 4.x Template Modifications
vBulletin 3.8 Modifications
vBulletin 3.8 Add-ons
vBulletin 3.8 Template Modifications
Premium Modifications
vBulletin Open Source Products
Sphinx
Project Tools
ibProArcade
Archive
vB.org Archives
General
vB1 Hacks
Testing Zone
Board of the Month
Big Board Discussions
General Hosting/Server Discussions
Member Archives
vBulletin 2.x
vBulletin 2.x Full Releases
vBulletin 2.x Beta Releases
vBulletin 2.x Template Modifications
vBulletin 2.x Styles
vBulletin 2.x Admin CP Styles
vBulletin 3.0
vBulletin 3.0 Full Releases
vBulletin 3.0 Beta Releases
vBulletin 3.0 Template Modifications
vBulletin 3.0 Styles
vBulletin 3.0 Admin CP Styles
vBulletin 3.5
vBulletin 3.5 Add-ons
vBulletin 3.5 Template Modifications
vBulletin 3.5 Styles
vBulletin 3.5 Admin CP Styles
vBulletin 3.6
vBulletin 3.6 Template Modifications
vBulletin 3.6 Add-ons
vBulletin 3.6 Styles
vBulletin 3.6 Admin CP Styles
vBulletin 3.7
vBulletin 3.7 Add-ons
vBulletin 3.7 Template Modifications
vBulletin 3.7 Styles
vBulletin 3.7 Admin CP Styles
Premium Archives
uCash & uShop
vBadvanced CMPS
RPG Integration Hack
vBindex
vBgarage
Advanced Warning System (AWS)
vbArticles
vB Chat
vbBux / vbPlaza
ibProArcade Archive
vRewrite - SEOed URLs for vBulletin
Modification Graveyard
vBulletin 5 Connect Discussion
vB5 General Discussions
vB5 Programming Discussions
vB5 Design and Graphics Discussions
vBulletin 4 Discussion
vB4 General Discussions
vB4 Programming Discussions
vB4 Design and Graphics Discussions
vBulletin 3 Discussion
vB3 Programming Discussions
vB3 General Discussions
vB3 Design and Graphics Discussions
Community Discussions
Modification Requests/Questions (Unpaid)
Style and Graphics Requests (Unpaid)
Forum and Server Management
Community Central
vBulletin.org Site Feedback
Community Lounge
Community Reviews
All times are GMT. The time now is
12:15 AM
.
-- Default Style
---- Blue
------ Red
------ Green
------ Purple
Contact Us
-
Archive
-
Top
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X
vBulletin 3.8.12 by vBS Debug Information
Page Generation
0.02256 seconds
Memory Usage
2,048KB
Queries Executed
10
(?)
More Information
Template Usage:
(1)
ad_footer_end
(1)
ad_footer_start
(1)
ad_header_end
(1)
ad_header_logo
(1)
ad_navbar_below
(1)
footer
(1)
forumjump
(1)
gobutton
(1)
header
(1)
headinclude
(1)
navbar
(2)
navbar_link
(120)
option
(1)
pagenav
(1)
pagenav_curpage
(2)
pagenav_pagelink
(1)
post_thanks_navbar_search
(1)
search_results
(25)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(28)
threadbit_pagelink
Phrase Groups Available:
global
inlinemod
prefix
search
Included Files:
./
search.php
./
global.php
./includes/
init.php
./includes/
class_core.php
./includes/
config.php
./includes/
functions.php
./includes/
class_hook.php
./includes/
modsystem_functions.php
./includes/
functions_search.php
./includes/
functions_databuild.php
./includes/
functions_forumlist.php
./includes/
functions_misc.php
./includes/
functions_forumdisplay.php
./includes/
functions_bigthree.php
Hooks Called:
init_startup
init_startup_session_setup_start
init_startup_session_setup_complete
cache_permissions
style_fetch
cache_templates
global_start
parse_templates
global_setup_complete
search_before_process
search_start
search_results_start
search_results_query_posts
search_results_prebits
threadbit_process
search_results_postbit
pagenav_page
pagenav_complete
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0016
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(259, 0, 1,''); -> cached fperms for forum 259
(unspecified) fetch_permissions(259, 0, 1,''); -> cached fperms for forum 259
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
FULLTEXT Search
php_sapi_name(): fpm-fcgi