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 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
0.03
seconds.
Search:
Posts Made By:
tubedogg
Forum:
Community Lounge
12-22-2004, 04:02 PM
Replies:
31
phpBB virus... look at this..
Views:
4,410
Posted By
tubedogg
Somebody copied the URLs directly off another...
Somebody copied the URLs directly off another forum, it looks like, and therefore the dots in the middle were copied into the linked URL as well.
Forum:
Community Lounge
12-22-2004, 03:59 PM
Replies:
32
Little problem with FireFox
Views:
3,046
Posted By
tubedogg
The only problem is, MSIE would probably have a...
The only problem is, MSIE would probably have a leak in the gas tank causing the car to explode upon impact when it (inevitably) crashed.
(Just a quick side note: MSIE can't render all...
Forum:
vB3 Programming Discussions
12-14-2004, 04:22 PM
Replies:
2
exiting a loop early
Views:
1,058
Posted By
tubedogg
It depends what kind of loop you are doing...but...
It depends what kind of loop you are doing...but in any event you will have to determine some kind of exit condition, where if that condition is true it will exit the loop.
In a while(), for() or...
Forum:
vB3 Programming Discussions
12-14-2004, 12:06 AM
Replies:
6
Help with query
Views:
1,158
Posted By
tubedogg
Just noticed the problem...the last ." ...
Just noticed the problem...the last
."
shouldn't be there...oops...
Forum:
vBulletin 3.0 Full Releases
12-13-2004, 06:18 PM
Replies:
45
Reputation Click Tracker
Views:
9,203
Posted By
tubedogg
Not a bad idea... I'll be doing an updated...
Not a bad idea...
I'll be doing an updated version later today or tommorrow that takes this into account, plus the template caching and showing the admin how many times he has given overall.
Forum:
vBulletin 3.0 Full Releases
12-13-2004, 06:17 PM
Replies:
45
Reputation Click Tracker
Views:
9,203
Posted By
tubedogg
The query looks for up to the last X times you've...
The query looks for up to the last X times you've given in the last 24 hours, where X is the daily limit...
AND dateline >= ".(time()-86400)."
Unless time() is malfunctioning on your server, I...
Forum:
Modification Requests/Questions (Unpaid)
12-13-2004, 06:12 PM
Replies:
2
Here is a good question to ask about PM
Views:
1,014
Posted By
tubedogg
Edit the pm_showpm template and change this ...
Edit the pm_showpm template and change this
<input type="checkbox" name="pm[$pm[pmid]]" id="deletepm" value="true" />
to this
<input type="checkbox" name="pm[$pm[pmid]]" id="deletepm" value="true"...
Forum:
Modification Requests/Questions (Unpaid)
12-13-2004, 06:06 PM
Replies:
2
Want views instead of posts
Views:
809
Posted By
tubedogg
You could do SELECT SUM(views) FROM thread; ...
You could do
SELECT SUM(views) FROM thread;
but that would cause a full table scan every time which if you have a lot of threads could be A Bad Thing?.
Forum:
Modification Requests/Questions (Unpaid)
12-13-2004, 06:04 PM
Replies:
1
Paid Subscriptions Links
Views:
923
Posted By
tubedogg
I don't believe there's a way to do that by...
I don't believe there's a way to do that by default.
Forum:
Modification Requests/Questions (Unpaid)
12-13-2004, 06:03 PM
Replies:
6
Change default days till threads are hidden
Views:
858
Posted By
tubedogg
Yes -1 = the beginning.
Yes -1 = the beginning.
Forum:
vB3 General Discussions
12-13-2004, 01:33 AM
Replies:
6
What do I need to hack?
Views:
1,118
Posted By
tubedogg
If you are looking for a good code editor, there...
If you are looking for a good code editor, there are two I recommend.
First is EditPlus (http://www.editplus.com/)...it's not the prettiest thing ever but it does the job, and it has lots of...
Forum:
Modification Requests/Questions (Unpaid)
12-12-2004, 10:03 PM
Replies:
2
No New threads - but replys ok?
Views:
799
Posted By
tubedogg
Just set permissions such that users can't start...
Just set permissions such that users can't start new threads but can reply to them.
Forum:
vB3 General Discussions
12-12-2004, 09:11 PM
Replies:
4
How To Change Settings For All Users At Once...
Views:
1,019
Posted By
tubedogg
Go the area I specified above...there's a...
Go the area I specified above...there's a drop-down menu that has the items you want on it. Select one, hit the button, hit Continue on the next screen, rinse & repeat for each option you want to set.
Forum:
vB3 General Discussions
12-12-2004, 08:27 PM
Replies:
4
How To Change Settings For All Users At Once...
Views:
1,019
Posted By
tubedogg
Go to Admin CP > Import & Maintenance > Execute...
Go to Admin CP > Import & Maintenance > Execute SQL Query and select the ones you want from the drop-down menu. It will run them automatically and apply the selected item to all users.
Forum:
vBulletin 3.0 Full Releases
12-12-2004, 08:24 PM
Replies:
45
Reputation Click Tracker
Views:
9,203
Posted By
tubedogg
Yes you're right...admins have no limit. However...
Yes you're right...admins have no limit. However determining how many times an admin has given reputation could put a lot of load on the server, if the admin has given a lot.
A condition could be...
Forum:
vBulletin 3.0 Full Releases
12-12-2004, 07:25 PM
Replies:
45
Reputation Click Tracker
Views:
9,203
Posted By
tubedogg
Easy fix. In usercp.php find this line: ...
Easy fix.
In usercp.php find this line:
$earliest = $check['dateline'];
Move it right below $sofar++; so it's above the }, i.e.
$sofar++;
$earliest = $check['dateline'];
}
Forum:
Modification Requests/Questions (Unpaid)
12-12-2004, 07:03 PM
Replies:
6
Change default days till threads are hidden
Views:
858
Posted By
tubedogg
Run this query: UPDATE forum SET daysprune =...
Run this query:
UPDATE forum SET daysprune = -1;
Will set all forums to show all threads.
Or for a specific number of days:
UPDATE forum SET daysprune = 30;
Will set all forums to show threads...
Forum:
vB3 Programming Discussions
12-12-2004, 06:13 PM
Replies:
6
Help with query
Views:
1,158
Posted By
tubedogg
Can you post the surrounding code? i.e. two lines...
Can you post the surrounding code? i.e. two lines above through about five lines below.
Forum:
vB3 Programming Discussions
12-12-2004, 06:00 PM
Replies:
6
Help with query
Views:
1,158
Posted By
tubedogg
What's the error you are getting? Two notes...
What's the error you are getting?
Two notes just off the top...you should be taking into account the TABLE_PREFIX, like shown below, and you don't need single quotes around an integer such as the...
Forum:
vB3 General Discussions
12-12-2004, 04:47 AM
Replies:
2
Quick Question
Views:
828
Posted By
tubedogg
<if condition="$permissions['adminpermissions'] &...
<if condition="$permissions['adminpermissions'] & CANCONTROLPANEL">content here</if>
should work.
Forum:
Modification Requests/Questions (Unpaid)
12-12-2004, 03:20 AM
Replies:
1
Cross Domain/Host Login Question
Views:
859
Posted By
tubedogg
On most servers you can't, for security reasons....
On most servers you can't, for security reasons. This is a good thing, unless you and you alone control the entire server.
Forum:
vB3 Programming Discussions
12-12-2004, 01:38 AM
Replies:
2
why is this array empty?
Views:
1,059
Posted By
tubedogg
$adduser = $DB_site->query should be $adduser...
$adduser = $DB_site->query
should be
$adduser = $DB_site->query_first
Forum:
Modification Requests/Questions (Unpaid)
12-11-2004, 10:19 PM
Replies:
5
[Mini Mod]How long until you can give more reputation?
Views:
1,054
Posted By
tubedogg
That was easier than I thought. Find it posted...
That was easier than I thought. Find it posted here (https://vborg.vbsupport.ru/showthread.php?t=72781).
Forum:
vBulletin 3.0 Full Releases
12-11-2004, 10:00 PM
Replies:
45
Reputation Click Tracker
Views:
9,203
Posted By
tubedogg
Reputation Click Tracker
(I couldn't think of a good name for this, so there you go...)
This is a relatively simple hack that adds a box to the User CP showing a user how many reputation clicks he has given in the last 24...
Forum:
Modification Requests/Questions (Unpaid)
12-11-2004, 09:08 PM
Replies:
5
[Mini Mod]How long until you can give more reputation?
Views:
1,054
Posted By
tubedogg
Where would this information be displayed? I...
Where would this information be displayed? I assume User CP...that wouldn't be too hard. I'll give it a shot tonight.
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
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
04:44 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.02952 seconds
Memory Usage
2,081KB
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)
pagenav_pagelinkrel
(1)
post_thanks_navbar_search
(1)
search_results
(25)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(21)
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.0102
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(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(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(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(112, 0, 1,''); -> cached fperms for forum 112
(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(112, 0, 1,''); -> cached fperms for forum 112
(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(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(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(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(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(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(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(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(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(33, 0, 1,''); -> cached fperms for forum 33
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
FULLTEXT Search
php_sapi_name(): fpm-fcgi