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...
Showing results 1 to 23 of 23
Search took
0.00
seconds.
Search:
Posts Made By:
byon
Forum:
vB3 Programming Discussions
05-30-2007, 10:45 AM
Replies:
5
possible to include(global.php) in a class?
Views:
936
Posted By
byon
How would include_once be different from...
How would include_once be different from require_once? i guess your statement was, Instead of include, try require_once. yeah?
Sorry to hijack this thread, but it would be more logical to type...
Forum:
vB3 General Discussions
05-24-2007, 11:55 AM
Replies:
0
log issues
Views:
590
Posted By
byon
log issues
Hi all
I'm having this issue in my error logs while accessing my mod pages. Do you have the same problem? :(
[client 123.4.58.77] PHP Notice: Undefined index: HTTPS in...
Forum:
vB3 Programming Discussions
05-24-2007, 02:44 AM
Replies:
1
Custom Login
Views:
1,037
Posted By
byon
You've forgotten the salt under, $password =...
You've forgotten the salt under,
$password = md5(md5(addslashes($_POST['password'])));
check out the vbulletin articles at the navbar ontop. lots of tutorials there. :P
Forum:
vBulletin 3 Articles
05-22-2007, 10:00 PM
Replies:
3
[How-To] Adding Link to USERCP Navbar
Views:
3,383
Posted By
byon
[How-To] Adding Link to USERCP Navbar
Hello
I felt i needed to contribute this post to the articles since i couldn't find a good one anywhere.
This tutorial explains how to create an additional link to your USERCP Navbar
*Note - I...
Forum:
vB3 Programming Discussions
05-22-2007, 04:31 PM
Replies:
2
Get User info based on ID
Views:
792
Posted By
byon
i thought something like...
i thought something like $vbulletin->userinfo['username'] works as well? why is there a need to fetch_userinfo again?
Forum:
vB3 Programming Discussions
05-22-2007, 12:40 PM
Replies:
5
Foreach Loop & Templates
Views:
1,065
Posted By
byon
ah. now everything makes sense. okay. ...
ah. now everything makes sense.
okay.
lemme work things out from here. you've been very helpful! how can i reeturn the favour?
Forum:
vB3 Programming Discussions
05-22-2007, 12:32 PM
Replies:
5
Foreach Loop & Templates
Views:
1,065
Posted By
byon
Hi brad, this looks good. but this is going to...
Hi brad, this looks good. but this is going to result in templates in a template for my site. is this perfectly normal?
Forum:
vB3 Programming Discussions
05-22-2007, 12:19 PM
Replies:
5
Foreach Loop & Templates
Views:
1,065
Posted By
byon
Foreach Loop & Templates
Hi
I've been reading around and looking for solution on how i can actually print out a full list of table information using the existing vBulletin infrastructure.
Today i've been successfully...
Forum:
vBulletin 3 Articles
05-22-2007, 09:38 AM
Replies:
17
Single Signin / Login Integration Tip
Views:
23,181
Posted By
byon
these are the stuffs u need. login.php ...
these are the stuffs u need.
login.php
$includes = Array(
'config.php');
foreach($includes as $include)
require_once($include);
require_once(DIR ....
Forum:
vB3 Programming Discussions
05-17-2007, 09:18 AM
Replies:
3
$vbulletin->userinfo['blahblah']
Views:
773
Posted By
byon
hmm thks for the replies. but i dont understand...
hmm thks for the replies.
but i dont understand where are both of you tryin to lead me to. cuz i couldnt find those codes anywhere..
Forum:
vB3 Programming Discussions
05-17-2007, 08:01 AM
Replies:
3
$vbulletin->userinfo['blahblah']
Views:
773
Posted By
byon
$vbulletin->userinfo['blahblah']
Hi
This should be a simple question.
Where can i locate the place where the script creates, $vbulletin->userinfo['******']?
What i am wanting to do is to add more customfield (e.g.,...
Forum:
vB3 Programming Discussions
05-14-2007, 03:32 AM
Replies:
0
Login Once (Session)
Views:
698
Posted By
byon
Login Once (Session)
Hi
I've been following this thread (https://vborg.vbsupport.ru/showthread.php?t=146089) very closely, have worked out the login mechanism that validates with the database (table_prefix)users. I'm...
Forum:
vB3 Programming Discussions
05-07-2007, 06:24 AM
Replies:
8
Retrieving Data from other Tables
Views:
977
Posted By
byon
Greetings, This helps! :D Thanks!
Greetings,
This helps! :D
Thanks!
Forum:
vB3 Programming Discussions
05-04-2007, 04:11 PM
Replies:
8
Retrieving Data from other Tables
Views:
977
Posted By
byon
thanks. :)
thanks. :)
Forum:
vB3 Programming Discussions
05-04-2007, 06:18 AM
Replies:
0
Validating customfields
Views:
738
Posted By
byon
Validating customfields
Hi
I've got a question here, how do i validate custom field data before it get's updated into the database?
This is found inside, profile.php
// easy stuff
...
Forum:
vB3 Programming Discussions
05-04-2007, 04:57 AM
Replies:
8
Retrieving Data from other Tables
Views:
977
Posted By
byon
oh. okay. just wondering, can the templates...
oh. okay.
just wondering, can the templates found under admincp also be found as a template file?
Forum:
vBulletin 3.8 Add-ons
05-04-2007, 04:54 AM
Replies:
828
Major Additions -
Living Avatars
Views:
206,617
Posted By
byon
good stuffs :)
good stuffs :)
Forum:
vBulletin 3.6 Template Modifications
05-04-2007, 01:28 AM
Replies:
21
Add XFire URLS to User Profile Info
Views:
3,875
Posted By
byon
you can find out under AdminCP -> User Profile...
you can find out under AdminCP -> User Profile Fields
Forum:
vB3 Programming Discussions
05-03-2007, 09:44 AM
Replies:
8
Retrieving Data from other Tables
Views:
977
Posted By
byon
thanks dismounted. yup. some are. what...
thanks dismounted.
yup.
some are. what about the other tables which are not in the same database?
secondly, how do i go about fetching these stuffs printed? or making it integrated like,...
Forum:
vB3 Programming Discussions
05-03-2007, 09:30 AM
Replies:
8
Retrieving Data from other Tables
Views:
977
Posted By
byon
Retrieving Data from other Tables
Hi
I've spent two days looking for good examples (mods) on how they would insert/update data from the other customised tables. I can't find any examples good for my vBB 3.6.5.
I'm trying to...
Forum:
vB3 Programming Discussions
05-03-2007, 08:03 AM
Replies:
12
Login Verification Help
Views:
1,572
Posted By
byon
ill search for existing implementations on the...
ill search for existing implementations on the board, hopefully there is.
thanks :)
Forum:
vB3 Programming Discussions
05-03-2007, 05:18 AM
Replies:
12
Login Verification Help
Views:
1,572
Posted By
byon
sorry to jump track abit. 1. does this...
sorry to jump track abit.
1. does this immediately give us the hash that matches what the database has, if the password is correct?
2. where can we find implementations of cookies/sessions through...
Forum:
vB3 General Discussions
05-03-2007, 05:11 AM
Replies:
0
Checking for Duplicate Custom Field from Table
Views:
565
Posted By
byon
Checking for Duplicate Custom Field from Table
I'm not sure if i've posted this to the right section, hopefully.
Hi people
I've created several custom fields, each custom fields are suppose to contain unique information that other users...
Showing results 1 to 23 of 23
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:31 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.03944 seconds
Memory Usage
2,016KB
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)
post_thanks_navbar_search
(1)
search_results
(23)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(12)
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
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0007
(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(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(187, 0, 1,''); -> cached fperms for forum 187
(unspecified) fetch_permissions(187, 0, 1,''); -> cached fperms for forum 187
(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(187, 0, 1,''); -> cached fperms for forum 187
(unspecified) fetch_permissions(187, 0, 1,''); -> cached fperms for forum 187
(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(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(235, 0, 1,''); -> cached fperms for forum 235
(unspecified) fetch_permissions(192, 0, 1,''); -> cached fperms for forum 192
(unspecified) fetch_permissions(192, 0, 1,''); -> cached fperms for forum 192
(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(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