Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Views: 505
Posted By Scanu
You're welcome :)

You're welcome :)
Forum: vB5 Programming Discussions 08-14-2014, 09:59 AM
Replies: 10
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
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

 
Forum Jump

All times are GMT. The time now is 09:33 PM.


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