Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vbShout v2.1 on ALL pages! (Below NavBar) Details »»
vbShout v2.1 on ALL pages! (Below NavBar)
Version: 1.00, by buileminh buileminh is offline
Developer Last Online: Mar 2010 Show Printable Version Email this Page

Category: Chat Modifications - Version: 3.6.4 Rating:
Released: 01-15-2007 Last Update: Never Installs: 52
 
No support by the author.

Firstly, please install vbShout v2.1!
Then import the xml file I attached. (Allow Overwrite: YES)

That's all! I hope you like this. Thanks for your interest
Note:
vbShout I attached is Zero Tolerance's hack. This is just a modification for that mod.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #62  
Old 04-05-2007, 02:40 PM
LadyHoney LadyHoney is offline
 
Join Date: Jul 2006
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

all i had to do is overwrite with the original shoutbox 2.1 and it corrected itself.
Reply With Quote
  #63  
Old 06-02-2007, 06:21 AM
joker2040 joker2040 is offline
 
Join Date: Jan 2006
Location: Kentucky
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm getting this when trying to access the AdminCP...

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1219) : eval()'d code on line 5

So what do I do to correct it????
Reply With Quote
  #64  
Old 06-17-2007, 11:58 PM
onehost onehost is offline
 
Join Date: Jul 2006
Posts: 378
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just installed this on vb 3.6 - now i can not log into admincp, I get this error...

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1243) : eval()'d code on line 5

any ideas how to remove shout without the use of admincp...??
Reply With Quote
  #65  
Old 06-18-2007, 10:31 AM
GekkoPixie's Avatar
GekkoPixie GekkoPixie is offline
 
Join Date: Jul 2005
Location: Maine, USA
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get this error trying to view the forums after installation. I had to go back to base 2.1.

Quote:
Originally Posted by error
Fatal error: Call to undefined function: isbanned() in /home/worlds/public_html/forumlist.php(536) : eval()'d code on line 125
Reply With Quote
  #66  
Old 01-02-2008, 06:56 PM
mystic10 mystic10 is offline
 
Join Date: Sep 2007
Posts: 298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i have a question and request...what would be the code..i will just give an example so its easier to undertand

if i select red color and arial black for shouting than what would be the code so when i login next time that it rembers it for me till i change the color or style

i hope this made sense
Reply With Quote
  #67  
Old 01-11-2008, 09:05 PM
joeysdad joeysdad is offline
 
Join Date: Dec 2006
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Got this error..
Fatal error: Call to undefined function isBanned() in /home/pixelsfo/public_html/juiceboyzcafe/index.php(537) : eval()'d code on line 126
Reply With Quote
  #68  
Old 01-18-2008, 02:30 AM
viper007 viper007 is offline
 
Join Date: Dec 2007
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1259) : eval()'d code on line 5

i got the error ..when installed vb shout in all pages .. can plzzzz give reply fast .. urget plzzz..
Reply With Quote
  #69  
Old 01-21-2008, 05:29 AM
mystic10 mystic10 is offline
 
Join Date: Sep 2007
Posts: 298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by viper007 View Post
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1259) : eval()'d code on line 5

i got the error ..when installed vb shout in all pages .. can plzzzz give reply fast .. urget plzzz..

this is how i was helped..

go to ur fetch hook and replace

HTML Code:
if (VB_AREA == "Forum")
{
	global $globaltemplates;

	$globaltemplates  = array_merge($globaltemplates, array('forumhome_vbshout'));
}
with

HTML Code:
if (VB_AREA == 'Forum')
{
global $globaltemplates;

if (!is_array($globaltemplates))
{
$globaltemplates = array();
}

$globaltemplates = array_merge($globaltemplates, array('forumhome_vbshout'));
} 
here is the link where i asked for help and got the response..
https://vborg.vbsupport.ru/showthrea...=167528&page=2

when i changed it there was no error everything working smoothly...check the link as well so u can be satisfied before u make any changes
Reply With Quote
  #70  
Old 01-21-2008, 05:35 AM
mystic10 mystic10 is offline
 
Join Date: Sep 2007
Posts: 298
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HTML Code:
<td style='white-space:nowrap' width='1%'>
							<input type="submit" value="Shout" class="button" />
							<if condition="$vboptions[shout_extra_options]">
							<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
							<input type='button' class='button' value='Smilies' onclick='sb_Smilies(this)' />
							<input id='sb_mem_bold' type='button' class='button' style='font-weight:bold' value='B' onclick='sb_PropChange_Button(this, "fontWeight")' />
							<input id='sb_mem_underline' type='button' class='button' style='text-decoration:underline' value='U' onclick='sb_PropChange_Button(this, "textDecoration")' />
							<input id='sb_mem_italic' type='button' class='button' style='font-style:italic' value='I' onclick='sb_PropChange_Button(this, "fontStyle")' />
							<select id='sb_color_mem' name='font_color' onchange='sb_PropChange(this, "color")'>
								{$DropDowns['color_selector']}
							</select>
							<select id='sb_font_mem' name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
								{$DropDowns['font_selector']}
							</select>
							</if>
						</td>
I AM ASKING FOR HELP NOT GIVING CODE..SO PLZ DONT MISUNDERSTAND....I WAS JUST SAYING THAT THIS CODE IS WHAT WE NEED TO CHANGE...ATLEAST THATS WHAT I THINK..I WAS HOPING THE AUTHOR OR SOMEONE MORE EXPERIENCE CAN LOOK AT IT AND HELP...SO SORRY FOR THE INCONVIENCE I MIGHT HAVE CAUSED...HAVE A BLESSED DAY
Reply With Quote
  #71  
Old 01-23-2008, 05:20 AM
viper007 viper007 is offline
 
Join Date: Dec 2007
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

fetch hook means .. where can i found..brother canu plzz specified mee yaar ..
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:48 AM.


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.05218 seconds
  • Memory Usage 2,310KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete