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...
Showing results 1 to 18 of 18
Search took
0.00
seconds.
Search:
Posts Made By:
Frank T
Forum:
vB4 Programming Discussions
10-12-2010, 04:36 AM
Replies:
47
4.0 networking? multiple forums into one?
Views:
5,348
Posted By
Frank T
Your site uses friendly URLs. I don't think VB...
Your site uses friendly URLs. I don't think VB facade will work with it.
Forum:
vBulletin 3.8 Add-ons
10-11-2010, 08:21 PM
Replies:
57
Miscellaneous Hacks -
Facades Resurrection - Run multiple unique sites with one VB database (BETA) (3.7-4)
Views:
16,043
Posted By
Frank T
This is a very interesting approach. Thanks...
This is a very interesting approach. Thanks Sticky for pointing it out.
It's definitely different than the other approaches I've reviewed. I think this approach has many advantages -- as it...
Forum:
vBulletin 3.5 Add-ons
10-08-2010, 02:42 PM
Replies:
151
Multiple Forums using a single user table
Views:
44,296
Posted By
Frank T
I'll do it for you.
I'll do it for you.
Forum:
vB4 Programming Discussions
10-08-2010, 04:40 AM
Replies:
2
database location
Views:
979
Posted By
Frank T
It's an SQL database, so you won't find a...
It's an SQL database, so you won't find a database file anywhere. You'll need access to the SQL server. The easiest way is through phpMyAdmin.
Forum:
vB4 Programming Discussions
10-08-2010, 04:33 AM
Replies:
7
Registering an account through database
Views:
1,769
Posted By
Frank T
I do the following to create hundreds of users at...
I do the following to create hundreds of users at a time.
$userdm = new vB_DataManager_User($vbulletin, ERRTYPE_ARRAY);
$userdm->set('username', $tsData[uName]); // My new name is in...
Forum:
vB4 Programming Discussions
10-08-2010, 04:00 AM
Replies:
4
Including a PHP file in a widget
Views:
1,697
Posted By
Frank T
I think I figured this out. It's a bug in...
I think I figured this out. It's a bug in vBulletin. Edit "global.php" and change the following:
require('./includes/class_bootstrap.php');
Change that to:...
Forum:
vB4 Design and Graphics Discussions
09-10-2010, 05:47 AM
Replies:
1
Tables in vb4
Views:
702
Posted By
Frank T
Bump
Bump
Forum:
vBulletin 3.8 Add-ons
09-05-2010, 02:37 PM
Replies:
119
Miscellaneous Hacks -
Watermark Attachments
Views:
35,997
Posted By
Frank T
I tried this with 4.0.6 and am not having much...
I tried this with 4.0.6 and am not having much success. Every time it adds a watermark, it also creates a shaded bar across the entire top/bottom. Here's an example. This image only has a...
Forum:
vBulletin 3.5 Add-ons
08-20-2010, 04:11 PM
Replies:
43
Easy Add Forum Moderator
Views:
12,276
Posted By
Frank T
I modified this hack and got it to work with VB...
I modified this hack and got it to work with VB 4.0.6. If I get some time, I'll package it up and post it.
Forum:
vB4 Programming Discussions
08-20-2010, 05:10 AM
Replies:
8
is it posible to use $vbphrase in a plugin
Views:
798
Posted By
Frank T
I'm having the same exact problem. I'm using...
I'm having the same exact problem. I'm using 'postbit_display_complete' hook. $vbphrase['forum'] returns a correct phrase, but $vbphrase['infractionlevel8_title'] returns an empty phrase -- even...
Forum:
vBulletin 4 Articles
08-20-2010, 04:56 AM
Replies:
1,120
[HOW TO - vB4] Create your own vBulletin page
Views:
258,810
Posted By
Frank T
I ran into a wierd problem programming my own...
I ran into a wierd problem programming my own custom page. I wanted to add a note to the bottom of a screen to see what infraction a user received. So, I thought I did the obvious: ...
Forum:
vB4 General Discussions
08-19-2010, 09:24 PM
Replies:
0
Adding a moderator to multiple forums
Views:
341
Posted By
Frank T
Adding a moderator to multiple forums
What's the best way to add a single moderator to dozens of forums simultaneously? I've looked for a mod, and only found something for vb-3.5. Sorry if this has been asked many times before...and...
Forum:
vB4 General Discussions
07-03-2010, 02:16 PM
Replies:
11
Best integrated shopping cart system?
Views:
1,810
Posted By
Frank T
Currently, I have OSC Shopping Cart Pro. I...
Currently, I have OSC Shopping Cart Pro. I believe iCart is for digital delivery of products only. I'm not sure if Zen integrates directly with vBulletin (OSC and iCart do).
I'd really like to...
Forum:
vBulletin 4 Articles
07-01-2010, 07:06 PM
Replies:
307
[HOW TO - vB4] Rendering templates and registering variables - a short guide
Views:
109,067
Posted By
Frank T
I'm working to insert my own VAR into an existing...
I'm working to insert my own VAR into an existing template. I've seen the examples saying to use vb_Template::preRegister. However I have a catch...I'm using a cloned copy of an existing template. ...
Forum:
vB4 Programming Discussions
06-30-2010, 03:25 PM
Replies:
0
How to access a thread title and thread body from PHP
Views:
388
Posted By
Frank T
How to access a thread title and thread body from PHP
I'm writing a plug in to access an external database based on the contents of a thread title, or post body.
How do I capture the current thread title, or current post body from PHP?
(Yes, I've...
Forum:
vBulletin 4 Articles
06-22-2010, 05:39 PM
Replies:
32
First Look at vBulletin 4 Template Variables
Views:
25,436
Posted By
Frank T
OK, that helps a lot. Now, next question. What...
OK, that helps a lot. Now, next question. What if I want to render into my own private variable and display as part of the "postbit_legacy" template? For example, if I wanted to render as follows:...
Forum:
vBulletin 4 Articles
06-22-2010, 02:44 AM
Replies:
32
First Look at vBulletin 4 Template Variables
Views:
25,436
Posted By
Frank T
What's the difference between the "template hook"...
What's the difference between the "template hook" and "hook location?" Why aren't they the same thing? You've used "showthread_above_posts" template hook and "showthread_complete" hook.
Forum:
vB4 Programming Discussions
06-21-2010, 10:19 PM
Replies:
0
Would like custom thread content
Views:
368
Posted By
Frank T
Would like custom thread content
I have a music database and I'd like to be able to dynamically generate posts from the contents of my database. So far I know that templates are just xhtml snippets and can't call PHP code. I also...
Showing results 1 to 18 of 18
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:43 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.02474 seconds
Memory Usage
1,981KB
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)
post_thanks_navbar_search
(1)
search_results
(18)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(29)
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
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0006
(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(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(113, 0, 1,''); -> cached fperms for forum 113
(unspecified) fetch_permissions(113, 0, 1,''); -> cached fperms for forum 113
(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(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(113, 0, 1,''); -> cached fperms for forum 113
(unspecified) fetch_permissions(113, 0, 1,''); -> cached fperms for forum 113
(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(242, 0, 1,''); -> cached fperms for forum 242
(unspecified) fetch_permissions(242, 0, 1,''); -> cached fperms for forum 242
(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(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(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
FULLTEXT Search
php_sapi_name(): fpm-fcgi