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 27
Search took
0.00
seconds.
Search:
Posts Made By:
tonjohn
Forum:
vBulletin 3.8 Add-ons
06-22-2012, 03:45 PM
Replies:
245
Anti-Spam Options -
[GlowHost] Spam-O-Matic for vB 3.8 (StopForumSpam, Akismet, Auto-Moderation and more)
Views:
3,614,743
Posted By
tonjohn
The file is definitely there.
The file is definitely there.
Forum:
vBulletin 3.8 Add-ons
06-20-2012, 10:26 PM
Replies:
245
Anti-Spam Options -
[GlowHost] Spam-O-Matic for vB 3.8 (StopForumSpam, Akismet, Auto-Moderation and more)
Views:
3,614,743
Posted By
tonjohn
I installed the mod today and have run into...
I installed the mod today and have run into various issues:
- Unable to read PMs
Failed opening required 'includes/functions_ghsom.php' .... in <redacted>\forums\includes\class_dm_user.php(1833) :...
Forum:
vB4 General Discussions
02-05-2012, 05:34 PM
Replies:
5
Dev Tracker?
Views:
508
Posted By
tonjohn
I use this on my forum and am very happy with it:...
I use this on my forum and am very happy with it:
https://vborg.vbsupport.ru/showthread.php?t=227946
Forum:
vB3 Programming Discussions
02-05-2012, 05:31 PM
Replies:
1
Limiting access to forums based on data from a new table
Views:
379
Posted By
tonjohn
Anyone have any idea? :)
Anyone have any idea? :)
Forum:
vB3 General Discussions
02-05-2012, 05:29 PM
Replies:
3
How do I find threads created in certain time period?
Views:
821
Posted By
tonjohn
You can either go to the admincp -> maintenance...
You can either go to the admincp -> maintenance ->execute sql query OR you can do it in phpmyadmin.
Here is the actual query to select all threads created in January 2012:
SELECT t.*
FROM thread...
Forum:
vB3 General Discussions
02-03-2012, 02:25 AM
Replies:
3
How do I find threads created in certain time period?
Views:
821
Posted By
tonjohn
Yes. You can run your own query like: ...
Yes.
You can run your own query like:
SELECT t.*
FROM thread t
WHERE t.dateline >= unix_timestamp(START_OF_MONTH) AND t.dateline < unix_timestamp(END_OF_MONTH)
Forum:
vB3 Programming Discussions
02-02-2012, 04:21 PM
Replies:
1
Limiting access to forums based on data from a new table
Views:
379
Posted By
tonjohn
Limiting access to forums based on data from a new table
Lets say I have a new table "user_oauth" with the following columns: userid, oauthid
If users want to post in certain forums, they need an entry in this table.
Where do I need to hook to do...
Forum:
vB3 Programming Discussions
02-02-2012, 03:46 PM
Replies:
2
Unknown Function in class_postbit.php
Views:
978
Posted By
tonjohn
I assume the better idea is to hook...
I assume the better idea is to hook showthread_query?
Except in pyro.699's case, there is no need to alter the query or add another as the showthread_query selects all columns from the user table...
Forum:
vBulletin 4.x Add-ons
01-23-2012, 03:35 AM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
It seems like you should only query the Steam...
It seems like you should only query the Steam APIs on user login (or with a cron job that runs once a day; maybe add a button for users to refresh their own data) and store it in memcache. The forum...
Forum:
vBulletin 4.x Add-ons
01-09-2012, 06:34 PM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
What all needs to be changed for this to be...
What all needs to be changed for this to be compatible with vb 3.8? Is it just the templates that need to be updated?
Forum:
vBulletin 4.x Add-ons
01-09-2012, 05:57 PM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
What would be super cool is if you could limit...
What would be super cool is if you could limit access to a forum based on game ownership or other Steam user information.
Forum:
Modification Requests/Questions (Unpaid)
01-04-2012, 04:30 AM
Replies:
9
Sort forums alphabetic
Views:
1,126
Posted By
tonjohn
I recommend Sorky's subforum list control plugin...
I recommend Sorky's subforum list control plugin - https://vborg.vbsupport.ru/showthread.php?t=233084
It is the same plugin as used on the Steam Forums.
Forum:
vB3 Programming Discussions
11-16-2011, 09:34 PM
Replies:
4
custom permission error message for specific forum
Views:
1,385
Posted By
tonjohn
That worked, thanks!
That worked, thanks!
Forum:
vBulletin 4.x Add-ons
11-16-2011, 09:29 PM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
I'd be using this plugin to replace normal...
I'd be using this plugin to replace normal avatars with Steam avatars, show ingame status on the postbit, etc. So I need some fallback if the plugin can't connect to the Steam.
Forum:
vB3 Programming Discussions
11-16-2011, 06:40 PM
Replies:
4
custom permission error message for specific forum
Views:
1,385
Posted By
tonjohn
Similarly, I'd like to show a modified version of...
Similarly, I'd like to show a modified version of STANDARD_ERROR when users go to a specific forum (example/ forumid = 37).
I tried editing the STANDARD_ERROR template but $forum[forumid] doesn't...
Forum:
vBulletin 4.x Add-ons
11-09-2011, 06:10 PM
Replies:
144
vBulletin CMS Widgets -
[WIDGET] Recent Threads
Views:
33,701
Posted By
tonjohn
The exclusion list should simply be added to the...
The exclusion list should simply be added to the query, no?
Just move the line where you build the list before the query and add it to the WHERE clause.
Forum:
vBulletin 4.x Add-ons
11-09-2011, 05:58 PM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
Has the mod been updated to properly handle Steam...
Has the mod been updated to properly handle Steam server downtime or API timeouts?
Forum:
vB4 General Discussions
11-09-2011, 01:03 AM
Replies:
5
How to reference forum IDs in additional.css
Views:
847
Posted By
tonjohn
Inspecting the example you gave with Firebug, you...
Inspecting the example you gave with Firebug, you see the following (one forum in the list used as an example...
<li class="forumbit_post old L2" id="forum61">
<div class="forumrow table">...
Forum:
vBulletin 4.x Add-ons
09-28-2011, 10:43 PM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
Hmm, looking at my profile I see: Current...
Hmm, looking at my profile I see:
Current Steam Displayname: [FETCH ERROR]
Also, it shows "|0|0" at the end of my Steam Unique ID.
EDIT:
Figured it out - had to set curl options in...
Forum:
vBulletin 4.x Add-ons
09-28-2011, 10:38 PM
Replies:
539
Integration with vBulletin -
Steam Connect - Sign in with your Steam Account! [RC3]
Views:
517,832
Posted By
tonjohn
I'm not able to get this working either :/
I'm not able to get this working either :/
Forum:
vBulletin 4.x Add-ons
09-16-2011, 10:06 PM
Replies:
176
Forum Display Enhancements -
Sorky - SubForum List Control
Views:
44,088
Posted By
tonjohn
haha, yes - it has come in handy ;) If you...
haha, yes - it has come in handy ;)
If you click on the link in my previous post, you'll see that the forums aren't automatically sorted by your plugin (any that are are done so manually).
Forum:
vBulletin 4.x Add-ons
09-14-2011, 11:16 PM
Replies:
176
Forum Display Enhancements -
Sorky - SubForum List Control
Views:
44,088
Posted By
tonjohn
Sorky, Your plugin has been a god send for...
Sorky,
Your plugin has been a god send for us at forums.steampowered.com!
We are planning to migrate to vb4 soon and plan to use this plugin once again to manage our subforums. However, I have...
Forum:
vB3 General Discussions
01-31-2011, 08:26 PM
Replies:
2
"official poster" status indicator easily possible ?
Views:
432
Posted By
tonjohn
I have a usergroup called "third party reps" on...
I have a usergroup called "third party reps" on my forums. Every time a rep from another company signs up on our forums, we add them to that usergroup.
The special usergroup enables the following:...
Forum:
vB3 Programming Discussions
11-30-2010, 04:01 PM
Replies:
1
Ban Appeal System based on Report System
Views:
1,447
Posted By
tonjohn
You will also need to edit class_reportitems.php...
You will also need to edit class_reportitems.php in the includes folder.
Forum:
vB3 General Discussions
02-11-2010, 08:04 AM
Replies:
1
Developer Post indicator
Views:
706
Posted By
tonjohn
I found a nifty way to do this but it involves...
I found a nifty way to do this but it involves adding a new column to the database.
Is there any easy way to do this w/o having to modify the database or edit any of the .php files? I'd love to be...
Showing results 1 to 25 of 27
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
10:24 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.01589 seconds
Memory Usage
2,034KB
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
(36)
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.0007
(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(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(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(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(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(245, 0, 1,''); -> cached fperms for forum 245
(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(245, 0, 1,''); -> cached fperms for forum 245
(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(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(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(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(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(245, 0, 1,''); -> cached fperms for forum 245
(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(245, 0, 1,''); -> cached fperms for forum 245
(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(245, 0, 1,''); -> cached fperms for forum 245
(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(245, 0, 1,''); -> cached fperms for forum 245
(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(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(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(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