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 14
1
2
3
11
>
Last
»
Showing results 1 to 25 of 350
Search took
0.01
seconds.
Search:
Posts Made By:
shovel
Forum:
vB3 Programming Discussions
03-10-2008, 07:21 PM
Replies:
21
where in register.php can I add some custom db inputs....
Views:
2,681
Posted By
shovel
Absolutely. Rather than modifying your documents,...
Absolutely. Rather than modifying your documents, leave them be and create a hook via the AdminCP.
Goto...
AdminCP -> (left menu) Products & Plugins -> Plugin Manager
Click "Add New Plugin"...
Forum:
vB3 Programming Discussions
03-09-2008, 01:26 PM
Replies:
5
Any simple example of how to use a hook?
Views:
879
Posted By
shovel
As far as I understood he wanted to insert a...
As far as I understood he wanted to insert a variable. Either way, I can see your point Dismounted. I tend to over think at times, it happens haha.
Forum:
vB3 Programming Discussions
03-08-2008, 03:09 PM
Replies:
5
Any simple example of how to use a hook?
Views:
879
Posted By
shovel
$template_hook[postbit_start] is a variable for...
$template_hook[postbit_start] is a variable for the comment within the HTML when the postbit template is rendered. If you would like to print something dynamically within that template, follow the...
Forum:
vB3 Programming Discussions
03-07-2008, 02:49 PM
Replies:
5
Forum redirecting to mydomain.com with out www
Views:
880
Posted By
shovel
Alright, well let's look at it this way. You...
Alright, well let's look at it this way. You navigate to the www. While logged off, what do the links look like on the index page? Are they all www or just the domain.com?
Forum:
vB3 Programming Discussions
03-07-2008, 01:59 PM
Replies:
5
Forum redirecting to mydomain.com with out www
Views:
880
Posted By
shovel
Do you have an .htaccess performing a rewrite on...
Do you have an .htaccess performing a rewrite on the domain?
Forum:
vB3 Programming Discussions
03-05-2008, 02:59 PM
Replies:
4
regular expressions for post
Views:
784
Posted By
shovel
Actually with the implementation of the...
Actually with the implementation of the hook/plugin system you can process PHP code dynamically through the AdminCP. Goto..
AdminCP -> Plugins & Products -> Plugin Manager
If you add a plugin,...
Forum:
vB3 Programming Discussions
03-05-2008, 02:01 PM
Replies:
4
regular expressions for post
Views:
784
Posted By
shovel
Yeah you can run a regex against the posts, but...
Yeah you can run a regex against the posts, but to conserve process resources I'd probably run the regular expression on the creation of the post rather than on an entire set of data resulting in...
Forum:
vB3 Programming Discussions
03-05-2008, 12:21 PM
Replies:
3
Adding a $post "call-able" template.
Views:
721
Posted By
shovel
No I wouldn't think so.
No I wouldn't think so.
Forum:
vB3 Programming Discussions
03-05-2008, 12:20 PM
Replies:
13
User Atuh Check?
Views:
1,186
Posted By
shovel
Using a GET request to pull the data is a bit...
Using a GET request to pull the data is a bit vulnerable. It'll open the site to attackers slowly but surely. POST is commonly used for situations like this. Why does it have to be GET, I'm just...
Forum:
vB3 Programming Discussions
03-05-2008, 11:28 AM
Replies:
6
Integrate login with current table
Views:
1,208
Posted By
shovel
I'll keep my eye out for any ;) haha jk
I'll keep my eye out for any ;) haha jk
Forum:
vB3 Programming Discussions
03-04-2008, 07:01 PM
Replies:
7
Small problem I cant seem to resolve
Views:
833
Posted By
shovel
No problem. :)
No problem. :)
Forum:
vB3 Programming Discussions
03-04-2008, 06:38 PM
Replies:
7
Small problem I cant seem to resolve
Views:
833
Posted By
shovel
Remember to go ahead and bring in your back-end...
Remember to go ahead and bring in your back-end if you haven't..
require_once('./global.php');
require_once(DIR . '/includes/functions_newpost.php');
require_once(DIR ....
Forum:
vB3 Programming Discussions
03-04-2008, 06:19 PM
Replies:
7
Small problem I cant seem to resolve
Views:
833
Posted By
shovel
Make sure that your point that require_once()...
Make sure that your point that require_once() method to the appropriate directory, that was a bit taken right out of the vBulletin source.
Forum:
vB3 Programming Discussions
03-04-2008, 06:11 PM
Replies:
3
Using site nav/header in forums
Views:
694
Posted By
shovel
Yes you can modify the style and templates that...
Yes you can modify the style and templates that reflect your forum design. You can find everything in your AdminCP under "Styles and Templates" on the top left menu.
Forum:
vB3 Programming Discussions
03-04-2008, 06:08 PM
Replies:
3
Adding a $post "call-able" template.
Views:
721
Posted By
shovel
Call a hook from "postbit_display_complete"...
Call a hook from "postbit_display_complete" location. Within that hook, use this call..
eval('$post[txtonlinestatus]= "' . fetch_template('postbit_txtonlinestatus') . '";');
This will allow you...
Forum:
vB3 Programming Discussions
03-04-2008, 06:04 PM
Replies:
7
Small problem I cant seem to resolve
Views:
833
Posted By
shovel
Try... require_once(DIR ....
Try...
require_once(DIR . '/includes/functions_wysiwyg.php');
$your_text = convert_wysiwyg_html_to_bbcode($your_text, false);
Forum:
Modification Requests/Questions (Unpaid)
03-04-2008, 01:15 AM
Replies:
30
"Ears Burning" Hack
Views:
3,608
Posted By
shovel
Who will be scanned and who chooses to be...
Who will be scanned and who chooses to be notified. Correct.
Forum:
vB3 Programming Discussions
03-04-2008, 01:12 AM
Replies:
15
$bbuserinfo in php dosn't work ><
Views:
2,334
Posted By
shovel
Oh come on Boofo, these are the best times lol...
Oh come on Boofo, these are the best times lol watching people learn to code.
Forum:
vB3 Programming Discussions
03-03-2008, 10:40 PM
Replies:
6
Integrate login with current table
Views:
1,208
Posted By
shovel
I'd probably duplicate (roughly) the old users...
I'd probably duplicate (roughly) the old users table with a fresh vbulletin users table. It would take a little work, but it could happen.
Forum:
vB3 Programming Discussions
03-03-2008, 10:39 PM
Replies:
15
$bbuserinfo in php dosn't work ><
Views:
2,334
Posted By
shovel
global $vbulletin;
global $vbulletin;
Forum:
Modification Requests/Questions (Unpaid)
03-03-2008, 03:48 PM
Replies:
30
"Ears Burning" Hack
Views:
3,608
Posted By
shovel
Absolutely, yeah my thoughts are to add a...
Absolutely, yeah my thoughts are to add a transparent user group to the forum providing the permissions such as receiving PMs and posting guidelines (e.g. what forums can this functionality live...
Forum:
Modification Requests/Questions (Unpaid)
03-03-2008, 03:01 PM
Replies:
30
"Ears Burning" Hack
Views:
3,608
Posted By
shovel
I'm about 65% complete with this mod. I'm...
I'm about 65% complete with this mod. I'm finished with the lookup and insert methods for the hack at least. So far when you post a new thread or new reply (i think edits as well), the message is...
Forum:
vB3 Programming Discussions
03-02-2008, 10:52 PM
Replies:
1
need some help pls
Views:
620
Posted By
shovel
use... <!-- last10_threads_by_alshehi ...
use...
<!-- last10_threads_by_alshehi -->
<table cellpadding="2" cellspacing="3" style="border-collapse: collapse;border:1px solid #111;" id="AutoNumber1" width="100%">
<tr>
<td...
Forum:
vB3 Programming Discussions
02-29-2008, 11:31 AM
Replies:
28
[urgent] cant click
Views:
2,926
Posted By
shovel
Great idea Marco. :) Thanks for the help, I...
Great idea Marco. :) Thanks for the help, I couldn't think of anything else to do except trial and error methods.
Forum:
vB3 Programming Discussions
02-28-2008, 03:53 PM
Replies:
28
[urgent] cant click
Views:
2,926
Posted By
shovel
Here's another troubleshooting technique courtesy...
Here's another troubleshooting technique courtesy Elenna.
Showing results 1 to 25 of 350
Page 1 of 14
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
01:19 AM
.
-- 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.01922 seconds
Memory Usage
2,064KB
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
(24)
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.0043
(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(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(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(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(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(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(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(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(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(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(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(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