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 2
1
2
>
Showing results 1 to 25 of 38
Search took
0.00
seconds.
Search:
Posts Made By:
Shadab
Forum:
vBulletin 4 Articles
01-03-2010, 11:09 AM
Replies:
14
[HOW TO - VB4] Adding Stylesheets to Your vB4 Mod via Plugins
Views:
5,128
Posted By
Shadab
vbulletin-chrome.css has nothing to do with...
vbulletin-chrome.css has nothing to do with Google Chrome.
vBulletin "chrome" refers to the main Header, Navigation and Footer elements. :)
Forum:
vBulletin 4 Articles
11-17-2009, 11:18 AM
Replies:
307
[HOW TO - vB4] Rendering templates and registering variables - a short guide
Views:
109,067
Posted By
Shadab
Not a problem! ...
Not a problem!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Another note; on multidimensional arrays...
Suppose you have a nested / multidimensional array set, like:
// Array declaration &...
Forum:
vBulletin 4 Articles
11-17-2009, 06:48 AM
Replies:
307
[HOW TO - vB4] Rendering templates and registering variables - a short guide
Views:
109,067
Posted By
Shadab
Thanks for the write up, Cellarius. :) Btw,...
Thanks for the write up, Cellarius. :)
Btw, shouldn't {vb:raw my_array.value1} be {vb:raw my_array.key1} in the third codebox ?
(which would output "value1")
Forum:
vB4 Programming Discussions
11-16-2009, 04:12 PM
Replies:
14
Navbar Drop Down Menu (3.8 Drop Downs in 4.0) - Need Help.
Views:
2,105
Posted By
Shadab
Hi Shelby. This works, although only when...
Hi Shelby.
This works, although only when the tab is in 'selected' state:
<li class="selected popupmenu">
<a class="navtab popupctrl" href="javascript://">Drop Down</a>
<ul...
Forum:
vB4 Programming Discussions
11-16-2009, 01:04 PM
Replies:
8
Can someone help me
Views:
1,739
Posted By
Shadab
Haven't read the whole source code. But... To...
Haven't read the whole source code. But...
To convert
eval('$ed2kbit .= "' . fetch_template('ed2kbit') . '";');
to be 4.0 compatible, use this:
(you need to explicitly register all the...
Forum:
vB4 General Discussions
11-16-2009, 12:34 PM
Replies:
34
A little confused now (calling a template)
Views:
4,300
Posted By
Shadab
A colon was missing in line 3. Sorry. Try this: ...
A colon was missing in line 3. Sorry. Try this:
$abcHTML = vB_Template::create('abc')->render();
vB_Template::preRegister('FORUMHOME', array('var' => $abcHTML));
Forum:
vB4 General Discussions
11-16-2009, 12:25 PM
Replies:
34
A little confused now (calling a template)
Views:
4,300
Posted By
Shadab
Try the code below: $abcHTML =...
Try the code below:
$abcHTML = vB_Template::Create('abc')->render();
vB_Template:preRegister('FORUMHOME', array('var' => $abcHTML));
Then you can use {vb:raw var} in your Forumhome template...
Forum:
vB4 General Discussions
11-16-2009, 12:13 PM
Replies:
34
A little confused now (calling a template)
Views:
4,300
Posted By
Shadab
@Yellow Slider: If I understand correctly,...
@Yellow Slider:
If I understand correctly, you want to evaluate the template "abc"
and make the result available in the FORUMHOME template via the variable "var" ?
Forum:
vB4 Programming Discussions
11-16-2009, 12:08 PM
Replies:
8
Can someone help me
Views:
1,739
Posted By
Shadab
What is the name of that template? Also, are...
What is the name of that template?
Also, are you putting that php code in a plugin or in a custom PHP file?
Forum:
vB4 Programming Discussions
11-16-2009, 11:56 AM
Replies:
3
Showing variable from template:headinclude from hook:global_start
Views:
2,489
Posted By
Shadab
You're welcome. :)
You're welcome. :)
Forum:
vB4 Programming Discussions
11-16-2009, 11:46 AM
Replies:
3
Showing variable from template:headinclude from hook:global_start
Views:
2,489
Posted By
Shadab
Try this in the plugin: $car = 'Porsche'; ...
Try this in the plugin:
$car = 'Porsche';
vB_Template::preRegister('headinclude', array('car' => $car));
Forum:
vB4 Programming Discussions
11-15-2009, 03:15 PM
Replies:
17
Custom page Script...
Views:
4,087
Posted By
Shadab
Your code was registering the variable with the...
Your code was registering the variable with the main (TEST) template, instead of the sidebar template.
Try this:
##The variable to be used in 'my_sidebar_1' template
$ExVariable =...
Forum:
vB4 Programming Discussions
11-15-2009, 09:28 AM
Replies:
17
Custom page Script...
Views:
4,087
Posted By
Shadab
It makes the header, footer and headinclude...
It makes the header, footer and headinclude templates available to the template being evaluated.
No. But you can do that via the register() method.
For example: [untested]
$templater =...
Forum:
vB4 General Discussions
11-14-2009, 02:35 PM
Replies:
3
please help
Views:
1,715
Posted By
Shadab
You're having an old version of MySQL. ...
You're having an old version of MySQL.
Minimum required MySQL version: 4.1 (Recommended is 5.0.19)
See this thread: vBulletin 4: Minimum System Requirements ...
Forum:
vB4 General Discussions
11-14-2009, 11:59 AM
Replies:
42
So who is installing the beta?
Views:
3,864
Posted By
Shadab
On my local dev instance ? Yep. On a...
On my local dev instance ?
Yep.
On a live/production environment ?
Not until 4.1 or 4.2 :)
Forum:
vB3 General Discussions
10-24-2009, 11:00 AM
Replies:
2
Changing CODE: to something else
Views:
575
Posted By
Shadab
Edit the bbcode_code template (in the BB Code...
Edit the bbcode_code template (in the BB Code Layout Templates group) in your Style Manager.
Forum:
vB3 Programming Discussions
10-14-2009, 03:37 PM
Replies:
4
How to use "or" in a template
Views:
651
Posted By
Shadab
Not a problem. :)
Not a problem. :)
Forum:
vBulletin 3.8 Template Modifications
10-12-2009, 03:31 PM
Replies:
6
Show Thread Enhancements -
rel canonical for showthread as in vBseo v1.0, prevent duplicate content
Views:
3,331
Posted By
Shadab
You need to take into account multi-page threads...
You need to take into account multi-page threads too.
Related
- https://vborg.vbsupport.ru/showthread.php?p=1745800#post1745800
Forum:
vB3 Programming Discussions
10-12-2009, 01:39 PM
Replies:
4
undefined method db::query_first_slave() in class_dm_threadpost.php
Views:
1,186
Posted By
Shadab
Could it be that your custom script uses a global...
Could it be that your custom script uses a global $db variable too; overwriting the one that vBulletin references via $vbulletin->db ?
Does simply initializing vBulletin inside your script...
Forum:
vB3 Programming Discussions
10-11-2009, 04:54 PM
Replies:
4
How to use "or" in a template
Views:
651
Posted By
Shadab
Try this: <if...
Try this:
<if condition="!in_array($bbuserinfo['usergroupid'], array(1, 3))">
Forum:
vB3 Programming Discussions
10-11-2009, 10:04 AM
Replies:
4
undefined method db::query_first_slave() in class_dm_threadpost.php
Views:
1,186
Posted By
Shadab
Me again. :) Not really sure if chdir()'ing...
Me again. :)
Not really sure if chdir()'ing to the vBulletin's directory before including global.php will help;
try and see if this works:
// [...]
$currentDirectory = getcwd();...
Forum:
vB3 General Discussions
10-10-2009, 03:08 PM
Replies:
3
init.php problem
Views:
1,471
Posted By
Shadab
Indicates that the error is coming from a...
Indicates that the error is coming from a modification. (And, functions_zseo.php most probably belongs to Zoints SEO.)
Make sure that this particular file exists in your /includes/ directory.
Forum:
vB3 General Discussions
10-10-2009, 02:05 PM
Replies:
3
init.php problem
Views:
1,471
Posted By
Shadab
Which vB version? On which page are you getting...
Which vB version? On which page are you getting that error ?
Please paste the complete error message that you get.
Forum:
vB3 General Discussions
09-07-2009, 08:56 AM
Replies:
3
Get rid of page scroll!
Views:
577
Posted By
Shadab
Your .new_footer CSS class has a width of 110%. ...
Your .new_footer CSS class has a width of 110%.
Edit and make that 100% to remove the horizontal scroll. :)
Forum:
vB3 General Discussions
08-14-2009, 06:34 PM
Replies:
2
Youtube BB Code
Views:
654
Posted By
Shadab
This:...
This: https://vborg.vbsupport.ru/showthread.php?t=202476 ?
(Automatic Media Embedding)
Showing results 1 to 25 of 38
Page 1 of 2
1
2
>
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
01:37 PM
.
-- 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.02679 seconds
Memory Usage
2,029KB
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
(1)
pagenav_pagelink
(1)
post_thanks_navbar_search
(1)
search_results
(25)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(26)
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.0009
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(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(251, 0, 1,''); -> cached fperms for forum 251
(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(251, 0, 1,''); -> cached fperms for forum 251
(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(251, 0, 1,''); -> cached fperms for forum 251
(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(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(236, 0, 1,''); -> cached fperms for forum 236
(unspecified) fetch_permissions(236, 0, 1,''); -> cached fperms for forum 236
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
FULLTEXT Search
php_sapi_name(): fpm-fcgi