SMF Shoutbox

Started by Deep, March 15, 2006, 08:09:52 AM

Previous topic - Next topic

DarkAngel612

@h4ni:

Have you looked in the admin section at the settings for it. You should be able to set it there---I think

as for delteing messages...do you not see the red x's next to the shouts? again this is in the setting area at the bottom of the page where you can  check off the ones you want to delete

are you getting any error messages?

is it working right every other way?
Fantasy Attic ::  Fantasies Realm Market :: SMF 2.1.4 with various mods and TinyPortal

Silveri

Rough finnish translation (sbox.finnish.php):

<?php

//SMF Shoutbox
$txt['sbox_ModTitle'] = 'SMF Huutolaatikko';
$txt['sbox_KillShout'] = 'Haluatko poistaa tämän viestin?';
$txt['sbox_Refresh'] = 'Päivitä';
$txt['sbox_RefreshEnable'] = '<b>AKTIVOI päivitys</b>';
$txt['sbox_RefreshDisable'] = 'Keskeytä päivitys';
$txt['sbox_RefreshBlocked'] = '[<span class="Kill">Automaattinen päivitys keskeytetty toimettomuuden vuoksi</span>]';
$txt['sbox_History'] = 'Historia';
$txt['sbox_HistoryClear'] = 'Tyhjennä historia';
$txt['sbox_HistoryNotFound'] = 'Historiatietoa ei löytynyt.';
$txt['sbox_Guest'] = 'Vieras';
$txt['sbox_TypeShout'] = '<Kirjoita viestisi ja paina ENTER>';
$txt['sbox_Login'] = '<a href="' . $scripturl . '?action=login">Kirjaudu</a> tai <a href="' . $scripturl . '?action=register">rekisteröidy</a> osallistuaksesi keskusteluun.';

// Settings
$txt['sbox_Visible'] = 'Huutolaatikko näkyy';
$txt['sbox_ModsRule'] = 'Valvojat voivat poistaa viestejä';
$txt['sbox_DoHistory'] = 'Luo viestihistoria';

$txt['sbox_GuestVisible'] = 'Tee huutolaatikko näkyväksi kaikille vieraille';
$txt['sbox_GuestAllowed'] = 'Vieraat saavat kirjoittaa huutolaatikkoon';
$txt['sbox_GuestBBC'] = 'Salli BBCoden käyttö vierailijoiden viesteissä*';

$txt['sbox_SmiliesVisible'] = 'Hymiörivi on näkyvissä';
$txt['sbox_UserLinksVisible'] = 'Näytä linkit profiileihin';
$txt['sbox_AllowBBC'] = 'Salli BBCode';
$txt['sbox_NewShoutsBar'] = 'Näytä rivimerkki';
$txt['sbox_MaxLines'] = 'Näkyvien viestien enimmäismäärä';
$txt['sbox_Height'] = 'Huutolaatikon korkeus (px)';

$txt['sbox_RefreshTime'] = 'Päivitysväli (sekunnit)';
$txt['sbox_BlockRefresh'] = 'Estä päivitys toimettomuuden vuoksi (' . $modSettings['lastActive'] . ' minuuttia)';
$txt['sbox_EnableSounds'] = 'Äänet päällä';

$txt['sbox_FontFamily'] = 'Kirjasinperhe';
$txt['sbox_TextSize'] = 'Kirjasinkoko';
$txt['sbox_TextColor1'] = '2. Kirjasimen väri kirkkaille teemoille';
$txt['sbox_DarkThemes'] = 'Lista tummista teemoista<div class="smalltext">(Hakemistojen nimet erotettuna pystysuoralla viivalla, esim. "BlackDaySMF1|blood_and_black")</div>';
$txt['sbox_TextColor2'] = '2. Kirjasimen väri tummille teemoille';

?>

texastig

I've got smf 1.1.4 installed and sbox v1.16b
installed.
I don't have the smf shoutbox tab
in the features and options.
In the actual shoutbox, I don't have the
clear history or history options showing up.
All I can see is these brackets where they
should be.
I am using the Minerva Theme and installed
shoutbox while the Minerva Theme was active.
Please advise.
Thanks
TexasTig

DarkAngel612

@texastig:

have you tried it with another theme...even the default one?

I asked becasue I have had other mods---like the smf gallery lite and pro versions that work really great, installed easy but no config link in the admin AND if it works in another theme then it is  the theme that is misbehaving (not compatible).
Fantasy Attic ::  Fantasies Realm Market :: SMF 2.1.4 with various mods and TinyPortal

texastig

DarkAngel612, thank you helping me out.
I will try another theme and see if everything shows up.
I'll get back with you to tell you how it went.
Thanks

friky19

#1285
nice addon, i got it working perfectly fine on my site. had to fix that line 83 error when installing, and add it manually to my theme.

