FlashChat - How To Get It Working In ICY


Goto page 1, 2, 3, 4, 5  Next

Subject: Re: FlashChat - How To Get It Working In ICY
Got Flashchat working today.

Here are some screen caps for setup via CMS page

fc2

fc1

fc3


Here is the code to put in the page..

Code: [Download] [Hide] [Select]
<IFRAME SRC="/forum/chat/flashchat.php" WIDTH=100% HEIGHT=500></IFRAME>

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
Thank you very much for posting this. :mricy:

Subject: Re: FlashChat - How To Get It Working In ICY
Sure :)

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
as you have done to install her? and' only for phpbb?

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
I don't know what you are asking..

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
I don't understand as it integrates him inside icy phoenix..

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
I don't undertsand how to manage users....
How can I integrate FlashChat so it can use icyPhoenix users?

When I run the /<chat>/install.php it ask me if I want to integrate it with an existing board, but I an't find IcyPhoenix :(

How do you do the user integration?

Bags!!!

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
Use the phpbb2.0+ entry and you should be fine :)

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
All works well but I like to know how to open a popup with the flashchat.
I mean, I made a link on forum header (near to "home", "forum" etc.) named "chat".
I'd like, if someone can help me, when the user click on "chat" the chat popup should be opened with automathic user login...

BAgs!!!

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
bags wrote: [View Post]
All works well but I like to know how to open a popup with the flashchat.
I mean, I made a link on forum header (near to "home", "forum" etc.) named "chat".
I'd like, if someone can help me, when the user click on "chat" the chat popup should be opened with automathic user login...

BAgs!!!


Something like this (in the header links "Chat")?

If so, then follow these instructions

First open overall_header.tpl (or overall_header_mx.tpl or overall_header_sc.tpl [overall_header_xx.tpl], depending what templates you installed) in your template folder (ex. templates/mg_themes)

Then search for

Code: [Download] [Hide] [Select]
{UPI2DB_FIRST_USE}


After, add

Code: [Download] [Hide] [Select]
<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=600,width=800');
if (window.focus) {newwindow.focus()}
return false;
}

// -->
</script>


You change the height and width to meet what you need

Then search for

Code: [Download] [Hide] [Select]
<a href="{U_INDEX}">{L_INDEX}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;


One line after (or enter on your keyboard) add

Code: [Download] [Hide] [Select]
<a href="url/to/chat" onclick="return popitup('url/to/chat')">{L_CHAT}</a>&nbsp;&nbsp;<img src="{FULL_SITE_PATH}{IMG_MENU_SEP}" alt="" />&nbsp;


Change url/to/chat to the directory your chat is located, along with the script (ex. chat/flashchat.php)

Save and upload

Next go to the directory "includes/"

Find page_header.php

Open it

Find

Code: [Download] [Hide] [Select]
'L_SEARCH_EXPLAIN' => $lang['Search_Explain'],


After add

Code: [Download] [Hide] [Select]
'L_CHAT' => $lang['Chat'],


Save and upload

Last edited by coolguy14783 on Sun 19 Aug, 2007 20:57; edited 5 times in total
Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
To add chat as chat.php (such as this) and match the template, follow these instructions

Download the following attachment - FlashChatIP.zip

Extract the zip archive

Place chat.php in the directory where your icy is installed

Place chat_body.tpl in the template folder you are using (ex. templates/mg_themes)

Edit in chat_body.tpl

Code: [Download] [Hide] [Select]
<iframe src="url/to/chat" frameborder="0" width=100% height=600></iframe>


Change "url/to/chat" to your flashchat script location (ex. /chat/flashchat.php)

You can also change the width and height to what you want

Then go to the directory "/includes"

Open page_header.php

Find

Code: [Download] [Hide] [Select]
'L_SEARCH_EXPLAIN' => $lang['Search_Explain'],


One line after add

Code: [Download] [Hide] [Select]
'L_CHAT' => $lang['Chat'],
'U_CHAT' => append_sid('chat.' . $phpEx),


Save and upload

Last edited by coolguy14783 on Sun 19 Aug, 2007 20:58; edited 1 time in total

FlashChatIP.zip
Description:  
Download
Filename: FlashChatIP.zip
Filesize: 828 Bytes
Downloaded: 170 Time(s)

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
Really Great :)

thx a lot,
Bags!!!

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
Quote:
To add chat as chat.php (such as this) and match the template, follow these instructions

Download the following attachment - FlashChatIP.zip

Extract the zip archive

Place chat.php in the directory where your icy is installed

Place chat_body.tpl in the template folder you are using (ex. templates/mg_themes)

Edit in chat_body.tpl

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
<iframe src="url/to/chat" frameborder="0" width=100% height=600></iframe>


Change "url/to/chat" to your flashchat script location (ex. /chat/flashchat.php)

You can also change the width and height to what you want

Then go to the directory "/includes"

Open page_header.php

Find

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
'L_SEARCH_EXPLAIN' => $lang['Search_Explain'],


One line after add

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
'L_CHAT' => $lang['Chat'],
'U_CHAT' => append_sid('chat.' . $phpEx),


Save and upload





Instead of doing all the work of making tpl files and custom php files like this, why not do it the way I did here? It only takes a few minutes.

http://www.icyphoenix.com/viewtopic.php?t=1761&start=9#

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
drexful wrote: [View Post]
Quote:
To add chat as chat.php (such as this) and match the template, follow these instructions

Download the following attachment - FlashChatIP.zip

Extract the zip archive

Place chat.php in the directory where your icy is installed

Place chat_body.tpl in the template folder you are using (ex. templates/mg_themes)

Edit in chat_body.tpl

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
<iframe src="url/to/chat" frameborder="0" width=100% height=600></iframe>


Change "url/to/chat" to your flashchat script location (ex. /chat/flashchat.php)

You can also change the width and height to what you want

Then go to the directory "/includes"

Open page_header.php

Find

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
'L_SEARCH_EXPLAIN' => $lang['Search_Explain'],


One line after add

Code: [Download] [Hide] [Select]
Code: [Download] [Show]
'L_CHAT' => $lang['Chat'],
'U_CHAT' => append_sid('chat.' . $phpEx),


Save and upload





Instead of doing all the work of making tpl files and custom php files like this, why not do it the way I did here? It only takes a few minutes.

http://www.icyphoenix.com/viewtopic.php?t=1761&start=9#


True. Maybe I just like doing things manually, that's all. And also others can learn from it too.

Profile PM  
Subject: Re: FlashChat - How To Get It Working In ICY
I would like to use flash chat of tufat, but I did not understand like carrying out the process of integration with Icyphoenix, you could explain it a little more detailed.....es than I am quite clumsy with php, excuse my English :cry: :cry:

Goto page 1, 2, 3, 4, 5  Next

Page 1 of 5


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.1577s (PHP: 14% SQL: 86%)
SQL queries: 15 - Debug Off - GZIP Enabled