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 8
1
2
3
>
Last
»
Showing results 1 to 25 of 194
Search took
0.01
seconds.
Search:
Posts Made By:
Cryo
Forum:
vBulletin 4.x Add-ons
09-08-2010, 12:00 AM
Replies:
2,287
Major Additions -
Tournaments, Ladders & Leagues Manager v4.x
Views:
346,243
Posted By
Cryo
I use this to run StarCraft II tournaments on my...
I use this to run StarCraft II tournaments on my forum. We have a 64 person tournament going right now and it's working out great. It would be nice if we were allowed to attach files and assign...
Forum:
Style and Graphics Requests (Unpaid)
04-04-2010, 08:49 AM
Replies:
1
Default vBulletin 3.8.5 Skin
Views:
1,529
Posted By
Cryo
Just go to your Admin CP, click on Styles &...
Just go to your Admin CP, click on Styles & Templates, click on Style Manager then click on "Add New Style." The style you create will be the default skin.
Forum:
Modification Requests/Questions (Unpaid)
04-04-2010, 08:46 AM
Replies:
5
Avatar only 100 x 100 pixels?!
Views:
1,546
Posted By
Cryo
You can't set a minimum without coding or through...
You can't set a minimum without coding or through a plugin. Unfortunately, I am not sure how to do this, it would probably take place during some of the post-upload processing. However, you can...
Forum:
vB4 General Discussions
03-27-2010, 05:37 PM
Replies:
5
Using memberaction_dropdown in a custom template?
Views:
1,227
Posted By
Cryo
Ah, seems so simple now! Thank you both, it...
Ah, seems so simple now! Thank you both, it worked. :)
Forum:
vB4 General Discussions
03-26-2010, 06:13 AM
Replies:
5
Using memberaction_dropdown in a custom template?
Views:
1,227
Posted By
Cryo
Thanks very much for the reply. I added in the...
Thanks very much for the reply. I added in the manner I thought it should be, but the only thing I get is a bracket. If you wouldn't mind, could you point me in the right direction to make this...
Forum:
vB4 General Discussions
03-26-2010, 12:18 AM
Replies:
5
Using memberaction_dropdown in a custom template?
Views:
1,227
Posted By
Cryo
Using memberaction_dropdown in a custom template?
Hello,
I have a plugin that is acting as a postbit replacement. Basically, the plugin calls my custom template then registers post variables and makes it accessible to the postbit_legacy...
Forum:
vB4 General Discussions
11-30-2009, 08:48 PM
Replies:
1
Changing "New Posts", "Private Messages", "FAQ", etc. colors?
Views:
686
Posted By
Cryo
Changing "New Posts", "Private Messages", "FAQ", etc. colors?
Hello,
I'm trying to figure out how to change the links under the tabs in vB4 styles and cannot find the StyleVar for it. Here is a screenshot of what I'm looking to change in case the title was...
Forum:
vB3 General Discussions
07-03-2009, 07:15 PM
Replies:
7
how do i Add image to Usergroup
Views:
1,439
Posted By
Cryo
Oh, if you want the red to display to, just do...
Oh, if you want the red to display to, just do this....
First box...
<img src="http://www.guruhacks.net/vb/images/statusicon/admin.gif" align="absmiddle" title="Admin" border="0"><span...
Forum:
vB3 General Discussions
07-03-2009, 07:13 PM
Replies:
5
Page goes blank after posting
Views:
880
Posted By
Cryo
Most likely your page is erroring out due to a...
Most likely your page is erroring out due to a script issue but error reporting is disabled. I would recommend temporarily turning error reporting on via the .htaccess. You can do that by creating...
Forum:
vB3 General Discussions
07-03-2009, 07:07 PM
Replies:
8
My forum keeps logging me out
Views:
1,886
Posted By
Cryo
Did you recently change your cookie settings or...
Did you recently change your cookie settings or move your forum? If you did, download the vB package from the members area of vbulletin.com and locate the tools.php in the "do_not_upload" folder. ...
Forum:
vB3 General Discussions
07-03-2009, 07:02 PM
Replies:
7
how do i Add image to Usergroup
Views:
1,439
Posted By
Cryo
AdminCP -> Usergroups -> Edit Usergroup For...
AdminCP -> Usergroups -> Edit Usergroup
For the first "markup" field in the usergroup...
<img src="http://www.guruhacks.net/vb/images/statusicon/admin.gif" align="absmiddle" border="0">
...
Forum:
vB3 General Discussions
07-03-2009, 12:53 PM
Replies:
2
How to disable all mods?
Views:
3,609
Posted By
Cryo
Open your /includes/config.php and add... ...
Open your /includes/config.php and add...
define('DISABLE_HOOKS', true);
Directly below...
<?php
Forum:
vB3 General Discussions
07-03-2009, 12:43 PM
Replies:
1
Reputation
Views:
473
Posted By
Cryo
I use Enhanced Reputation Checks...
I use Enhanced Reputation Checks (https://vborg.vbsupport.ru/showthread.php?t=199977) on my forums. You can set a cap on reputation to 1 so no matter what that's all that's given.
Forum:
vB3 General Discussions
07-03-2009, 12:38 PM
Replies:
5
how can i make this display the latest 5 threads or whatever?
Views:
784
Posted By
Cryo
Hi Zero, If you're just looking for the 5...
Hi Zero,
If you're just looking for the 5 most recent posts you can do a simple query such as this...
SELECT
b.title,
a.threadid,
a.username,
a.userid,
a.dateline
Forum:
Community Lounge
06-28-2009, 10:53 PM
Replies:
38
Michael Jackson ~ Hero or Zero
Views:
5,145
Posted By
Cryo
Neither. Definitely wasn't a zero, he was an...
Neither.
Definitely wasn't a zero, he was an amazing performer.
Definitely wasn't a hero. Nothing he did was heroic, period. Calling him a hero is an insult to the word, or indicates you...
Forum:
vB3 Programming Discussions
06-28-2009, 10:16 PM
Replies:
39
Cutom Field on Custom Page??
Views:
3,346
Posted By
Cryo
Change... $conditional = (whatever);......
Change...
$conditional = (whatever);... to...
$this->post[conditional]Then reference $post[conditional] in the template.
Edit: To clarify, this is what you would use if you're trying to...
Forum:
vB3 General Discussions
06-28-2009, 09:52 PM
Replies:
9
Assigned Admin authority function
Views:
624
Posted By
Cryo
Right, but he's worried about him making a backup...
Right, but he's worried about him making a backup of the forums (and for what it's worth, I agree about not making him an admin if this is a concern). You don't need 'canrunqueries' access for that....
Forum:
vB3 General Discussions
06-28-2009, 09:48 PM
Replies:
3
Paid Subscriptions - importing
Views:
411
Posted By
Cryo
If you're upgrading from 3.6 to 3.8 it should...
If you're upgrading from 3.6 to 3.8 it should have no impact on the subscriptions as they're stored in the database and should either remain the same or be updated. I have had subscriptions while...
Forum:
vB3 General Discussions
06-28-2009, 06:18 PM
Replies:
1
external vbulletin information script isn't working
Views:
406
Posted By
Cryo
Can you provide the errors?
Can you provide the errors?
Forum:
vB3 Programming Discussions
06-28-2009, 06:05 PM
Replies:
3
mysql query
Views:
643
Posted By
Cryo
You could use a PHP script in your forum home...
You could use a PHP script in your forum home directory like this...
<?
include("./global.php");
$get_SQL = "SELECT
a.userid,
a.username,
...
Forum:
vB3 General Discussions
06-28-2009, 06:03 PM
Replies:
3
this plugin code makes my forums have a database error
Views:
437
Posted By
Cryo
No problem. You can also add something like this...
No problem. You can also add something like this to fix that problem...
$news3 = $db->query_first('SELECT title,threadid,views,replycount,postusername,postuserid,dateline FROM ' . TABLE_PREFIX ....
Forum:
vB3 General Discussions
06-28-2009, 05:37 PM
Replies:
3
this plugin code makes my forums have a database error
Views:
437
Posted By
Cryo
From your error... $news3_post =...
From your error...
$news3_post = $db->query_first('SELECT pagetext FROM ' . TABLE_PREFIX . 'post WHERE 1 AND threadid = ' . $news3[threadid] . ' ORDER BY dateline ASC LIMIT 0 , 1');
The...
Forum:
vB3 General Discussions
06-28-2009, 05:19 PM
Replies:
9
Assigned Admin authority function
Views:
624
Posted By
Cryo
I would recommend against doing it that way. ...
I would recommend against doing it that way. Users that are listed as Super Administrators have permissions to modify other administrator's permissions. However, you should look at see if your ID...
Forum:
vB3 General Discussions
06-28-2009, 12:56 AM
Replies:
9
Assigned Admin authority function
Views:
624
Posted By
Cryo
You need to login to the Admin CP, go to the...
You need to login to the Admin CP, go to the "Usergroups" category then click on "Administrator Permissions." From there click on "Edit Permissions" for the proper user and the option should be...
Forum:
vB3 Programming Discussions
06-27-2009, 09:13 PM
Replies:
10
vBulletin integration help?
Views:
788
Posted By
Cryo
You can use the variable...
You can use the variable $vbulletin->userinfo["lastvisit"] which returns a timestamp from the user's last forum visit. From there, select posts with a timestamp GREATER THAN that. An example query...
Showing results 1 to 25 of 194
Page 1 of 8
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
11:09 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.06247 seconds
Memory Usage
2,054KB
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
(11)
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.0029
(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(226, 0, 1,''); -> cached fperms for forum 226
(unspecified) fetch_permissions(226, 0, 1,''); -> cached fperms for forum 226
(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(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(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(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
(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(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(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(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
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
FULLTEXT Search
php_sapi_name(): fpm-fcgi