Language: ChineseGermanSpanishFrenchDutchItalianRussian
123 Flash Chat Forums

Go Back   TOPCMM Community > 123 Flash Chat Server Software > 123 Flash Chat Support

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-25-2011, 04:42 AM
Senior Member
 
Join Date: May 2011
Posts: 214
Default Replacing startup flashchat logo

I've seen that others have replaced their 123flashchat logo when one enters into chat.
Can you tell me how I can do ahead and do this please.

Thanks.
Reply With Quote
  #2 (permalink)  
Old 07-25-2011, 05:22 AM
Administrator
 
Join Date: Dec 2008
Posts: 577
Default

You can add init_loading_bk to your chat link to change loading logo.

you can refer to
Chat Client Parameters - User Manual of 123 Flash Chat Server Software Version 9.1

check init_loading_bk
Reply With Quote
  #3 (permalink)  
Old 07-25-2011, 08:47 PM
Senior Member
 
Join Date: May 2011
Posts: 214
Default

Quote:
Originally Posted by admin View Post
You can add init_loading_bk to your chat link to change loading logo.

you can refer to
Chat Client Parameters - User Manual of 123 Flash Chat Server Software Version 9.1

check init_loading_bk
Thank you very much for the timely reply. I will go look at that.
Reply With Quote
  #4 (permalink)  
Old 07-26-2011, 02:18 AM
Administrator
 
Join Date: Dec 2008
Posts: 577
Default

The loading logo format:
http://<your chat ip url>/123flashchat.swf?init_loading_bk=http://www.123flashchat.com/img/screenshot.jpg

http://www.123flashchat.com/img/screenshot.jpg
this is the picture url, so change the url to your own logo.
Reply With Quote
  #5 (permalink)  
Old 07-31-2011, 07:37 PM
Senior Member
 
Join Date: May 2011
Posts: 214
Default

Quote:
Originally Posted by admin View Post
The loading logo format:
http://<your chat ip url>/123flashchat.swf?init_loading_bk=http://www.123flashchat.com/img/screenshot.jpg

http://www.123flashchat.com/img/screenshot.jpg
this is the picture url, so change the url to your own logo.
For example, my current main URL to send users to chat is; index.php?option=com_chat&view=chat
So how would I change the logo for that?

Is this something I would need to add to any URL links I make to the server? Isn't there another way because that would get complicated. In other words, isn't there a file on the server itself I could add or change?

I tried changing the joomla FS settings and tried;
"http://www.mydomain.com:35555/123flashchat.swf?init_loading_bk=http://www.mydomain.com/images/flashstart-logo.png/"

But that didn't work so where do I do this and can it be done globally instead.

Last edited by lewism; 07-31-2011 at 07:52 PM.
Reply With Quote
  #6 (permalink)  
Old 08-01-2011, 07:53 AM
Administrator
 
Join Date: Dec 2008
Posts: 577
Default

It needs to change the source code, and about the joomla chat moudle, the chat code is get from the file view.html.php, and you can find there is a parameter $url, please change the code from

$url = $cfg->client_location . $clientname . "?init_host=" . $server_host . "&init_port=" . $server_port . "&init_lang=" . $cfg->client_lang;

to

$url = $cfg->client_location . $clientname . "?init_host=" . $server_host . "&init_port=" . $server_port . "&init_lang=" . $cfg->client_lang."&init_loading_bk=http://www.123flashchat.com/img/screenshot.jpg";
Reply With Quote
  #7 (permalink)  
Old 08-01-2011, 04:17 PM
Senior Member
 
Join Date: May 2011
Posts: 214
Default

Quote:
Originally Posted by admin View Post
It needs to change the source code, and about the joomla chat moudle, the chat code is get from the file view.html.php, and you can find there is a parameter $url, please change the code from

$url = $cfg->client_location . $clientname . "?init_host=" . $server_host . "&init_port=" . $server_port . "&init_lang=" . $cfg->client_lang;

to

$url = $cfg->client_location . $clientname . "?init_host=" . $server_host . "&init_port=" . $server_port . "&init_lang=" . $cfg->client_lang."&init_loading_bk=http://www.123flashchat.com/img/screenshot.jpg";
client_lang."&init_loading_bk

Is there supposed to be a space or something else between the . and the two items?
I've tried as you suggest and with spacing but neither seems to make any difference.
Reply With Quote
  #8 (permalink)  
Old 08-02-2011, 03:13 AM
Senior Member
 
Join Date: May 2011
Posts: 214
Default

Kinda confusing folks.
You've told me something, support told me two different things. The last one I was told about did the trick but I don't know which is best to use.

The solution I was last given was;

//
If you want to do this by yourself, please go to your site document path<component>\com_chat\site\views\chat\tmpl

and change the parameter in these files:

<?php echo $this->chaturl; ?>

to

<?php echo $this->chaturl; echo'&init_loading_bk=http://www.teasingyou.com/images/flashstart-logo.png';?>

Then you will see your integrated chat loading background will be changed, thanks.
\\

Does it only need to be changed in default_flash.php

Last edited by lewism; 08-02-2011 at 03:17 AM.
Reply With Quote
  #9 (permalink)  
Old 08-02-2011, 09:19 AM
Administrator
 
Join Date: Dec 2008
Posts: 577
Default

Both of these methods are correct, you can use anyone of them.

Method 1:
Quote:
It needs to change the source code, and about the joomla chat moudle, the chat code is get from the file view.html.php, and you can find there is a parameter $url, please change the code from

$url = $cfg->client_location . $clientname . "?init_host=" . $server_host . "&init_port=" . $server_port . "&init_lang=" . $cfg->client_lang;

to

$url = $cfg->client_location . $clientname . "?init_host=" . $server_host . "&init_port=" . $server_port . "&init_lang=" . $cfg->client_lang."&init_loading_bk=http://www.123flashchat.com/img/screenshot.jpg";
Method 2:
Quote:
//
If you want to do this by yourself, please go to your site document path<component>\com_chat\site\views\chat\tmpl

and change the parameter in these files:

<?php echo $this->chaturl; ?>

to

<?php echo $this->chaturl; echo'&init_loading_bk=http://www.teasingyou.com/images/flashstart-logo.png';?>

Then you will see your integrated chat loading background will be changed, thanks.
\\

Does it only need to be changed in default_flash.php
Thanks!
Reply With Quote
  #10 (permalink)  
Old 08-03-2011, 04:43 AM
Senior Member
 
Join Date: May 2011
Posts: 214
Default

I understand now, thanks.

However, does it only need to be changed in default_flash.php
Reply With Quote
Reply

Was this information helpful?    Yes No



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:26 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.