now im having the same problem as texastig, i dont see the shoutbox tab in features and options, nor the clear history or history options. same brackets.... using versatility theme

oh and one other request, is there a joomla mod or something so it can incorporate into it ?

EDIT: FiXed the clear history thingy, it appears now. Thing is that there was no language file for spanish. I created one and now it appears. It now appears in the configuration also

Silveri

@texastig

Are you using another language than the ones provided by the mod? (such as english-utf8 or something else). If you change your own language to english you should be able to access the shoutbox settings in the admin panel.

Another, better way to do it is to go to the default theme folder and copy the english language file to match your used language.

Nibogo

I have one problem with this mod:

Table 'nibo_nibogo.smf_sbox_content' doesn't exist
Archivo: /www/awesomewebspace.com/n/i/b/nibo/htdocs/FORO/Sources/sboxDB.php
Línea: 107

but i dont know of i have to create this table or not

friky19

damn, now i know why someone left....

NIBOGO, create the table manually, open your mysql thingy and go to the smf database and put this line:

CREATE TABLE `smf_sbox_content` ( `id` int(11) unsigned NOT NULL auto_increment, `time` int(10) unsigned NOT NULL, `ID_MEMBER` mediumint unsigned NOT NULL, `content` text NOT NULL, PRIMARY KEY (`id`));

then edit your sbox_setup.php and comment out these lines:

//$result = mysql_query("DROP TABLE `{$db_prefix}sbox_content`");

//$result = db_query("
   //     CREATE TABLE `{$db_prefix}sbox_content` (
       // `id` int(11) unsigned NOT NULL auto_increment,
       // `time` int(10) unsigned NOT NULL,
       // `ID_MEMBER` mediumint(8) unsigned NOT NULL,
       //   `content` text NOT NULL,
       //   PRIMARY KEY (`id`))", __FILE__, __LINE__);


save file, add it all again to a zip, upload and reinstall. it should work now. Next time just read the whole post or you can use the search box to find. I did yesterday

texastig

#1289
Everyone,  I got it working. The board was not set to English but English-utf8.
Thanks for your help.
DarkAngel, thank you for your first reply in helping me.
Thanks,
TT

DarkAngel612

you are very welcome and thanks for coming back and letting all know what they may look into if the same problem should arise for them too.
Fantasy Attic ::  Fantasies Realm Market :: SMF 2.1.4 with various mods and TinyPortal

liten

#1291
I don't know if this can help but I resolved my "internal server error"  by un-installing the flash chat integration package (since we ended up not needing it that much).

ETA:  actually updating the integration mod works too   :P

TheLyricist

Hey, guys...
I see this:
Notice: Use of undefined constant shop - assumed 'shop' in /host/lodidodi/forums/Sources/Load.php(1756) : eval()'d code on line 258

Notice: Use of undefined constant gallery - assumed 'gallery' in /host/lodidodi/forums/Sources/Load.php(1756) : eval()'d code on line 259


in my shoutbox all the time... :s
Any idea how to remove it?
(do i need to upload load.php?)

tam2oo5

Also getting this load.php error , heres my error below

Notice: Use of undefined constant donate - assumed 'donate' in /home/content/t/a/m/****/html/SMF2/Sources/Load.php(1733) : eval()'d code on line 39

Is there anyway of removing the notice?, just so it wont appear?

TheLyricist

I found my problem...
It was in Modifications.english.php ... i wrote
$txt[chat] = 'chat';
instead of:
$txt['chat'] = 'chat';... :\

friky19

anyone know where i can get some "skull" smilies :D

DarkAngel612

I am a font and smilie junkie...lol

I know many places where you can go see if they have some skull...I don't know of any 1 place that has nothing but skul ones though but feel free to email me or pm me here.
Fantasy Attic ::  Fantasies Realm Market :: SMF 2.1.4 with various mods and TinyPortal

Tony_tha_Mastha

#1297
Hi,
I'm getting the same "internal server error" lots of people have been getting. I've tried chmodding sboxDB.php to 644 & 777 but nothing happened.

I'm using SMF 1.1.3 and I instaled the sbox_v1.16b.zip version.
Help please!

Edit: Done! I don't really know what I did to fix it, actually, I did nothing  :P
Thanks anyway!

elian

I have a question,
am there a possibility all of removing bulletins in 1 time in the shoutbox?
If yes, how and on which manner can be done that.
With thanks

Sic0

Installation of SMF Shoutbox went very smoothly indeed and placing it in the right position in a custom theme wasn't a problem.

Many thanks to all who helped with this mod and I like the SMS feel to it.

My only concern is that it does seem to be slowing my site down (probably due to refreshing). Is it possible to reduce this in any way?


Cheers

Advertisement: