AjaxChat Integration (latest version 3.2.1)

Started by .HuNTeR., August 27, 2008, 12:59:06 AM

Previous topic - Next topic

4T3IG0

Quote from: 4T3IG0 on July 25, 2009, 06:27:51 PM
Hi mrtrc266

I upgrade to SMF 2.0 RC1.2 and I'm trying to change the name of the "title" Shoutbox but can't find where to edit. Can you please help me once more?

Tnks.    ;)



I just did it. Here's the file to edit:  Shout.english.php (just in case anywone need it).

Tnks anyway.   ;)



Rockz

#3161
Quote from: Blinker on February 04, 2009, 02:45:08 AM
I get these strange symbols at the top left corner of my shoutbox - 

Any ideas?

I'm getting these symbols at the top left corner of my shoutbox also.  Has anyone ever run into this before and found a solution?

QuoteYes, "" is the Byte Order Mark (BOM) of the Unicode Standard. Specifically it is the hex bytes EF BB BF, which form the UTF-8 representation of the BOM, misinterpreted as ISO 8859/1 text instead of UTF-8.

Probably what it means is that you are using a text editor that is saving files in UTF-8 with the BOM, when it should be saving without the BOM. It could be PHP files that have the BOM, in which case they'd appear as literal text on your page. Or it could be translated text you pasted into Joomla! edit windows.

The Unicode Consortium's FAQ on the Byte Order Mark is at http://www.unicode.org/faq/utf_bom.html#BOM [nofollow] .

I found this quote which may offer some insight.  Does this mean when I made an edit to some of my chat/shoutbox files (amended length of time for messages to remain and number of messages) that I may have saved them in Notepad incorrectly?

Thanks.

RizoR

Hi, I have 1.1.10 and this doesn't work for me, I installed it manually into my script, But it doesn't show up, I added the script here

   // Show some statistics next to the link tree if SP1 info is off.
   echo '
<table width="100%" cellpadding="3" cellspacing="0">
   <tr>
      <td valign="bottom">', theme_linktree(), '</td>
      <td align="right">';
   if (!$settings['show_sp1_info'])
      echo '
            ', $txt[19], ': ', $context['common_stats']['total_members'], ' &nbsp;•&nbsp; ', $txt[95], ': ', $context['common_stats']['total_posts'], ' &nbsp;•&nbsp; ', $txt[64], ': ', $context['common_stats']['total_topics'], '
            ', ($settings['show_latest_member'] ? '<br />' . $txt[201] . ' <b>' . $context['common_stats']['latest_member']['link'] . '</b>' . $txt[581] : '');
   echo '
         </td>
      </tr>
   </table>';
echo' <div style="width:200px;">';echo getShoutBoxContent();echo '</div>';
   // Show the news fader?  (assuming there are things to show...)


But it doesn't wanna show up..

philcross

I had some leftover text after removing Chat.

So, I used packageparser to manually remove the stuff.

One instruction states to remove the following from the managesettings.php file

Quotefunction ModifyAjaxChatModSettings($return_config = false)
{
   global $txt, $scripturl, $context, $settings, $sc, $modSettings;

   $config_vars = array(
      array('check', 'enableShoutBox'),
      array('check', 'anyPageShoutBox'),
      array('check', 'miniChat'),
      array('check', 'chatPopUp'),
      array('check', 'enableChatButtonNo'),
      array('check', 'enableChatBelowPM'),
   );

   if ($return_config)
      return $config_vars;

   $context['post_url'] = $scripturl . '?action=admin;area=modsettings;save;sa=chat';
   $context['settings_title'] = $txt['chat'];

   // No removing this line you, dirty unwashed mod authors. :p
   if (empty($config_vars))
   {
      $context['settings_save_dont_show'] = true;
      $context['settings_message'] = '<div style="text-align: center">' . $txt['modification_no_misc_settings'] . '</div>';

      return prepareDBSettingContext($config_vars);
   }

   // Saving?
   if (isset($_GET['save']))
   {
      checkSession();

      $save_vars = $config_vars;

      saveDBSettings($save_vars);

      redirectexit('action=admin;area=modsettings;sa=chat');
   }

   prepareDBSettingContext($config_vars);

Now, i dont have the majority of that as it was deleted OK with uninstall BUT I do have part of that code

Quote// Saving?
   if (isset($_GET['save']))
   {
      checkSession();

      $save_vars = $config_vars;

      saveDBSettings($save_vars);

      redirectexit('action=admin;area=modsettings;sa=chat');
   }

   prepareDBSettingContext($config_vars);
}

So, do I still remove that segment or could it relate to something else?

Thanks

CrankyOldguy

Gaaaa!  159 pages in this thread, and when I try to PRINT it so I can read it without the avatars and overblown sigs all I get is the evil blank white PHP 'fatal error'.

Why am I not impressed with SMF 2.0 RC1??  >:(   This is the second time I've seen the forum PRINT function whitescreen on me with 2.0, and I've never seen it with 1.1.x

Aleksi "Lex" Kilpinen

Quote from: CrankyOldguy on July 26, 2009, 11:42:47 AM
Gaaaa!  159 pages in this thread, and when I try to PRINT it so I can read it without the avatars and overblown sigs all I get is the evil blank white PHP 'fatal error'.

Why am I not impressed with SMF 2.0 RC1??  >:(   This is the second time I've seen the forum PRINT function whitescreen on me with 2.0, and I've never seen it with 1.1.x
Good catch - I'll tell the site team about this issue.
Slava
Ukraini!
"Before you allow people access to your forum, especially in an administrative position, you must be aware that that person can seriously damage your forum. Therefore, you should only allow people that you trust, implicitly, to have such access." -Douglas

How you can help SMF

DilSe

hello plz help me about this error on my shout box...

ChatBot: Error: Connection timeout. Please try again.

TheListener

Quote from: Hanzalah on July 26, 2009, 12:40:43 PM
hello plz help me about this error on my shout box...

ChatBot: Error: Connection timeout. Please try again.

If you get a Connection  Status: 0 error from time to time it's harmless and you can stop it from showing

chat/js/chat.js
Find
Code: [Select]
this.addChatBotMessageToChatList('/error ConnectionStatus '+this.getHttpRequest(identifier).status);Replace with
Code: [Select]
if (this.getHttpRequest(identifier).status != 0) {
this.addChatBotMessageToChatList('/error ConnectionStatus '+this.getHttpRequest(identifier).status);
}               

Bernard T.

Quote from: mrtrc266 on July 20, 2009, 12:59:53 PM
@ Phil, yes the Package Parser will show you all the edit to change or remove for the entire mod.

@Jarpi
Unzip the AJAX Chat Intergration zip file that you downloaded.

Open package-info.xml
Find
<install for="1.1.6-1.1.9">

Replace with
<install for="1.1.6-1.99.99">

Then rezip it and installed the Mod via the Package Manager

Yep, I can confirm that just changing the version number doesn't do the job! There is something more. I didn't had much time to check everyting, but maybe something changed to 1.1.10 code (didn't look at diff's) that prevents finding the places to make changes... and as there is no debug info during mod install we can't fastly pinpoint the problem...
://#  Orion | Federation Servers | Info Sector

David_DiSanto

Okay, I am confused. I downloaded this mod, using the uploader and all that on my forum, and applied the mod and everything was working beautifully, or so I thought. Problem is, it turns out only myself, and my other admin can see/use the shoutbox. I noticed that the mod says "Access/Moderate permission." but how do I allow it to be used by all my forum members? Seems like a simple problem, I am praying for a simple solution!

Thanks in advance!
Quinn Allman
Celine Dion
Bert McCracken
Jepharee Howard
Dan Whitesides
Edward and Bella
Carlisle and Esme
Emmet and Rose
Alice and Jazz

My Lurrrvessss

Rockz

Quote from: David_DiSanto on July 26, 2009, 03:26:33 PM
Okay, I am confused. I downloaded this mod, using the uploader and all that on my forum, and applied the mod and everything was working beautifully, or so I thought. Problem is, it turns out only myself, and my other admin can see/use the shoutbox. I noticed that the mod says "Access/Moderate permission." but how do I allow it to be used by all my forum members? Seems like a simple problem, I am praying for a simple solution!

Thanks in advance!

Try Admin -> Permissions and make sure access to the Shout Box and/or Chat are checkmarked for the appropriate member groups when modifying permissions.

David_DiSanto

Quote from: Rockz on July 26, 2009, 04:31:31 PM
Quote from: David_DiSanto on July 26, 2009, 03:26:33 PM
Okay, I am confused. I downloaded this mod, using the uploader and all that on my forum, and applied the mod and everything was working beautifully, or so I thought. Problem is, it turns out only myself, and my other admin can see/use the shoutbox. I noticed that the mod says "Access/Moderate permission." but how do I allow it to be used by all my forum members? Seems like a simple problem, I am praying for a simple solution!

Thanks in advance!

Try Admin -> Permissions and make sure access to the Shout Box and/or Chat are checkmarked for the appropriate member groups when modifying permissions.
Thank you so so so much! :D You've solved my problem!
Quinn Allman
Celine Dion
Bert McCracken
Jepharee Howard
Dan Whitesides
Edward and Bella
Carlisle and Esme
Emmet and Rose
Alice and Jazz

My Lurrrvessss

zikzak.ir

#3172
If Mmknh version 1.1.10 in the home can get the mod

Thanks

--------------
Excuse me if I am a Persian-language high'm not speak English

fiorello

#3173
How do i change default style for the mini shoutbox on the forum page (not that big one).

zikzak.ir

SMF 1.1.10 version for this problem does ???


--------------
Excuse me if I am a Persian-language high'm not speak English

InsaneMustang

I want to thank mrtrc266 for a great mod.  I have 1.1.10 and although it didn't work at first I was able to search this thread for my answer.  Then I got the connection 500 and I was able to search the faq for the answer to that.

Best support for a mod yet.

Well done

zikzak.ir

   
If Mmknh

I ask the managers if you can test problem was the page I get the mod to بدید all able to use.


I like this mode the message box of room and very good




--------------
Excuse me if I am a Persian-language high'm not speak English

philcross


HELP - IT MUST BE POSSIBLE

I had this mod installed and managed to make a few adjustments.

Then, after upgrading from RC2.0 to RC2.1 it all went silly.

I was forced to delete the mod and manually remove some leftover coding.

I REALLY do want this Mod to work so I tried a fresh install (I had even deleted the DB stuff).

I CMODed the 2 index files to 755 but still it wont work.

All i get is an error message when the Chat opens and then when I type and enter, nothing comes up.

PLEASE - what do I need to do.

Thanks



SC2 Gateway

I'm running SMF 1.1.9, and I have a dark theme. The white of the shoutbox makes the theme look a little weird. Can I change the colors somehow?

Thank you,

www.sc2gateway.com
The Fastest Growing Starcraft II Community Out There

zikzak.ir

This version for smf 1.1.10 problem does?

Advertisement: