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 332
Search took
0.01
seconds.
Search:
Posts Made By:
rake
Forum:
vB3 Programming Discussions
04-23-2006, 01:46 PM
Replies:
3
php sql vs vbulletin sql
Views:
919
Posted By
rake
Sure there is. :) ...
Sure there is. :)
http://www.vbulletin.com/docs/html/codestandards_sql_query
Forum:
vB3 Programming Discussions
04-23-2006, 01:41 PM
Replies:
4
MySQL Problem
Views:
861
Posted By
rake
Those are unix-timestamps. They represent the...
Those are unix-timestamps. They represent the number of seconds that have passed since the start of the unix era (January 1st, 1970). You can use the date() function to format them. Take a look here...
Forum:
Community Lounge
07-01-2005, 02:21 PM
Replies:
6
errr O_O! error
Views:
919
Posted By
rake
I can confirm that. I double-checked that my...
I can confirm that. I double-checked that my e-mail address is correct, both in my usercp and in the members area.
Forum:
vBulletin Pre-Sales Questions
03-29-2005, 08:41 PM
Replies:
3
RPG Hack question
Views:
1,204
Posted By
rake
Obviously he's unlicensed, since he's posting in...
Obviously he's unlicensed, since he's posting in the pre-sales forum.
bryan007, after purchasing a vbulletin license, and moving to this particular forum software, you will be able to download and...
Forum:
vB3 General Discussions
01-16-2005, 01:57 PM
Replies:
7
The Single MOST ANNOYING THING about vbulletin 3.
Views:
1,276
Posted By
rake
Just use exit; and it'll work fine. ...
Just use exit; and it'll work fine.
print_r($arr);
echo "execution is stopped and you'll get the array structure";
exit;
Forum:
vB3 General Discussions
01-16-2005, 01:54 PM
Replies:
4
just wondered
Views:
1,099
Posted By
rake
Erm... The "system" consists of people just...
Erm... The "system" consists of people just starting new threads and attaching files. "Feedback" are the replies to those threads.. Or maybe i don't understand what you're asking?
Forum:
vB3 General Discussions
01-16-2005, 01:49 PM
Replies:
74
[cinq's vbArticles v1.0 Hack] - The development process
Views:
7,002
Posted By
rake
This is the proper way to do pagination. It's...
This is the proper way to do pagination. It's from one of my scripts, and the original code is taken right out of vbulletin. All you need to edit are the two queries, the template that is called, and...
Forum:
vB3 General Discussions
01-13-2005, 06:35 AM
Replies:
9
determing if page is an error or redirect
Views:
1,031
Posted By
rake
then edit the STANDARDERROR template.
then edit the STANDARDERROR template.
Forum:
vB3 General Discussions
01-13-2005, 06:29 AM
Replies:
6
randomizing images
Views:
1,041
Posted By
rake
That's the wrong way to do it. You need to read...
That's the wrong way to do it. You need to read the file data, set some header information and then echo it out. Look at attachment.php for an example.
Forum:
vB3 Programming Discussions
01-13-2005, 06:22 AM
Replies:
1
Execute SQL Query
Views:
1,098
Posted By
rake
SELECT...
SELECT subscriptionlog.*,user.username,user.userid,user.email FROM subscriptionlog LEFT JOIN user USING(userid) WHERE subscriptionid=X
try that query.
Forum:
vB3 Programming Discussions
01-13-2005, 06:20 AM
Replies:
28
time/date limit in query
Views:
3,250
Posted By
rake
to get the forum name you'll need to join the...
to get the forum name you'll need to join the forum table USING(forumid) which is equal to ON(thread.forumid=forum.forumid)
Forum:
vB3 Programming Discussions
01-13-2005, 06:18 AM
Replies:
4
Functions_Showthread Error
Views:
1,063
Posted By
rake
this is the piece of code that's causing the...
this is the piece of code that's causing the errors:
eval('$retval = "' . fetch_template($maintemplatename) . '";');
and it's in the construct_postbit function. Revert your postbit templates.
Forum:
vB3 Programming Discussions
01-12-2005, 07:19 PM
Replies:
4
Functions_Showthread Error
Views:
1,063
Posted By
rake
Remove the file you have attached. You are NOT...
Remove the file you have attached. You are NOT allowed to attach entire vBulletin files, and you have also made your LICENCE NUMBER publically viewable, since it's in the header of that file.
If...
Forum:
vB3 General Discussions
01-12-2005, 07:07 PM
Replies:
1
Upgrading to 2.0.5 will i lose my hacks?
Views:
636
Posted By
rake
Yes, you will lose the hacks. Search the forums....
Yes, you will lose the hacks. Search the forums. It has been asked over and over.
Forum:
vB3 General Discussions
01-12-2005, 07:06 PM
Replies:
6
Avatar dimensions
Views:
1,314
Posted By
rake
Check your individual usergroup settings.
Check your individual usergroup settings.
Forum:
vB3 General Discussions
01-12-2005, 07:05 PM
Replies:
9
determing if page is an error or redirect
Views:
1,031
Posted By
rake
You mean within a phrase, or what?
You mean within a phrase, or what?
Forum:
vB3 General Discussions
01-12-2005, 07:03 PM
Replies:
3
Interesting forumcache from the datastore slowing board down
Views:
1,065
Posted By
rake
This has been discussed before, but i don't know...
This has been discussed before, but i don't know if a solution has been found. I remember reading several threads about this on vb.com. The forumcache is number of forums * number of usergroups...
Forum:
vB3 Programming Discussions
01-12-2005, 06:56 PM
Replies:
8
Image Hosting Script
Views:
1,546
Posted By
rake
make sure the folder exists and is world-writable...
make sure the folder exists and is world-writable (chmod 777). Also, use the move_uploaded_file function instead of copy.
Forum:
vB3 Programming Discussions
01-12-2005, 06:51 PM
Replies:
5
how do i: url manipulation?
Views:
1,144
Posted By
rake
Yes, it's probably possible using javascript. Not...
Yes, it's probably possible using javascript. Not sure how, but i bet it can be done.
Forum:
vB3 Programming Discussions
01-12-2005, 06:47 PM
Replies:
20
want to make a encylopedia using current DB
Views:
2,473
Posted By
rake
start with a blank page, ...
start with a blank page,
require("./global.php");
to get the vb back-end, so you can access vb resources..
Get your database structure straight. One table should be enough to start with....
Forum:
vB3 Programming Discussions
01-12-2005, 06:40 PM
Replies:
28
time/date limit in query
Views:
3,250
Posted By
rake
$cut = time() - 60*60*X*Y; where X is the...
$cut = time() - 60*60*X*Y;
where X is the number of hours and Y is the number of days.. You're basically counting the number of seconds (60 seconds * 60 minutes * X hours * Y days) and subsctracting...
Forum:
vB3 Programming Discussions
01-12-2005, 06:36 PM
Replies:
19
Counting custom fields in PHP
Views:
1,909
Posted By
rake
Keep in mind, you'll be running through a table...
Keep in mind, you'll be running through a table that can be a couple of thousand rows large, depending on the number of members on your board..
You should use the solution provided by MarcoH64
Forum:
vB3 Programming Discussions
01-12-2005, 06:32 PM
Replies:
8
Image Hosting Script
Views:
1,546
Posted By
rake
Like i said, before, you can't come here and...
Like i said, before, you can't come here and expect someone to code an entire hack for you, well, unless one of the coders is willing to.. you should at the Modification Requests forum, or unless you...
Forum:
vB3 Programming Discussions
01-11-2005, 06:13 PM
Replies:
3
vB "external data provider".
Views:
1,036
Posted By
rake
The RSS/JS feeds are meant mostly for content...
The RSS/JS feeds are meant mostly for content syndication on OTHER sites. Of course you could use it on your site too. But you should search the forums here. This question has been asked over and...
Forum:
vB3 Programming Discussions
01-11-2005, 06:08 PM
Replies:
2
error help plz
Views:
809
Posted By
rake
DROP TABLE IF EXISTS `vbchat_store`; to remove...
DROP TABLE IF EXISTS `vbchat_store`; to remove the table and then install the hack again.
Showing results 1 to 25 of 332
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
10:50 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.02241 seconds
Memory Usage
2,059KB
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
(14)
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.0051
(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(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(26, 0, 1,''); -> cached fperms for forum 26
(unspecified) fetch_permissions(26, 0, 1,''); -> cached fperms for forum 26
(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(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
(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(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
FULLTEXT Search
php_sapi_name(): fpm-fcgi