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 8
1
2
3
>
Last
»
Showing results 1 to 25 of 178
Search took
0.01
seconds.
Search:
Posts Made By:
Modin
Forum:
Board of the Month
08-23-2007, 04:52 PM
Replies:
40
[BOTM September 2007] Nomination Thread
Views:
10,001
Posted By
Modin
Seconded :)
Seconded :)
Forum:
vB3 Programming Discussions
10-26-2004, 02:03 AM
Replies:
10
Simple question.
Views:
1,017
Posted By
Modin
hmm... not sure if it'll parse $_SERVER in a...
hmm... not sure if it'll parse $_SERVER in a template, but hey it's worth a try
<if condition="$_SERVER['REMOTE_ADDR'] == '156.156.156.165'">
<p>Hey usergroup 156.156.156.165</p>
</if>
...
Forum:
Modification Requests/Questions (Unpaid)
10-12-2004, 11:46 PM
Replies:
30
Disable IP Address Viewing for Mods and Super-Mods everywhere on Vb Forums ?
Views:
3,998
Posted By
Modin
Admincp -> Usergroups -> usergroup manager ->...
Admincp -> Usergroups -> usergroup manager -> mods -> select no for "Can View IP Addresses".
I would assume that globally disables it...if not, it should ;)
Forum:
vB3 General Discussions
10-03-2004, 02:30 AM
Replies:
8
Page loaded in....... ?
Views:
905
Posted By
Modin
google ads should haven't anything to do with...
google ads should haven't anything to do with page generation time.
It's probably the 6 extra queries you're running.
Forum:
vB3 General Discussions
10-03-2004, 02:27 AM
Replies:
1
Using URLS to Fill in Form Fields
Views:
933
Posted By
Modin
<input type="text" name="name" value="<?php echo...
<input type="text" name="name" value="<?php echo $_REQUEST['who']; ?>">
Try that :)
Forum:
vB3 Programming Discussions
10-03-2004, 02:24 AM
Replies:
2
Included the file, but function not defined
Views:
841
Posted By
Modin
I assume paths are still set up correctly?
I assume paths are still set up correctly?
Forum:
vB3 Programming Discussions
10-03-2004, 02:23 AM
Replies:
3
cant get MySQL to add a table?
Views:
925
Posted By
Modin
how are you going about to creating this table? ...
how are you going about to creating this table?
It looks like the table you're trying to create is using an unsupported feature
Forum:
vB3 Programming Discussions
10-03-2004, 02:21 AM
Replies:
5
PHP string question (getting part of)...
Views:
1,050
Posted By
Modin
yeah, I thought about preg as well...though I...
yeah, I thought about preg as well...though I find that when you have a common delimiter explode is much easier.
And technically a new array is created when you use preg, the matches it returns...
Forum:
vB3 Programming Discussions
09-30-2004, 02:38 AM
Replies:
5
PHP string question (getting part of)...
Views:
1,050
Posted By
Modin
Easiest would probably be to split the string...
Easiest would probably be to split the string into it's parts, then rejoin them when you got what you want
$str = "AA_B_C_DDD_123_456"
$str_array = explode("_", $str);
for($i = 0; $i < 4; $i++)...
Forum:
vB3 Programming Discussions
09-28-2004, 11:33 PM
Replies:
3
MySQL error 1064 for calendar and usergroups.
Views:
966
Posted By
Modin
looks like you've corrupted something in your...
looks like you've corrupted something in your usergroups.
What hacks have you installed?
Forum:
vB3 General Discussions
09-27-2004, 11:15 PM
Replies:
2
"update forum counters" cron
Views:
1,061
Posted By
Modin
remove any "print_output" or "echo" or "print"...
remove any "print_output" or "echo" or "print" statements from the code, that'll get ride of output.
Forum:
vB3 Programming Discussions
09-27-2004, 11:13 PM
Replies:
5
fixed width table wrapper... whats the code???
Views:
924
Posted By
Modin
<table width="800" that should fix your...
<table width="800"
that should fix your table to 800 pixels...change 800 to what you need :)
Though images larger than 800 px wide will stretch the table
Forum:
vB3 Programming Discussions
09-27-2004, 11:12 PM
Replies:
12
html help:)
Views:
1,573
Posted By
Modin
looks right to me AN-net, though just throw it in...
looks right to me AN-net, though just throw it in a test page and test it out :)
Forum:
vB3 Programming Discussions
09-25-2004, 12:18 PM
Replies:
4
PHP not displaying images.
Views:
981
Posted By
Modin
since you say the images are in database (I takes...
since you say the images are in database (I takes this they are stored as a string in the database as oppose to on the filesystem) you must have a script that pulls it out and returns it. Double...
Forum:
vB3 Programming Discussions
09-25-2004, 12:07 PM
Replies:
1
sending emails using php
Views:
856
Posted By
Modin
looks fine, probably php isn't set up properly to...
looks fine, probably php isn't set up properly to send mail.
Is this your personal server?
Forum:
vB3 Programming Discussions
09-14-2004, 02:23 AM
Replies:
2
Grab an input value in php
Views:
895
Posted By
Modin
if you want this to happen when you click submit...
if you want this to happen when you click submit then set the form method to GET
ie.
<form method="GET" action="index.php">
Forum:
vB3 Programming Discussions
09-14-2004, 02:22 AM
Replies:
5
Trimming Row output for display
Views:
854
Posted By
Modin
is Usrid the variable you want to be trimming? It...
is Usrid the variable you want to be trimming? It would seem intuitive to be trimming a variable called Username (or whatever you store it in).
Unless of course you have the username stored in...
Forum:
vB3 General Discussions
09-09-2004, 09:43 PM
Replies:
3
How do i make borders like this?
Views:
1,023
Posted By
Modin
go to admincp --> Styles & Templates --> Style...
go to admincp --> Styles & Templates --> Style Manage --> Select All Style Options --> Find table border group and add this to extra css attributes
border: 1px #000000;
Cheers :)
Forum:
vB3 General Discussions
09-09-2004, 09:38 PM
Replies:
2
Paypal Button Issue
Views:
937
Posted By
Modin
host the image locally on your server, then...
host the image locally on your server, then people won't be getting it from paypal's server and be given a cookie.
Forum:
vB3 General Discussions
09-09-2004, 09:37 PM
Replies:
1
adding user information
Views:
851
Posted By
Modin
yep, go into your admincp and go to User Profile...
yep, go into your admincp and go to User Profile Fields, you can manage them in there.
Forum:
vB3 Programming Discussions
09-09-2004, 09:33 PM
Replies:
4
JS: Retrieve userid
Views:
950
Posted By
Modin
yeah, if you passed a hidden field, you could do...
yeah, if you passed a hidden field, you could do it.... but that's very insecure since someone could just send the correct headers and see the button you're hiding...
Forum:
vB3 Programming Discussions
09-08-2004, 09:35 PM
Replies:
2
Database error! Help me!
Views:
960
Posted By
Modin
do you have it pointing to the right server? it...
do you have it pointing to the right server? it should probably be set to localhost
Forum:
vB3 Programming Discussions
09-08-2004, 09:26 PM
Replies:
4
JS: Retrieve userid
Views:
950
Posted By
Modin
before you call the .js file I believe you can...
before you call the .js file I believe you can set a js variable which will be in the scope of the .js file.
ie.
<script language="javascript">
myvar = 6;
</script>
<script...
Forum:
vB3 Programming Discussions
09-08-2004, 09:24 PM
Replies:
1
Scripting Question
Views:
849
Posted By
Modin
um, I'm guessing not...at least not easily. ...
um, I'm guessing not...at least not easily.
Mainly because you need some extra permissions to setup the users for mail (hence why you have to log in for cpanel)
Forum:
vB3 Programming Discussions
08-19-2004, 03:48 PM
Replies:
16
Parse error
Views:
1,506
Posted By
Modin
lol, I usually tell my other admins to not touch...
lol, I usually tell my other admins to not touch anything without telling me first :p
it can be one of the most frustating things, glad you got it sorted :)
As for your template hack, I haven't...
Showing results 1 to 25 of 178
Page 1 of 8
1
2
3
>
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
11:00 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.03113 seconds
Memory Usage
2,047KB
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)
post_thanks_navbar_search
(1)
search_results
(25)
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
pagenav_page
pagenav_complete
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0028
(unspecified) fetch_permissions(94, 0, 1,''); -> cached fperms for forum 94
(unspecified) fetch_permissions(94, 0, 1,''); -> cached fperms for forum 94
(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(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(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(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
FULLTEXT Search
php_sapi_name(): fpm-fcgi