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 25 of 25
Search took
0.01
seconds.
Search:
Posts Made By:
Mickie D
Forum:
vB4 Programming Discussions
02-10-2017, 02:14 PM
Replies:
2
Forum Permissions
Views:
459
Posted By
RichieBoy67
Thanks, in the end though I think I will do...
Thanks, in the end though I think I will do something with the usergroups.. That plug is a bit old and heavy for my needs(one forum)..
Thanks
Forum:
vB4 Programming Discussions
02-09-2017, 09:05 PM
Replies:
9
Trying to import a txt file into VB
Views:
797
Posted By
Dave
In which hook did you add the code? Also...
In which hook did you add the code?
Also what you're doing now will keep overwriting the $sv variable, you'll want to add it to an array and then you can iterate through the array in the template.
Forum:
vB4 Programming Discussions
02-09-2017, 03:07 PM
Replies:
2
Auto-subscribe to All Threads for All Users
Views:
956
Posted By
SixAxis
how a user wishes to manage their forum is not...
how a user wishes to manage their forum is not for you to decided or give an opinion on nakedanvil :)
we in fact want to do the same thing thus forcing users to unsubscribe from what they don't...
Forum:
vB4 Programming Discussions
02-06-2017, 10:36 PM
Replies:
2
Forum Permissions
Views:
459
Posted By
Kane@airrifle
? ...
?
https://vborg.vbsupport.ru/showthread.php?t=233979
Forum:
vB4 Programming Discussions
01-23-2017, 04:34 PM
Replies:
9
Trying to import a txt file into VB
Views:
797
Posted By
Dave
Something like this should work: $handle =...
Something like this should work:
$handle = fopen("road.txt", "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
$t = explode(",", $line);
if(isset($t[0]) &&...
Forum:
vB4 Programming Discussions
01-23-2017, 02:22 PM
Replies:
9
Trying to import a txt file into VB
Views:
797
Posted By
Dave
What does the PHP code look like now? You don't...
What does the PHP code look like now?
You don't really need a preg_replace for this though, you can just iterate through each line, explode on comma's, then grab the first result.
Forum:
vB4 Design and Graphics Discussions
12-15-2016, 03:53 PM
Replies:
21
Responsive VS Mobile styles
Views:
3,338
Posted By
In Omnibus
I prefer users have devices that don't require a...
I prefer users have devices that don't require a mobile style. One responsive theme should serve all purposes. In reality, isn't virtually every device full HD now? I actually expect mobile...
Forum:
vB4 Programming Discussions
06-16-2015, 03:12 PM
Replies:
6
File Sanitize / cleaning via Vbulletin
Views:
525
Posted By
kh99
The clean_gpc function only takes 3 arguments....
The clean_gpc function only takes 3 arguments. I've never used the vbulletin functions to do file uploads, but I think you want something like:
$vbulletin->input->clean_gpc('f', 'fileToUpload',...
Forum:
vB4 Programming Discussions
06-12-2015, 04:28 AM
Replies:
3
pagination and drop down session
Views:
733
Posted By
cellarius
You need to add your sort value to the pagination...
You need to add your sort value to the pagination url parameters, then retrieve it (using get, not post in the input cleaner).
Don't forget to set your dropdown to the chosen value.
Forum:
vB4 Programming Discussions
06-10-2015, 10:53 AM
Replies:
4
$variable inside vbulletin conditions
Views:
667
Posted By
Black Snow
Have you tried it with double quotes instead of...
Have you tried it with double quotes instead of singles?
$webspace_canuse_global = "6, 7, 18";
Forum:
vB4 Programming Discussions
05-22-2015, 12:18 PM
Replies:
9
Array not working?
Views:
873
Posted By
kh99
Well, yes, I think. The expression ($x != 6 AND...
Well, yes, I think. The expression ($x != 6 AND 7) has 3 values separated by 2 operators, so in what order would you evaluate it? It turns out that != has higher precedence than AND (as you can see...
Forum:
vB4 Programming Discussions
05-22-2015, 11:38 AM
Replies:
9
Array not working?
Views:
873
Posted By
Dave
Indeed, but if you're going to compare 1 variable...
Indeed, but if you're going to compare 1 variable with multiple variables, it's best to just use the in_array function to keep the code clean.
Forum:
vB4 Programming Discussions
04-26-2015, 06:10 PM
Replies:
5
help with an array in a template
Views:
359
Posted By
MarkFL
Try this: $dir = "/uploaddirectory/"; ...
Try this:
$dir = "/uploaddirectory/";
$exclude = array( ".","..","error_log","_notes" );
$filerows = '';
if (is_dir($dir)) {
$files = scandir($dir);
foreach($files as $file){
...
Forum:
vBulletin 4.x Add-ons
03-10-2014, 11:00 PM
Replies:
138
Mini Mods -
HTTP Error Response Codes by BOP5 (Soft 404 Solution)
Views:
30,288
Posted By
BirdOPrey5
HTTP Error Response Codes by BOP5 (Soft 404 Solution)
Brought to you by BirdOPrey5 / Qapla.com (http://www.qapla.com/mods/)
This issue was brought to my attention by Sherrie at TAZ in this thread...
Forum:
vB4 General Discussions
02-06-2014, 11:14 AM
Replies:
9
Does this Mod Exist
Views:
846
Posted By
ozzy47
Perhaps this mod,...
Perhaps this mod, https://vborg.vbsupport.ru/showthread.php?t=282651
Forum:
vB4 General Discussions
02-05-2014, 10:09 PM
Replies:
9
Does this Mod Exist
Views:
846
Posted By
TheLastSuperman
Hmmm not sure based on that little tidbit of info...
Hmmm not sure based on that little tidbit of info but I know here is a newer downloads type mod https://vborg.vbsupport.ru/showthread.php?t=252497 which was coded well after another long existing mod...
Forum:
Modification Graveyard
12-01-2013, 11:00 PM
Replies:
95
Mini Mods -
[OzzModz] Add As Friend In Postbit
Views:
27,920
Posted By
ozzy47
[OzzModz] Add As Friend In Postbit
Another mod brought to you by
https://vborg.vbsupport.ru/external/2015/01/1.png
[OzzModz] Add As Friend In Postbit, has won MOTM for January 2014 Mod of the Month!...
Forum:
vB4 General Discussions
09-21-2013, 05:54 PM
Replies:
2
quarantined Modificaion
Views:
432
Posted By
Lynne
We don't publish the exact reason because usually...
We don't publish the exact reason because usually they are quarantined for security reasons. If we said exactly why, then users would know how to exploit a site that hasn't fixed the issue.
Forum:
vB4 General Discussions
09-21-2013, 09:08 AM
Replies:
2
quarantined Modificaion
Views:
432
Posted By
ozzy47
To me it seems like there was to many issues with...
To me it seems like there was to many issues with the mod, and as it was not marked as re usable code, no one else has taken the time to update it.
Most of the time there is no indication on why a...
Forum:
Modification Graveyard
05-04-2013, 10:00 PM
Replies:
461
Portal Software -
[Chris] Classifieds
Views:
43,837
Posted By
Christos Teriakis
[Chris] Classifieds
Classifieds
by Christos Teriakis
aka ChrisTERiS
Please note that from
11 Aug 2013
you can get support only in my site
http://www.teriakis.com (http://www.teriakis.com)
Forum:
vB4 Programming Discussions
12-19-2012, 02:43 PM
Replies:
2
Creating a custom block help
Views:
3,139
Posted By
kh99
I assume this is for vb4? The problem is that an...
I assume this is for vb4? The problem is that an html type forum block isn't a template, so the curly brace expression that's supposed to insert the security token doesn't work. What you can do is...
Forum:
vBulletin 4.x Add-ons
05-21-2012, 10:00 PM
Replies:
430
Miscellaneous Hacks -
Sidebar Anywhere (Formerly Sidebar for Activity Stream) by BOP5
Views:
105,856
Posted By
BirdOPrey5
Sidebar Anywhere (Formerly Sidebar for Activity Stream) by BOP5
Brought to you by BirdOPrey5
www.Qapla.com (http://www.qapla.com/mods/)
Version 2.2.0
The new Activity Stream for VB 4.2.0 is very nice but it feels like it is missing something- and what it...
Forum:
vBulletin 4.x Add-ons
01-14-2012, 11:00 PM
Replies:
93
Administrative and Maintenance Tools -
Notices Criteria - Additional Conditions for Displaying a Notice
Views:
23,826
Posted By
kh99
Notices Criteria - Additional Conditions for Displaying a Notice
What is it?
----------------------------
This mod adds new criteria that can be used to configure when a notice will be displayed or not. (These came from separate requests in the forums which I...
Forum:
vBulletin 4.x Add-ons
07-26-2011, 05:20 PM
Replies:
642
Major Additions -
CERBERUS: 1 vB4: runs multiple domains with custom styles, forums, universal login
Views:
116,497
Posted By
CvP
I have a custom version with cms/scocial groups...
I have a custom version with cms/scocial groups support, enhanced cms support, support for many more things, various bugs fixed etc etc.
I am still working on it and will release the final version...
Forum:
vBulletin 4.x Add-ons
01-09-2010, 10:00 PM
Replies:
1,896
Major Additions -
Yet Another Awards System
Views:
377,630
Posted By
squidsk
Yet Another Awards System
*** CREATE A BACKUP OF YOUR FORUM AND DATABASE BEFORE INSTALLING ***
DESCRIPTION:
This is a Medals/Awards system. Admin can give members awards, and award icons will be displayed in member's...
Showing results 1 to 25 of 25
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
06:46 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.01858 seconds
Memory Usage
2,044KB
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
(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
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0007
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(224, 0, 1,''); -> cached fperms for forum 224
(unspecified) fetch_permissions(224, 0, 1,''); -> cached fperms for forum 224
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(224, 0, 1,''); -> cached fperms for forum 224
(unspecified) fetch_permissions(224, 0, 1,''); -> cached fperms for forum 224
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
FULLTEXT Search
php_sapi_name(): fpm-fcgi