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

Showing results 1 to 25 of 67
Search took 0.01 seconds.
Search: Posts Made By: Scanu
Forum: vB4 Programming Discussions 06-23-2015, 04:21 PM
Replies: 3
Views: 552
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: vB4 Programming Discussions 09-02-2014, 01:13 PM
Replies: 16
Views: 1,379
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 Programming Discussions 08-30-2014, 01:50 PM
Replies: 16
Views: 1,379
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 General Discussions 08-21-2014, 12:31 PM
Replies: 7
Views: 597
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: vB5 General Discussions 08-12-2014, 06:51 PM
Replies: 9
Views: 1,285
Posted By Scanu
It should be $page['pageid']

It should be $page['pageid']
Forum: vBulletin 4.x Add-ons 08-05-2014, 08:35 AM
Replies: 9
Views: 2,903
Posted By Scanu
You're welcome :) I just did this for me cause I...

You're welcome :) I just did this for me cause I think it's useful, if i see that other people use it I'll release an update to use phrases, settings, plugins, and templates, but as now it's working...
Forum: vBulletin 4.x Add-ons 08-03-2014, 10:00 PM
Replies: 9
Views: 2,903
Posted By Scanu
SCANU's Live Admincp Search - jQuery filtering search box on admincp!

Description

This modification adds a search box at the top of the navigation menus on the left of the admincp.
The search box will filter navigation menus while you type, showing only the tabs...
Forum: vB4 Programming Discussions 07-31-2014, 07:09 PM
Replies: 3
Views: 586
Posted By Scanu
You'll have to register the variable also to the...

You'll have to register the variable also to the header template then. Try this code

// get online users
$datecut = TIMENOW - $vbulletin->options['cookietimeout'];
$guestsarry =...
Forum: Modification Graveyard 07-30-2014, 09:59 PM
Replies: 42
Views: 6,910
Posted By Scanu
Updated now it has administrator permissions per...

Updated now it has administrator permissions per admin, set by default to 0 :)
Forum: vBulletin 4.x Add-ons 07-28-2014, 09:34 PM
Replies: 243
Views: 53,089
Posted By Scanu
Updated, enjoy!

Updated, enjoy!
Forum: vBulletin 5.x Products & Extensions 07-28-2014, 02:04 PM
Replies: 18
Views: 6,814
Posted By Scanu
Version History - 1.0 - First release on...

Version History
- 1.0
- First release on mybb.com

- 2.0
- Plugin fixed
- You can change the text of the guest warn.
- You can set the height for the position of the warn in forum.
- You can...
Forum: vB4 Programming Discussions 07-26-2014, 08:37 PM
Replies: 10
Views: 680
Posted By Scanu
Assuming you already know how to get that value...

Assuming you already know how to get that value from the database and you habe it in a variable for example $favorites you can use this code

If (strpos($favorites, 23) !== FALSE) { // check if 23...
Forum: vB4 Programming Discussions 07-26-2014, 08:24 PM
Replies: 6
Views: 696
Posted By Scanu
I think it could be a vvseo problem because it...

I think it could be a vvseo problem because it shows number of posts and if I remember well a subforum with a custom link doesn't show posts number
Forum: Modification Requests/Questions (Unpaid) 07-26-2014, 08:14 AM
Replies: 1
Views: 656
Posted By Scanu
I may do this if I find some free time, it would...

I may do this if I find some free time, it would be really simple using this jquery plugin: http://markserbol.github.io/urlive/
Forum: vBulletin 4.x Add-ons 01-03-2014, 07:09 PM
Replies: 116
Views: 23,324
Posted By Scanu
lol who knows? :D

lol who knows? :D
Forum: vBulletin 4.x Add-ons 01-03-2014, 07:08 PM
Replies: 116
Views: 23,324
Posted By Scanu
Good news! I finally found the time to update...

Good news! I finally found the time to update this mod! Enjoy ;D
Forum: vBulletin 4.x Add-ons 11-20-2013, 05:07 PM
Replies: 243
Views: 53,089
Posted By Scanu
You're welcome :)

You're welcome :)
Forum: Modification Graveyard 06-25-2013, 07:34 PM
Replies: 42
Views: 6,910
Posted By Scanu
Well as i said in the thread this is uncomplete,...

Well as i said in the thread this is uncomplete, the final version will have a lot of options where you can choose userid or ip of who can view vbfinder or let just superadmins use it :)
Forum: vBulletin 5.x Template Modifications 06-25-2013, 12:43 PM
Replies: 26
Views: 86,862
Posted By Scanu
Change this <vb:if...

Change this
<vb:if condition="$bbuserinfo['userid'] == 0"><a href="/register"><div class="forcetoregister"></div></a></vb:if>
to this
<vb:if condition="$bbuserinfo['userid'] == 0 && THIS_SCRIPT !=...
Forum: Modification Graveyard 06-24-2013, 10:00 PM
Replies: 42
Views: 6,910
Posted By Scanu
SCANU's vBFinder - A Web File Manager directly on your admincp! [AJAX]

Description

This modification integrates elFinder (http://elfinder.org/) project in the vbulletin admin control panel. This let you access your site files directly from admincp without the need of...
Forum: vB4 Programming Discussions 04-07-2013, 06:58 PM
Replies: 13
Views: 610
Posted By Scanu
I may be wrong but shouldn't be this :rolleyes: ...

I may be wrong but shouldn't be this :rolleyes:

$this->registry->templatecache['postbit_legacy'] = str_replace("userinfo", "test", $this->registry->templatecache['postbit_legacy']);

Btw that...
Forum: vB4 Programming Discussions 11-01-2012, 10:24 PM
Replies: 5
Views: 770
Posted By Scanu
Shouldn't be this ...

Shouldn't be this

$template_hook[forumhome_above_forums] .= $newcookie;


Or this


$template_hook[forumhome_above_forums] .= "$newcookie";
Forum: vBulletin 4.x Add-ons 09-14-2012, 09:13 PM
Replies: 246
Views: 38,607
Posted By Scanu
You're welcome, to the guys that are requesting...

You're welcome, to the guys that are requesting subforum ddescription: do you mean the sub forums that you see on forumhome after installing vsa sub-forum manager?
Forum: Community Lounge 09-12-2012, 08:51 PM
Replies: 54
Views: 8,508
Posted By Scanu
I would call it an alpha (or even a "nightly")...

I would call it an alpha (or even a "nightly") version, it's so buggy and slow, i was really excited (especially from the new adminccp) i registered an account (cool ajax features but slow ) and i...
Forum: vBulletin 4.x Template Modifications 09-07-2012, 06:49 PM
Replies: 2
Forum Home Enhancements - Another Footer Rework
Views: 2,663
Posted By Scanu
Bravi ragazzi!

Bravi ragazzi!
Showing results 1 to 25 of 67

 
Forum Jump

All times are GMT. The time now is 02:36 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01815 seconds
  • Memory Usage 2,051KB
  • 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
  • (40)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