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 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
0.02
seconds.
Search:
Posts Made By:
Scanu
Forum:
vBulletin 5.x Products & Extensions
01-27-2016, 05:06 PM
Replies:
18
Add-On Releases -
SCANU's Guest Warn - Elegant Floating Message for your guests [vb5]
Views:
6,857
Posted By
Scanu
Yes probably, you can try disabling the second...
Yes probably, you can try disabling the second option in the plugin' settings page
Forum:
vB4 Programming Discussions
06-23-2015, 04:21 PM
Replies:
3
ajax requests for postbit
Views:
569
Posted By
Scanu
Seems like $post['postid'] is not defined yet on...
Seems like $post['postid'] is not defined yet on that hook, you can try $post['id'] or something like that but it could be more complex. Usually when I have this type of problems I search the file...
Forum:
Community Lounge
01-25-2015, 12:03 PM
Replies:
0
Looking for a video-ads publishing network
Views:
716
Posted By
Scanu
Looking for a video-ads publishing network
Hello I need some suggestions for a site I'm going to make.
Adsense is not suitable for my project because of its policy. What I need to do is "making available features" only if you watch a video...
Forum:
vB5 General Discussions
09-12-2014, 07:52 PM
Replies:
9
VBulletin5 THIS_SCRIPT alternative solution?
Views:
1,297
Posted By
Scanu
<vb:if condition="$page['pageid'] == 3"> Shows...
<vb:if condition="$page['pageid'] == 3">
Shows this only on register page
</vb:if>
Forum:
vB4 Programming Discussions
09-10-2014, 04:32 AM
Replies:
86
Creating Addons
Views:
5,668
Posted By
Scanu
Why? If that is a public board you mean?
Why? If that is a public board you mean?
Forum:
vB4 Programming Discussions
09-09-2014, 10:24 AM
Replies:
86
Creating Addons
Views:
5,668
Posted By
Scanu
Well actually if you only need to keep changes in...
Well actually if you only need to keep changes in templates of a mod, you need to turn on debug mode and edit the template on the master style. This way when you add a new style you won't need to...
Forum:
vBulletin 5.x Products & Extensions
09-04-2014, 12:32 PM
Replies:
18
Add-On Releases -
SCANU's Guest Warn - Elegant Floating Message for your guests [vb5]
Views:
6,857
Posted By
Scanu
You can send me a link of your forum with the mod...
You can send me a link of your forum with the mod on so I can see what's going on, or you can simply disable the option "Do you want to show a "thank you" message.... ?" to fix the problem
You can...
Forum:
vB4 Programming Discussions
09-03-2014, 08:49 AM
Replies:
7
Getting user password in plain text
Views:
1,246
Posted By
Scanu
As far as I know, even if you send md5 hashed...
As far as I know, even if you send md5 hashed password over an http connection, an hacker could intercept it and remove the javascript md5 function on the client side (with Chrome it's really easy)....
Forum:
vB4 Programming Discussions
09-02-2014, 01:33 PM
Replies:
7
Getting user password in plain text
Views:
1,246
Posted By
Scanu
Then there are 2 possibilities Edit the 3rd...
Then there are 2 possibilities
Edit the 3rd party application to use md5 password or
Remove the md5 javascript function in the template (Update) or using Kevin's way above
and do something like...
Forum:
vB4 Programming Discussions
09-02-2014, 01:13 PM
Replies:
16
Using vb:raw in templates
Views:
1,412
Posted By
Scanu
I can't see anything wrong now, and I don't have...
I can't see anything wrong now, and I don't have time right now to test it
Maybe this code could make a difference
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do =...
Forum:
vB4 General Discussions
09-02-2014, 12:22 PM
Replies:
1
Display posts from one thread on an external page?
Views:
556
Posted By
Scanu
Yes it's possible if you have some basic...
Yes it's possible if you have some basic understanding of php and mysql
Forum:
vB4 Programming Discussions
09-02-2014, 12:16 PM
Replies:
7
Getting user password in plain text
Views:
1,246
Posted By
Scanu
Make sure the password is not encrypted using...
Make sure the password is not encrypted using javascript when sending the form. If so there isn't a php variable which contains plain text password. You would have to edit template and remove...
Forum:
vB4 Programming Discussions
09-02-2014, 12:11 PM
Replies:
16
Using vb:raw in templates
Views:
1,412
Posted By
Scanu
Try replacing this ...
Try replacing this
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do = $vbulletin->GPC['do'];
if (!isset($do))
//default value
$do = "siterules";
With this
Forum:
vB4 Programming Discussions
08-30-2014, 01:50 PM
Replies:
16
Using vb:raw in templates
Views:
1,412
Posted By
Scanu
$vbulletin->input->clean_gpc('r', 'do',...
$vbulletin->input->clean_gpc('r', 'do', TYPE_STR);
$do = $vbulletin->GPC['do'];
if (!isset($do))
$do = 1; //default value
if ($do == 1) {
}
if ($do == 2) {
Forum:
vB4 Programming Discussions
08-22-2014, 12:33 PM
Replies:
10
Auto Prefix
Views:
831
Posted By
Scanu
I've never seen a mod like this you would need to...
I've never seen a mod like this you would need to make it yourself
Forum:
vB4 General Discussions
08-21-2014, 12:31 PM
Replies:
7
Cannot access forum FATAL ERROR after removing mod
Views:
618
Posted By
Scanu
Are you able to access to the admincp? If you...
Are you able to access to the admincp? If you can't then disable hook system using config.php file and uninstall the product
Edit: or what he writes above
Forum:
vB4 General Discussions
08-21-2014, 12:30 PM
Replies:
7
Cannot access forum FATAL ERROR after removing mod
Views:
618
Posted By
Scanu
You're right, he's trying to remove a...
You're right, he's trying to remove a modification and since the function require_one is eval'd in the file init.php, i think he removed the files but he didn't remove the product (or one plugin is...
Forum:
vB4 General Discussions
08-21-2014, 12:17 PM
Replies:
7
Cannot access forum FATAL ERROR after removing mod
Views:
618
Posted By
Scanu
You should ask support in the modification thread
You should ask support in the modification thread
Forum:
vB4 Programming Discussions
08-20-2014, 04:54 PM
Replies:
12
Custom Forum Permissions
Views:
713
Posted By
Scanu
You also have to set forum permissions to guests...
You also have to set forum permissions to guests and users if you didn't set them yet
Forum:
vB4 Programming Discussions
08-20-2014, 10:10 AM
Replies:
12
Custom Forum Permissions
Views:
713
Posted By
Scanu
I'm not sure i'm just trying, you could search on...
I'm not sure i'm just trying, you could search on showthread.php for the condition that give no permissions (line 238)
//...
Forum:
vB4 Programming Discussions
08-19-2014, 11:28 PM
Replies:
12
Custom Forum Permissions
Views:
713
Posted By
Scanu
If you just want some threads to be not listed in...
If you just want some threads to be not listed in the forums but to be still acessible if someone has the link then I think it's not really hard
Forum:
vB4 Programming Discussions
08-18-2014, 08:38 AM
Replies:
3
Using existing variables in different templates
Views:
534
Posted By
Scanu
Even the variables you see in vbulletin templates...
Even the variables you see in vbulletin templates aren't global you have to register them again if you want to use them in another template
There are only a few variables and costants that are...
Forum:
vB4 Programming Discussions
08-14-2014, 09:59 AM
Replies:
3
[CMS] Meta Tags for CMS only
Views:
505
Posted By
Scanu
You're welcome :)
You're welcome :)
Forum:
vB5 Programming Discussions
08-14-2014, 09:59 AM
Replies:
10
Editing .htaccess to use PHP inside of HTML?
Views:
1,208
Posted By
Scanu
I'm still not sure why you don't want to use a...
I'm still not sure why you don't want to use a .php file
In a .php file you can use html and php at the same time, why would you need to use php file in a .html file? I'm sorry but i don't fully...
Forum:
vB4 Programming Discussions
08-14-2014, 08:54 AM
Replies:
3
[CMS] Meta Tags for CMS only
Views:
505
Posted By
Scanu
Maybe this is what you're looking for: ...
Maybe this is what you're looking for:
<vb:if condition="THIS_SCRIPT == 'vbcms'">
Shown only in cms
</vb:if>
Showing results 1 to 25 of 500
Page 1 of 20
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
09:33 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.03336 seconds
Memory Usage
2,076KB
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
(26)
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.0099
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
(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(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(unspecified) fetch_permissions(262, 0, 1,''); -> cached fperms for forum 262
(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(258, 0, 1,''); -> cached fperms for forum 258
(unspecified) fetch_permissions(258, 0, 1,''); -> cached fperms for forum 258
(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(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(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(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(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(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(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(263, 0, 1,''); -> cached fperms for forum 263
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
FULLTEXT Search
php_sapi_name(): fpm-fcgi