vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   BVShoutbox FULLL (https://vborg.vbsupport.ru/showthread.php?t=63562)

danb00 05-19-2005 02:30 PM

i cant even install it right and thus it also puts errors on main site

gah

scottishcruise 05-21-2005 08:48 AM

I got an error thru installation when it tried to put in something into the database, can't remember what it was now as I refreshed, it started again and wouldn't go further as tables had already bn put in so its stuck half installed.

is there a .txt readme to follow thru I can check how far I got and continue manually?

scottishcruise 05-27-2005 07:05 PM

anyone?

Flow Fusion 05-27-2005 07:32 PM

Quote:

Originally Posted by scottishcruise
I got an error thru installation when it tried to put in something into the database, can't remember what it was now as I refreshed, it started again and wouldn't go further as tables had already bn put in so its stuck half installed.

is there a .txt readme to follow thru I can check how far I got and continue manually?

What error?

carpefile 06-01-2005 12:49 AM

Quote:

Originally Posted by Flow Fusion
What error?

I would bet its that his shoutboxpermissions column is already there.

This happens when as in my case, after upgrading the VB software, you have to re add any edits to php files.
Since the BV shoutbox runs off an installer, it tries to reinstall everything instead of just allowing you to see the file edits you have to redo.

If you have it previously installed, it hangs at the mysql query to add the shoutbox permissions column, since its already there.

Then after dropping that column and restarting the installer it hangs at importing the templates, again, since they are already there.

It would be incredibly helpful if the file edits could be posted in a .txt file, as after an upgrade, thats all you need to redo.

TTG 06-01-2005 10:32 AM

Quote:

Originally Posted by carpefile
It would be incredibly helpful if the file edits could be posted in a .txt file, as after an upgrade, thats all you need to redo.

Perhaps this post might help :)

paul41598 06-01-2005 10:57 AM

Im confused. Which shoutbox hack is better/newer? This one or Shoutbox Hack 1.04b ?

carpefile 06-01-2005 06:38 PM

Quote:

Originally Posted by TTG
Perhaps this post might help :)

Exactly what I needed. Thanks very much! :)

axiomotion 06-10-2005 07:50 AM

Quote:

Originally Posted by TTG
Perhaps this post might help :)

Thought I'd point an error in the post

after the following:
Quote:

includes/init.php
Find
Code:

'canadminupgrade'      => 32768,
Code:

Replace with
'canadminupgrade'      => 32768,
'canadminshouts'        => 65536,
Find
// field names for usergroup display options
$_BITFIELD['usergroup']['genericoptions'] = array(
        'showgroup'            => 1,
        'showbirthday'          => 2,
        'showmemberlist'        => 4,
        'showeditedby'          => 8,
        'allowmembergroups'    => 16,
        'isbannedgroup'        => 32
);


Should be:

includes/init.php
Find
Code:

'canadminupgrade'      => 32768,
Replace with
Code:

'canadminupgrade'      => 32768,
'canadminshouts'        => 65536,

Find
Code:

// field names for usergroup display options
$_BITFIELD['usergroup']['genericoptions'] = array(
        'showgroup'            => 1,
        'showbirthday'          => 2,
        'showmemberlist'        => 4,
        'showeditedby'          => 8,
        'allowmembergroups'    => 16,
        'isbannedgroup'        => 32
);

I'm sure most people will catch it as they read it, but better to have a post about it :) (I'm sure there is some mention of it before also, but I just skimmed to the end to see what errors I might encounter with a recent install)

Works fine for me now: http://www.axioentertainment.com/forum/

I do have one annoyance though, when you click Who's Online it displays the following now:
Quote:

Unknown Location
/forum/shoutbox.php?do=main
Is there any way I can fix this?

owner 06-16-2005 01:56 PM

Warning: Cannot modify header information - headers already sent by (output started at /home/public_html/includes/functions_newpost.php:1) in /shoutbox.php on line 130

I get this error whenever iam posting a new shout as iam the admin :( .. Help plz ... Otherwise everything of it works

yoyoyoyo 06-16-2005 02:54 PM

I put my site in to debug mode and found that there are 16 queries executed for the shoutbox iframe page! yikes

animehawk 06-21-2005 11:58 PM

After a few hours of scouring this thread, looking for other shoutboxes ect... I have finally got it working. The text is a little big, but there is no background anymore. If you go to the shoutbox_main template and remove
Code:

$headinclude
it should look like this

Code:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>

<title></title>

</head>
<body class="alt2">

<table width="100%" cellpadding="2" cellspacing="0" border="0" align="center">
$shoutbits</table>

</body>
</html>

The text gets bigger, but I'd rather that then a background making so no one can read the shouts.

SlipNslide281 06-24-2005 06:40 PM

shoutbox installed fine and working but It didn't install the shoutbox, shout manager in my admincp. how can I install the manager? Anyone that visits my site and shout, edit, and delete shouts.

loftyasianz 06-26-2005 10:58 PM

i'm new to vbulletin "hacking" so i'm having a few problems installing this shoutbox. i'm getting a sql error and i'm not too sure how to fix it. can someone help me?

thanks in advanced.
warren
Quote:

Database error in vBulletin 3.0.7:

Invalid SQL: ALTER TABLE usergroup ADD shoutboxpermissions INT UNSIGNED NOT NULL DEFAULT '0' AFTER forumpermissions
mysql error: Duplicate column name 'shoutboxpermissions'

mysql error number: 1060

TTG 06-26-2005 11:36 PM

Quote:

Originally Posted by SlipNslide281
shoutbox installed fine and working but It didn't install the shoutbox, shout manager in my admincp. how can I install the manager? Anyone that visits my site and shout, edit, and delete shouts.

In admincp, find :-

PHP Code:

construct_nav_group($vbphrase['subscriptions'], '<hr />');
    } 

Underneath add :-

PHP Code:

if (can_administer('canadminshouts'))
    {
        
$printhr true;
        
construct_nav_option($vbphrase['shout_manager'], 'shout.php?do=modify');
        
construct_nav_option($vbpharse['find_shouts'], 'shout.php?do=find');
        
construct_nav_group($vbphrase['shoutbox'], '<hr />');
    } 


animehawk 06-27-2005 11:15 AM

Quote:

Originally Posted by loftyasianz
i'm new to vbulletin "hacking" so i'm having a few problems installing this shoutbox. i'm getting a sql error and i'm not too sure how to fix it. can someone help me?

thanks in advanced.
warren

Did you already try to install this once? Or have any other shoutboxes installed?

flex22 06-27-2005 09:07 PM

I'm having the same problem as loftyasianz.

When I first installed this hack, everything went fine, no errors.The only problem was that shoutbox or shoutbox manager appeared nowhere!

Hmm, so I tried to install it again, and now I keep getting this error:
Quote:

Database error in vBulletin 3.0.7:

Invalid SQL: ALTER TABLE usergroup ADD shoutboxpermissions INT UNSIGNED NOT NULL DEFAULT '0' AFTER forumpermissions
mysql error: Duplicate column name 'shoutboxpermissions'

mysql error number: 1060
What do i need to do to start anew with this hack?

Cheers!

loftyasianz 06-27-2005 10:55 PM

Quote:

Originally Posted by animehawk
Did you already try to install this once? Or have any other shoutboxes installed?

yes i already do have it installed but like the post above mine, i dont not have any buttons or permission in the admincp so i tried to reinstall it.

TTG 06-28-2005 01:04 AM

Quote:

Originally Posted by flex22
I'm having the same problem as loftyasianz.

When I first installed this hack, everything went fine, no errors.The only problem was that shoutbox or shoutbox manager appeared nowhere!

Hmm, so I tried to install it again, and now I keep getting this error:

What do i need to do to start anew with this hack?

Cheers!

You can't run the installer twice 'cos the 1st step of the installer runs the SQL changes :-

1 => 'Running MySQL Queries',
2 => 'Importing Templates',
3 => 'File Edits',
4 => 'Template Edits',
5 => 'Creating Permissions',
6 => 'Inserting Phrases and Settings',
7 => 'Install Complete

You need to completely uninstall and then run the installer again .. make sure you run it until you see "The installation should now be complete. Please delete shout_install.php and shout_upgrade.php"

loftyasianz 06-28-2005 01:09 AM

thank you guys so much it works perfectly now ^^

TTG 06-28-2005 01:18 AM

Quote:

Originally Posted by loftyasianz
thank you guys so much it works perfectly now ^^

WOW .. that was quick .. 5 mins between me posting a solution and you getting it to work ..

mike3k 06-28-2005 07:04 PM

I have installed this mod but in the AdminCP - vbulletin setting's - SoutBox setting's i see nothing only Save and Rest no other option's. Where did they go ?

Thanks

mike3k 06-28-2005 07:48 PM

i get this

Invalid SQL: ALTER TABLE usergroup ADD shoutboxpermissions INT UNSIGNED NOT NULL DEFAULT '0' AFTER forumpermissions
mysql error: Duplicate column name 'shoutboxpermissions'

mysql error number: 1060

mike3k 06-28-2005 08:10 PM

ok managed to get rid and reinstall now its on but i dont see it on my main site? i have edited the correct style template but no shout box on index????

TTG 06-28-2005 09:48 PM

Quote:

Originally Posted by mike3k
ok managed to get rid and reinstall now its on but i dont see it on my main site? i have edited the correct style template but no shout box on index????

Updated permissions for who is allowed to view and use the shoutbox ?

flex22 06-28-2005 10:10 PM

Has anyone got this working on vb 3.0.7 ?

I've been through the install, all went fine, but f'all shows up.It's like the damn thing hasn't even installed.

What's going on???

TTG 06-28-2005 10:58 PM

Template change made in forumhome ?
Updated permissions for usergroups to view / shout ?

flex22 06-28-2005 11:51 PM

I have changed the FORUMHOME template already, yes.

When I change the permissions, I egt this error message:

Database error in vBulletin 3.0.7:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
title = 'Registered Users',
description = '',
usertitle = '',
opentag = '',
closetag = '',
passwordexpires = '0',
passwordhistory = '0',
attachlimit = '0',
avatarmaxwidth = '80',
avatarmaxheight = '80',
avatarmaxsize = '20000',
profilepicmaxwidth = '100',
profilepicmaxheight = '100',
profilepicmaxsize = '65535',
pmquota = '50',
pmsendmax = '5',
canaddshout = '1',
candropshout = '1',
candropothershout = '1',
caneditshout = '1',
caneditothershout = '1',
canreadshouts = '1',
forumpermissions = '127487',
pmpermissions = '3',
calendarpermissions = '19',
wolpermissions = '1',
adminpermissions = '0',
genericpermissions = '2629319',
genericoptions = '30',
linkspermissions = '67329'
WHERE usergroupid=2
mysql error: Unknown column 'canaddshout' in 'field list'

mysql error number: 1054

This happens with the admin group as well.

Also, I don't see a "shoutbox" manager anywhere? *puzzled*

Marco van Herwaarden 06-29-2005 06:15 AM

Did you run teh shout_install.php installation file without any errors?

mike3k 06-29-2005 06:43 AM

flex22

Do what i did mate

UNINSTALL THE PICE OF CRAP!

I spent 4 hours yesterday playing with it trying to get it to work, and in the end after reading 80% of people's posts saying its crap i uninstalled it.

TTG 06-29-2005 08:29 AM

Quote:

Originally Posted by flex22
I have changed the FORUMHOME template already, yes.

When I change the permissions, I egt this error message:

Database error in vBulletin 3.0.7:

Invalid SQL: UPDATE usergroup SET

Did you complete the manual file edits shown in the installation

flex22 06-29-2005 10:56 AM

Quote:

UNINSTALL THE PIECE OF CRAP!
I have to admit, I'm don't usually have this attitude, but I probably agree with that quote.
Quote:

Did you complete the manual file edits shown in the installation
I did manually edit the php files, yes!
Quote:

Did you run teh shout_install.php installation file without any errors?
Yes!

Like a already said, everything went smoothly, no problemos!

The only "slight" *sarcasm* problemo is, when I go to use the feature, it doesn't work (permissions) and half of it isn't there (shoutbox manager), and shoutbox doesn't appear on my forums anywhere!
Apart from that, hmm I'm sure it must have installed :ermm:

lol, I tried uninstalling it last night, but even had problems there.I'm not sure what to do, even after following the uninstall instructions.

Therefore suggestions on how to install or uninstall are welcome, as I'm stuck in the middle at the moment, and either solution would get me out of this hole.

Cheers!

Dead End Society 06-30-2005 12:27 AM

I installed, made the changes to the files, added it to the forumhome template.

The shoutbox shows up as follows:
https://vborg.vbsupport.ru/external/2005/06/1.jpg

I have two issues. .
#1 why does the "page generation" msg come up twice in the iframe?
is there a way for me to remove this or atleast make the space below the form box taller so they dont mesh together? I've looked & cannot figure it out.

#2 I have the shoutbox in my vbulletin options. . I can change the permissions in the usergroups. . but I dont have the side admincp link to edit the other options/delete shouts & so on from the admincp. . I've made sure that I uploaded all of the included & edited files. . I double checked the updates made to said edited files. .

where may I be going wrong?

thanks in advance for any help sans flaming.
DES

AbSoluTc 06-30-2005 03:24 PM

how do i revert everything and start over? my box powered off during middle of process and now i cant get to the area where i need to see what files to edit. I wish the instructions were in a seperate file. :(

I guess I'll need to run db queries that reverse changes. i got all the way to where it tells you what files to edit.

PiranhATR 06-30-2005 05:54 PM

i installed tyhis mod but i have some problem?s
how can i uninstall this mo? :(

PiranhATR 06-30-2005 06:38 PM

Quote:

Originally Posted by flex22
I have to admit, I'm don't usually have this attitude, but I probably agree with that quote.

I did manually edit the php files, yes!

Yes!

Like a already said, everything went smoothly, no problemos!

The only "slight" *sarcasm* problemo is, when I go to use the feature, it doesn't work (permissions) and half of it isn't there (shoutbox manager), and shoutbox doesn't appear on my forums anywhere!
Apart from that, hmm I'm sure it must have installed :ermm:

lol, I tried uninstalling it last night, but even had problems there.I'm not sure what to do, even after following the uninstall instructions.

Therefore suggestions on how to install or uninstall are welcome, as I'm stuck in the middle at the moment, and either solution would get me out of this hole.

Cheers!

how did you uninstall it?

Adam21 07-04-2005 02:59 AM

messed up my vb3.0.7 admincp!now cant access it!the following error-
Parse error: parse error, unexpected $ in /home/adamboyf/public_html/admincp/index.php on line 925

this line 925 was suppose to be the last line of admincp/index.php,so what more i'm i suppose to edit?Would greatly welcome any hlelp on correcting this or any suggestion on uninstalling this!!!

Marco van Herwaarden 07-04-2005 07:12 AM

Check to see that there are no extra characters (including space or new line) after the '?>' in that file. Also use a plain text editor and not something like DreamWeaver.

legendarysam 07-04-2005 09:22 PM

One of my files is screwed.

Quote:

Warning: Invalid argument supplied for foreach() in /includes/sessions.php on line 271

Unable to add cookies, header already sent.
File: /home/nottellingyou/public_html/includes/init.php
Line: 27

Any ideas at all?

Kei Kurono 07-09-2005 04:02 PM

how the hell do u uninstall this ++++?????


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

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.01664 seconds
  • Memory Usage 1,855KB
  • 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
  • (7)bbcode_code_printable
  • (2)bbcode_php_printable
  • (21)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete