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 17
1
2
3
11
>
Last
»
Showing results 1 to 25 of 424
Search took
0.01
seconds.
Search:
Posts Made By:
MoT3rror
Forum:
vB3 Programming Discussions
10-20-2008, 07:14 PM
Replies:
3
Mod_rewrite help!
Views:
676
Posted By
MoT3rror
You need to turn on the rewrite engine with this...
You need to turn on the rewrite engine with this code.
RewriteEngine On
Forum:
vB3 Programming Discussions
10-09-2008, 11:17 PM
Replies:
2
Programming in vB - noob
Views:
746
Posted By
MoT3rror
<a href="http://members.vbulletin.com/api/"...
<a href="http://members.vbulletin.com/api/" target="_blank">vBulletin API</a>
Forum:
vB3 Programming Discussions
10-04-2008, 09:36 PM
Replies:
5
<textarea> proprietary attribute
Views:
890
Posted By
MoT3rror
You can use the setattribute...
You can use the setattribute (http://www.w3schools.com/Dom/met_element_setattribute.asp) function to set it before your javascript code.
element.setAttribute('MaxChars', 1000);
Forum:
vB3 Programming Discussions
09-23-2008, 02:38 AM
Replies:
1
Help with news page hack I made
Views:
661
Posted By
MoT3rror
One it is best to use vBulletin db functions so...
One it is best to use vBulletin db functions so you only use one database connection.
https://vborg.vbsupport.ru/showthread.php?t=98047&highlight=database+class
But if you want to stay with the...
Forum:
vB3 Programming Discussions
09-23-2008, 02:30 AM
Replies:
1
HTML is viewed as plaintext
Views:
604
Posted By
MoT3rror
The characters are supposed to come up like that...
The characters are supposed to come up like that to protect yourself from XSS.
Forum:
vB3 Programming Discussions
09-20-2008, 10:29 PM
Replies:
1
favicon.ico in css/stylesheet
Views:
1,692
Posted By
MoT3rror
Most browsers will detect a favicon.ico in your...
Most browsers will detect a favicon.ico in your root directory of your public_html or where you store your files for your website.
Forum:
vB3 Programming Discussions
09-18-2008, 02:34 AM
Replies:
9
Pinging a Server - Need Help
Views:
1,743
Posted By
MoT3rror
<a...
<a href="http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=8&txtCodeId=1786" target="_blank">http://www.planet-source-code.com/vb...txtCodeId=1786</a>
Forum:
vB3 Programming Discussions
09-08-2008, 12:18 AM
Replies:
2
disable PM popup per page?
Views:
711
Posted By
MoT3rror
Use define('NOPMPOPUP', 1); in init_start with...
Use define('NOPMPOPUP', 1);
in init_start with a if condition around it.
Forum:
vB3 Programming Discussions
09-04-2008, 07:15 PM
Replies:
5
PHP and MySQL Requirements
Views:
1,457
Posted By
MoT3rror
Source...
Source (http://www.vbulletin.com/forum/showthread.php?t=280752)
Forum:
vB3 Programming Discussions
09-04-2008, 02:54 AM
Replies:
6
$code getting parsed ?
Views:
1,056
Posted By
MoT3rror
You can't put php in templates, you must use...
You can't put php in templates, you must use plugins.
Forum:
vB3 Programming Discussions
09-03-2008, 08:56 PM
Replies:
5
Image Appears In FF but not IE 7
Views:
934
Posted By
MoT3rror
You are missing a > in this. </div> <div...
You are missing a > in this.
</div>
<div style="padding-top:15px;padding-bottom:0px;">
<if condition="$show['deletedpost']">
<img src="$stylevar[imgdir_misc]/trashcan.png"...
Forum:
vB3 Programming Discussions
09-03-2008, 05:12 AM
Replies:
12
how to change default text
Views:
1,265
Posted By
MoT3rror
Try using $bbuserinfo['userid'] == 0 in your...
Try using $bbuserinfo['userid'] == 0 in your condition.
Forum:
vB3 Programming Discussions
09-03-2008, 05:10 AM
Replies:
2
anyone help w/ this javascript please?
Views:
619
Posted By
MoT3rror
The function needs to be defined before the...
The function needs to be defined before the actually a tag. Also you don't really need all that code to change image for rollover.
...
Forum:
vB3 Programming Discussions
09-03-2008, 05:07 AM
Replies:
2
Server setting or permissions issue with getimagesize function not working properly
Views:
1,100
Posted By
MoT3rror
The server doesn't know the username and password...
The server doesn't know the username and password to a password protected directory so you get a 403 (or no access) if it is connecting by HTTP.
Forum:
vB3 Programming Discussions
09-03-2008, 04:48 AM
Replies:
10
INSERT multi-row at once?
Views:
1,255
Posted By
MoT3rror
What is title and description supposed to be a...
What is title and description supposed to be a file or plain text?
Forum:
vB3 Programming Discussions
09-02-2008, 07:17 PM
Replies:
4
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource
Views:
4,149
Posted By
MoT3rror
Like I said you are getting a database error. Use...
Like I said you are getting a database error. Use mysql_error(); to get the error text.
Forum:
vB3 Programming Discussions
09-01-2008, 05:41 AM
Replies:
10
INSERT multi-row at once?
Views:
1,255
Posted By
MoT3rror
$sqlvalues = 'VALUES'; $first = true; ...
$sqlvalues = 'VALUES';
$first = true;
for()//something goes there or make it a while, foreach
{
$sqlvalues .= ($first ? '' : ', ') . "('" . $db->escape_string($somevalue) . "', '" ....
Forum:
vB3 Programming Discussions
09-01-2008, 05:35 AM
Replies:
9
Version number
Views:
1,843
Posted By
MoT3rror
Set $vbulletin->options['simpleversion'] to...
Set $vbulletin->options['simpleversion'] to nothing in global_start or another plugin around then should take a away the 373.
Forum:
vB3 Programming Discussions
08-30-2008, 03:47 AM
Replies:
3
Ajax and IE 8
Views:
930
Posted By
MoT3rror
They probably change how to start the ajax call...
They probably change how to start the ajax call again in IE 8. If you are using YUI or another javascript library, they might have updated it already or planning on doing it very soon.
Forum:
vB3 Programming Discussions
08-30-2008, 03:37 AM
Replies:
10
Image in the postbit for admin
Views:
1,498
Posted By
MoT3rror
I believe it is $post and not $bbuserinfo for the...
I believe it is $post and not $bbuserinfo for the information of the user that made that post.
Forum:
vB3 Programming Discussions
08-29-2008, 07:17 PM
Replies:
4
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource
Views:
4,149
Posted By
MoT3rror
You should use the inbuilt db functions for one....
You should use the inbuilt db functions for one. (https://vborg.vbsupport.ru/showthread.php?t=98047&highlight=database+class) Second your code doesn't protect against sql injection.
Here is some...
Forum:
vB3 Programming Discussions
08-28-2008, 04:02 AM
Replies:
3
Avatars
Views:
738
Posted By
MoT3rror
He isn't talking about PHP version. Here you...
He isn't talking about PHP version.
Here you go (http://www.vbulletin.com/docs/html/avatar_management_permissions)
Forum:
vB3 Programming Discussions
08-28-2008, 03:58 AM
Replies:
3
**SOLVED** HTML code help please!
Views:
830
Posted By
MoT3rror
Find <if condition="$show['member']"> ...
Find
<if condition="$show['member']">
<div class="smallfont">
Replace
<if condition="$show['member']">
<div class="smallfont" style="margin-top: -5px">
Forum:
vB3 Programming Discussions
08-26-2008, 04:31 AM
Replies:
14
Scheduled Tasks Not Working
Views:
1,734
Posted By
MoT3rror
All the $cronimage is a img tag when there is a...
All the $cronimage is a img tag when there is a schedule task that needs to happen. It best to put it near or the end of the footer template.
Forum:
vB3 Programming Discussions
08-22-2008, 07:44 PM
Replies:
1
JROX JAM and VB 3.7
Views:
711
Posted By
MoT3rror
Well how is it not working? Is there any errors. ...
Well how is it not working? Is there any errors.
Also you should modify the database, you should do everything in the admin CP.
So for step 6, open up subscription_payment_paypal.
Find...
Showing results 1 to 25 of 424
Page 1 of 17
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
07:02 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.03882 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
(10)
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.0062
(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(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
FULLTEXT Search
php_sapi_name(): fpm-fcgi