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.01
seconds.
Search:
Posts Made By:
merk
Forum:
vB3 General Discussions
03-24-2006, 08:03 PM
Replies:
2
When a hook is called...
Views:
874
Posted By
merk
You cant always use every variable above a hook...
You cant always use every variable above a hook call. But generally if it is above the hook, yes you can.
Forum:
vB3 General Discussions
03-24-2006, 10:06 AM
Replies:
3
posts per day determining what you can see
Views:
902
Posted By
merk
It is more complex than that - youll need to...
It is more complex than that - youll need to derive the number of days the user has been registered for in a plugin, and divide their posts by that number.
He wants activity, not number of posts.
Forum:
vB3 General Discussions
03-24-2006, 10:04 AM
Replies:
4
Understanding vBulletin's use of DHTML for popups and Quickedit
Views:
1,111
Posted By
merk
Well I havent finished yet, but Im getting there....
Well I havent finished yet, but Im getting there.
Thanks for the brain food ;)
Forum:
vB3 General Discussions
03-24-2006, 08:13 AM
Replies:
3
New frontpage???
Views:
838
Posted By
merk
You should be easily able to get that look with a...
You should be easily able to get that look with a prepackaged index page like vbportal or vbadvanced with template modifications.
Forum:
vB3 General Discussions
03-24-2006, 08:11 AM
Replies:
16
Exclude CERTAIN sub forums from showing on ForumHome
Views:
1,659
Posted By
merk
Try modifying forumhome_subforumbit_post or...
Try modifying forumhome_subforumbit_post or nopost with a conditional surrounded by it.
The issue will be if there are more subforums there will be a stray comma.
Forum:
vB3 General Discussions
03-24-2006, 08:06 AM
Replies:
4
Understanding vBulletin's use of DHTML for popups and Quickedit
Views:
1,111
Posted By
merk
I have not modified the javascript files one bit,...
I have not modified the javascript files one bit, nor have i missed out on any elements that were originally in the vBulletin templates.
They were of course, linked to <table>, <td> and the like,...
Forum:
vB3 General Discussions
03-24-2006, 05:30 AM
Replies:
4
Understanding vBulletin's use of DHTML for popups and Quickedit
Views:
1,111
Posted By
merk
Understanding vBulletin's use of DHTML for popups and Quickedit
Having recently completely changed my style from table based to XHTML + CSS based, it appears that I have broken most of the popups (search, quicklinks, thread tools, etc) while some like the popup...
Forum:
vB3 General Discussions
03-17-2006, 12:21 AM
Replies:
1
Usergroup Post Timer?
Views:
861
Posted By
merk
The way I deal with trouble makers is the...
The way I deal with trouble makers is the registered usergroup's posts go to the moderation queue always, and after they reach the level of promotions (30 days or 30 posts) they get a secondary...
Forum:
vB3 General Discussions
03-16-2006, 12:18 AM
Replies:
10
Can I create a page without headers for use in an Iframe?
Views:
1,138
Posted By
merk
Do you use the calendar normally as well or...
Do you use the calendar normally as well or purely in this frame?
Forum:
vB3 General Discussions
03-15-2006, 10:41 PM
Replies:
16
call a vBUlletin PHP script from a different php script
Views:
1,687
Posted By
merk
I still see no reason why mod_rewrite wont work -...
I still see no reason why mod_rewrite wont work - the # character has nothing to do with server processing.
Forum:
vB3 General Discussions
03-15-2006, 10:39 PM
Replies:
11
Conditionals and in_array...
Views:
1,500
Posted By
merk
Did you add in_array to the allowed functions...
Did you add in_array to the allowed functions list? You have to realise that the evaluation of a template at that point of saving a template does not touch (or read) the forumhome code in any way.
...
Forum:
vB3 General Discussions
03-14-2006, 10:37 AM
Replies:
2
user group join thingy?
Views:
968
Posted By
merk
And you're talking about what?
And you're talking about what?
Forum:
vB3 General Discussions
03-14-2006, 09:04 AM
Replies:
5
Exclude certain forums from "New Posts"
Views:
1,301
Posted By
merk
For the benefit of others, an array is not a...
For the benefit of others, an array is not a string.
You need to use implode.
Forum:
vB3 General Discussions
03-14-2006, 06:29 AM
Replies:
18
"Googiespell" Spell Check in Forums! (Ajax Driven!)
Views:
2,910
Posted By
merk
It would be a rather huge job to integrate into...
It would be a rather huge job to integrate into the vBulletin editor, I doubt many people would feel the effort was worth it.
Forum:
vB3 General Discussions
03-14-2006, 02:53 AM
Replies:
16
call a vBUlletin PHP script from a different php script
Views:
1,687
Posted By
merk
Why are you calling anything prior to the...
Why are you calling anything prior to the showthread script?
Forum:
vB3 General Discussions
03-14-2006, 12:57 AM
Replies:
6
Which of these code changes are 'safe'/correct?
Views:
1,030
Posted By
merk
The only way you'll learn is when you break...
The only way you'll learn is when you break something. Ive had a few 'oh shit looks like im rolling back to last nights backup' moments :)
Looks fine.
Forum:
vB3 General Discussions
03-14-2006, 12:23 AM
Replies:
10
Can I create a page without headers for use in an Iframe?
Views:
1,138
Posted By
merk
Try linking to calendar.php in the iframe as...
Try linking to calendar.php in the iframe as "calendar.php?insideframe=1"
And a plugin in style_fetch
if(THIS_SCRIPT == 'calendar' AND $_REQUEST['insideframe'] == 1)
{
$styleid = ID;
}
Forum:
vB3 General Discussions
03-14-2006, 12:20 AM
Replies:
16
call a vBUlletin PHP script from a different php script
Views:
1,687
Posted By
merk
You cant have the # character in a query string....
You cant have the # character in a query string. It is a delimiter that the browser uses to scroll.
Forum:
vB3 General Discussions
03-14-2006, 12:15 AM
Replies:
4
Today's Posts
Views:
1,268
Posted By
merk
This is incorrect for vBulletin 3.5 - a thread...
This is incorrect for vBulletin 3.5 - a thread only disappears from the search pages once you've visited it. Today's Posts does not behave like this and they will still appear even if read.
...
Forum:
vB3 General Discussions
03-14-2006, 12:07 AM
Replies:
6
Which of these code changes are 'safe'/correct?
Views:
1,030
Posted By
merk
The code dealing with $vbulletin->url has nothing...
The code dealing with $vbulletin->url has nothing to do with closed threads.
The logic is as follows:
Is the thread visible (not moderated) or is the user a moderator?
YES! --> Go to that...
Forum:
vB3 General Discussions
03-13-2006, 09:01 PM
Replies:
16
call a vBUlletin PHP script from a different php script
Views:
1,687
Posted By
merk
There might be, but when there are easier ways I...
There might be, but when there are easier ways I really dont see a need.
mod_rewrite is the solution you're after.
Forum:
vB3 General Discussions
03-13-2006, 08:56 PM
Replies:
16
call a vBUlletin PHP script from a different php script
Views:
1,687
Posted By
merk
So make a copy of showthread.php and rename it to...
So make a copy of showthread.php and rename it to what you want.
Forum:
vB3 General Discussions
03-13-2006, 08:52 PM
Replies:
3
Is there a styleid if/else statement?
Views:
929
Posted By
merk
I only woke up 20 minutes ago :p
I only woke up 20 minutes ago :p
Forum:
vB3 General Discussions
03-13-2006, 08:51 PM
Replies:
16
call a vBUlletin PHP script from a different php script
Views:
1,687
Posted By
merk
Why are you trying to load showthread.php like...
Why are you trying to load showthread.php like that?
Forum:
vB3 General Discussions
03-13-2006, 08:36 PM
Replies:
4
Today's Posts
Views:
1,268
Posted By
merk
forum/search.php?do=getdaily&days=2
forum/search.php?do=getdaily&days=2
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
02:45 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.02295 seconds
Memory Usage
2,066KB
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
(22)
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.0075
(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(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(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(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