News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

SMF Shoutbox

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

Previous topic - Next topic

qubbah

Quote from: qubbah on April 20, 2007, 12:50:01 PM
Quote from: mbirth on April 14, 2007, 01:58:59 PM
Quote from: qubbah on April 14, 2007, 01:10:19 PMfor example when i check the box of guest can shout, its still go to the default one..

Download the new 1.15b. This is working for SMF 1.1.2.

Cheers,
  -mARKUS

now im using smf 1.1.1
but when i sett the shoutbox option its still go to the default one...
anybody can tell me what is the problem there....

how about this....

anshar

#941
Great mod!

Mbirth, could you add option to change a time & date format? (or anyone can tell how to do it, especially with date[day of week]?)

edit:

my forum is using iso-8859-2 charset (for polish language), everything works fine untill users trying to use special characters, instead of them I'm getting some ugly chars. Is there any solution? Those ugly chars are only in shoutbox, everything else is working very well.

If i set my forum char coding to 8859-1 and shout something in my language, then its displaying in right format with all proper characters. Very weird.

edit v2.0:

this helped

"ok, open up sboxdb.php in your forum directory, under "sources". Open up that file, go to line 181.. and look for this "      $result .= htmlentities($s, ENT_NOQUOTES, $context['character_set']);
    } else {"

remove it save and upload the file to server.

dyota

how to move shout box lower or after the forum statistic?

Kettu

Quote from: dyota on April 24, 2007, 12:07:06 PM
how to move shout box lower or after the forum statistic?

Move the code
  // display shoutbox
  if (function_exists('sbox')) sbox();

at your Boardindex.Template.php to the position you want i.e. before
// Here's where the "Info Center" starts...
Main Forum: SMF 2.0.6
Co-Forum: SMF 2.0.6

qubbah

Quote from: qubbah on April 24, 2007, 05:15:44 AM
Quote from: qubbah on April 20, 2007, 12:50:01 PM
Quote from: mbirth on April 14, 2007, 01:58:59 PM
Quote from: qubbah on April 14, 2007, 01:10:19 PMfor example when i check the box of guest can shout, its still go to the default one..

Download the new 1.15b. This is working for SMF 1.1.2.

Cheers,
  -mARKUS

now im using smf 1.1.1
but when i sett the shoutbox option its still go to the default one...
anybody can tell me what is the problem there....

how about this....
im still waiting the anwser for this

Kettu

Quote from: qubbah on April 24, 2007, 11:50:09 PM
Quote from: qubbah on April 24, 2007, 05:15:44 AM
Quote from: qubbah on April 20, 2007, 12:50:01 PM
Quote from: mbirth on April 14, 2007, 01:58:59 PM
Quote from: qubbah on April 14, 2007, 01:10:19 PMfor example when i check the box of guest can shout, its still go to the default one..

Download the new 1.15b. This is working for SMF 1.1.2.

Cheers,
  -mARKUS

now im using smf 1.1.1
but when i sett the shoutbox option its still go to the default one...
anybody can tell me what is the problem there....

how about this....
im still waiting the anwser for this
There is no answer for mbirths version, because 1.15 was made for RC3 and 1.15b is made for 1.1.2. There was no version for 1.1.1. So why don't you update to the newer version?
Main Forum: SMF 2.0.6
Co-Forum: SMF 2.0.6

JoeB

Great work! Well done
Works fine but only in english
How to make it work in Arabic?
I copied the file sbox.english.php & rename it to sbox.arabic.php but all what I can see is wrong letters??
how to make arabic letters appear?
Please advice me
Best regards
Joe

Granit

I have tryed to install this shoutbox, but the only thing a get when i try to install is this.

"Incorrect table name ''
Fil: /home/sportext/public_html/forum/Packages/temp/sbox_setup.php
Rad: 83

How to fix this so my members can use this shoutbox?
I am using the latest smf installation.

Kettu

Quote from: Granit on April 25, 2007, 09:15:37 AM
How to fix this so my members can use this shoutbox?
I am using the latest smf installation.
I think you mean 1.1.2. And what shoutbox version do you use?
Main Forum: SMF 2.0.6
Co-Forum: SMF 2.0.6

dyota

i install wel but when i run it in my forum, contain
"hacking attempt"

what should i do

i user smf 1.1.2, english

Granit

Quote from: Kettu on April 25, 2007, 09:42:43 AM
Quote from: Granit on April 25, 2007, 09:15:37 AM
How to fix this so my members can use this shoutbox?
I am using the latest smf installation.
I think you mean 1.1.2. And what shoutbox version do you use?

I am trying to install the latest, 1.5b or something.

TC

Hmm,

Is there a way to display the shoutbox on all pages instead of just the index?

gwalior

#952
Quote from: Moa666 on April 23, 2007, 04:17:16 PM
i have this message in the shoutbox:
Connection Problems
Sorry, SMF was unable to connect to the database. This may be caused by the server being busy. Please try again later.
i am using smf 1.1.2 and smf shoutbox 1.15b.
if someone knows the solution, help me

I have the same problem, same versions.
Is it a problem due to my host free.fr  ?

bbulldog

Quote from: TC on April 25, 2007, 03:46:45 PM
Hmm,

Is there a way to display the shoutbox on all pages instead of just the index?
might be worth putting it in the header somewhere... I will look into this today for you

bbulldog

#954
Moving the shoutbox to the top so it shows on every page.

right i looked into this and it was easy enough to do
This is for the default theme on version 1.1.2.

first is to open the Boardindex.template.php and find this:

// display shoutbox
if (function_exists('sbox')) sbox();



this needs to be removed as it is the entry for the shoutbox on the Board index.

Then open the Index.template.php and find this


   echo '
               </form>
            </td>
         </tr>
      </table>
   </div>';


   // Show the menu here, according to the menu sub template.
   template_menu();



change it to read like this:

   echo '
               </form>
            </td>
         </tr>
      </table>';

// display shoutbox
if (function_exists('sbox')) sbox();

   echo'
   </div>';


   // Show the menu here, according to the menu sub template.
   template_menu();



below is a picture on our test board of where the shout box is.
The theme is modified with other info in the top too.

mbirth

Quote from: Metalguyx on April 20, 2007, 08:06:44 PM
ok i instaled and its ok i see it on the board an all, but when i shout my (every user) bowser blockes for a while and then it says This:



and if i click contine it somes again, but if i click "stop script" it posts, whats the problem??! plzz help

This only occurs if you set the "Enter text here..." to an empty string. This is fixed with the new 1.16. As a workaround (if you don't want to update the mod), set the text to a single space in options.

You will find it in the file sbox.english.php in your languages-directory on your server. Find the line:

$txt['sbox_TypeShout'] = '';

And add a space between the quotes.


Cheers,
  -mARKUS


NEVER contact me via ICQ/MSN/whatever for support inquiries unless I told you to do so! Use the forum threads instead.
Only send PMs if you need to tell me sensitive data.

gwalior

problem solved, soluce here : http://www.simplemachines.org/community/index.php?topic=115651.msg745316#msg745316
(in french)

But I have a new error :
QuoteFatal error: mkdir(/mnt/150/sda/2/d/xxxxx/forum/sbox.history.html.lock) [<a href='function.mkdir'>function.mkdir</a>]: File exists in /mnt/150/sda/2/d/xxxxx/forum/Sources/sboxDB.php on line 67
When i click "shout"
When I refresh it works, anybody has an idea ?

mbirth

Quote from: gwalior on April 26, 2007, 08:02:00 AMBut I have a new error :
QuoteFatal error: mkdir(/mnt/150/sda/2/d/xxxxx/forum/sbox.history.html.lock) [<a href='function.mkdir'>function.mkdir</a>]: File exists in /mnt/150/sda/2/d/xxxxx/forum/Sources/sboxDB.php on line 67
When i click "shout"
When I refresh it works, anybody has an idea ?

Delete the directory /forum/sbox.history.html.lock on your server. If it happens again, there might be a misconfiguration of your server.

Cheers,
  -mARKUS


NEVER contact me via ICQ/MSN/whatever for support inquiries unless I told you to do so! Use the forum threads instead.
Only send PMs if you need to tell me sensitive data.

gwalior

#958
I delete the folder but I have still the error
What could be the problem with my serveur ?

The error message disappears when the shoutbox refresh, about 15 sec or when I click refresh

I have another difference betwen the screen in first page :

[26 avril 2007 à 15:47:02]
[] []  <-- I Have this strange line
[X][Jeu 15:34] <Gwalior> ....

And smileys doesn't work (on 1.16)

Thanks !

Granit

Quote from: Granit on April 25, 2007, 02:09:25 PM
Quote from: Kettu on April 25, 2007, 09:42:43 AM
Quote from: Granit on April 25, 2007, 09:15:37 AM
How to fix this so my members can use this shoutbox?
I am using the latest smf installation.
I think you mean 1.1.2. And what shoutbox version do you use?

Ok a guess that no one nows how to install this then.

I am trying to install the latest, 1.5b or something.

Advertisement: