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)
-   -   [HTL] & [Normal] Shoutbox Hack - 1.03d (https://vborg.vbsupport.ru/showthread.php?t=59985)

Intex 06-25-2004 02:09 PM

Zachery - any ideas if any of the people work on this will be sorting out the non-HTL version to correct the DB entry errors?

tweak 06-27-2004 03:24 AM

I have this problem too........

Quote:

Originally Posted by J.C.
This is weird...

By installation default, Administrators, Moderators, and Registered Users all have

Can View Shoutbox ---> Set to YES
Can Shout / Post Messages --- Set to YES

BUT, I'm loging on as an Admin and it says:

Your usergroup(s) do not have permission to use the shoutbox.

What's wrong here? what could be the problem? Please help...

Thanks.


InnerSelf 06-27-2004 08:06 PM

Quote:

Originally Posted by tweak
I have this problem too........

try to save your permissions (even if they are already good) and try again. It worked for me!

NuclioN 06-28-2004 08:28 PM

An increasing number of members are reporting problems with the refresh. The whole forum homepage is displayed in the shoutbox sometimes. Wierd! Is there a fix for this?

Zachery 06-28-2004 08:51 PM

Quote:

Originally Posted by NuclioN
An increasing number of members are reporting problems with the refresh. The whole forum homepage is displayed in the shoutbox sometimes. Wierd! Is there a fix for this?

Never had that one happen, are you allowing html ?

NuclioN 06-29-2004 02:11 PM

No sir, no html allowed on the whole forum including the shoutbox :(

Zachery 06-29-2004 02:13 PM

Quote:

Originally Posted by NuclioN
No sir, no html allowed on the whole forum including the shoutbox :(

Sounds like it might be a browser error, can you give me any more details. like what browser and OS are they using ?

Link14716 06-29-2004 08:06 PM

WYSIWYG works. Here's the fix.

In shoutbox.php, find:
Code:

        // Blank shout check!
        if (empty($_POST['message'])) {
                eval(print_standard_error('error_shoutbox_1000_blankshout'));
        }

Replace with:
Code:

        // Blank shout check!
        if (empty($_POST['message']) && !isset($_POST['WYSIWYG_HTML'])) {
                eval(print_standard_error('error_shoutbox_1000_blankshout'));
        }


sabret00the 06-29-2004 08:22 PM

yayyyyyyyyyyyyyyyy, great work matt, fixed it :)

Zachery 06-29-2004 08:23 PM

Who rox? Scotty rox :D yay for devs!

weaver 06-30-2004 01:02 AM

Quote:

Originally Posted by Sue
is there anywhere to input "The Shoutbox" for users to see when they go to the main site? all there is is a blank box with a green arrow pointing where the shoutbox is... kinda confusing :(

I'm having the exact same problem. I've also repasted the code into the forumhome template as suggested by someone as a fix, but it didn't work for me. Everything else seems to work great.

Zachery 06-30-2004 01:07 AM

Quote:

Originally Posted by snobbymom
I'm having the exact same problem. I've also repasted the code into the forumhome template as suggested by someone as a fix, but it didn't work for me. Everything else seems to work great.

Looks like you dont have the phrases. did you just upgrade vBulletin ?

weaver 06-30-2004 01:24 AM

No, I haven't upgraded from 3.0.0 if that's what you're asking. Which phrase(s) appears to be missing? I went to the phrasegroup manager and had 5 pages of shoutbox phrases.

Zachery 06-30-2004 01:35 AM

Quote:

Originally Posted by snobbymom
No, I haven't upgraded from 3.0.0 if that's what you're asking. Which phrase(s) appears to be missing? I went to the phrasegroup manager and had 5 pages of shoutbox phrases.

Are you sure that you did all the edits ?

weaver 06-30-2004 01:41 AM

I had rechecked several times but I will recheck again. The only one I was iffy on was the one replacing the code only if you were using WYSIWYG. But it didn't seem to matter if I had that included or not.

weaver 06-30-2004 02:22 AM

I just realized that I have a shoutbox integrated on the main page because of vbindex. Would that be causing a conflict? I checked all of the file edits and those were all done.

ETA: Okay I have checked out all of the template changes and then looked for those phrases within my phrase manager. They exist and have text in the boxes for those phrases. But my shoutbox still looks like the picture in the previous attachment. I don't want to have to uninstall and reinstall but I guess that's what I'll have to do. Everything else about it is working perfectly so I can't figure out what went wrong.

NyCwill 06-30-2004 09:22 PM

is there a way that i can add this to vbadvanced CMPS as a module or hack??

Zachery 06-30-2004 09:26 PM

Quote:

Originally Posted by NyCwill
is there a way that i can add this to vbadvanced CMPS as a module or hack??

You can just call the iframe, ill see about adding some instructions to it when we do the update.

Just a small update, matt already announced the wysiwyg fix, we also got the standard editor working, and im working on updating the look of the shoutbox.php page :)

So far, besides the massive error its going well :D


If there are any other bugs that anyone has found there will be a forum for the shoutbox at geekydesigns.com within the hour

weaver 07-01-2004 12:57 AM

I tried to uninstall so I could do a fresh install but it's not happening. Keeps saying there's an error on the page whenever I select uninstall hack from the drop down list. I haven't been able to figure out why those phrases aren't working on the shoutbox because they do exist in my phrase manager. :( All of the template and file edits appeared fine to me.

Link14716 07-01-2004 01:20 AM

Anyone who has missing phrases on the main phrase did NOT do one of the index.php edits.

weaver 07-01-2004 03:31 AM

At least that's a point in some direction. I will just leave my comment at that before I say something nasty.

edeab220 07-01-2004 05:57 PM

Is there any way we can get the shoutbox to be working on multiple styles? So far it only works on the primary one that was set as default in vB Admin Options.

Zachery 07-01-2004 06:14 PM

Quote:

Originally Posted by edeab220
Is there any way we can get the shoutbox to be working on multiple styles? So far it only works on the primary one that was set as default in vB Admin Options.

Should work with whatever style a user is using.

The new style with the next release of the shoutbox should be more style friendly

Vman 07-02-2004 01:51 AM

How do you make the posts show in reverse, old to new, not new to old?

wolfgang2 07-05-2004 01:26 PM

Quote:

Originally Posted by BBCVman
How do you make the posts show in reverse, old to new, not new to old?

when is planned to release the next better version of this hack?
Really would love it:)

Zachery 07-05-2004 04:12 PM

Quote:

Originally Posted by wolfgang2
when is planned to release the next better version of this hack?
Really would love it:)

Well i was trying as hard as i could for a non nested table layout, however CSS2 has its limits and this is one of them.

edeab220 07-08-2004 04:32 AM

Quote:

Originally Posted by Zachery
Should work with whatever style a user is using.

The new style with the next release of the shoutbox should be more style friendly

When a user switches styles from one to another using the drop-down box at the bottom left, the shoutbox dosen't work; it only works in the style that was set as default in the ACP.

Hopefully the next release somehow fixes this...unless it is my problem :p.

Zachery 07-08-2004 02:18 PM

Quote:

Originally Posted by edeab220
When a user switches styles from one to another using the drop-down box at the bottom left, the shoutbox dosen't work; it only works in the style that was set as default in the ACP.

Hopefully the next release somehow fixes this...unless it is my problem :p.

Ah, sounds like you just didnt install the templates to another style :p

edeab220 07-08-2004 06:30 PM

Quote:

Originally Posted by Zachery
Ah, sounds like you just didnt install the templates to another style :p

I'm sure I did...take a look:

http://www.palmforums.org/forums/?styleid=20

Zachery 07-08-2004 07:06 PM

Quote:

Originally Posted by edeab220
I'm sure I did...take a look:

http://www.palmforums.org/forums/?styleid=20

There is a HUGE difference between editing the templates for a style and ADDING the templates to another style silly

edeab220 07-08-2004 08:04 PM

Quote:

Originally Posted by Zachery
There is a HUGE difference between editing the templates for a style and ADDING the templates to another style silly

lol...now I'm confused :-p. so, you wanna tell me in at least three sentences what I need to do? ;).

I used HTL to install the shoutbox and I did everything the HTL installer told me to do. It works in one style:

www.palmforums.org/forums

but it don't work in the other style (see my other post)

NuclioN 07-09-2004 09:17 AM

At vbulletintemplate there is a smilie addon for quickreply: http://www.vbulletintemplates.com/mo...ead.php?t=6449

It's a popup with a link and it puts smilies in the editfield with one click. Now i've placed this code in shoutbox_iframe and the pupup works ok but it does not put the smilie in the textfield.

Is it possible to do this and....how?

NuclioN 07-09-2004 09:29 AM

Quote:

Originally Posted by Zachery
Sounds like it might be a browser error, can you give me any more details. like what browser and OS are they using ?

This is what i saw in who's online by one user who have this problem:

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)

About 10% of the members have the complete forumhome index refreshed in the small iframe.

Cold Steel 07-11-2004 03:46 AM

/me installs.

Works great on 3.0.1. I put it in the arcade, though. Not in forumhome.

Mickie D 07-11-2004 12:12 PM

dont work on 3.03

well it works but it does not show up any phrases

ill keep my eyes peeled for an update but at the momment the members are using it alot so they can use it like that for the t9ime being lol

M?uschen 07-11-2004 07:12 PM

Hello,

my english isn't very good, but i need help. Please can anyone help me in easy english or in german per PN?

I want to delete all the old shoutbox shouts, reset the shoutbox stats and the shoutbox leaderboard, but i found no way. :ermm:

Thanks Mäuschen.

rinkrat 07-11-2004 07:53 PM

Just installed to compliment my uStore and everything went fine first try. Great stuff! The users are already wailing on it. I did the non-auto install and had to save my vbookie that was in the middle of one of the sections to be written over but besides that it was very smooth, under 15 min.

rinkrat 07-11-2004 08:00 PM

Quote:

Originally Posted by Intex
Link14716 - There are a lot of errors with the supplied SQL files. The first SQL file 'shoutbox.sql' contains an error where a preceding quote is missing.

The second SQL file to run 'phrases.sql' as far as I can see has a lot of duplicate entries which therefore cause SQL duplication errors. I've not even tried the rest because of the above errors.



Can you take a look at these and make sure they work. This will cause a lot of problems for others not using the HTL install.


Thanks


I got the same errors and panicked but everything seems to have ended up installing ok. It whould definitely be looked at and fixed.

M?uschen 07-11-2004 09:22 PM

Quote:

Originally Posted by rinkrat
I did the non-auto install ...it was very smooth, under 15 min.

Can you post what i have to install, the hack would installed of an other admin and so i dont know what is missing.

All these option are available: https://vborg.vbsupport.ru/attachmen...chmentid=15564

Please help.

Thanks M?uschen.

Dennis B 07-12-2004 12:46 AM

Quote:

Originally Posted by rinkrat
I got the same errors and panicked but everything seems to have ended up installing ok. It whould definitely be looked at and fixed.

The corrected non-HTL files are in post # 311 (page 21) in this thread.

Works great on 3.03, though I'll customize it a bit.
Installed. :)


All times are GMT. The time now is 11:49 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.02227 seconds
  • Memory Usage 1,833KB
  • 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
  • (2)bbcode_code_printable
  • (20)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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