Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 5
Goto page 1, 2, 3, 4, 5  Next
 
Reply with quote Download Post 
Post 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>

 




____________
IP Version: 1.1.0.15a
Server Type: Linux
Apache Version: 1.3.37
PHP Version: 5.0.5
MySQL Version: 4.1.22-standard-log
Globals: Off
Safemode: Off
 
drexfulSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
Thank you very much for posting this.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
Sure
 




____________
IP Version: 1.1.0.15a
Server Type: Linux
Apache Version: 1.3.37
PHP Version: 5.0.5
MySQL Version: 4.1.22-standard-log
Globals: Off
Safemode: Off
 
drexfulSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
as you have done to install her? and' only for phpbb?
 



 
vascoseigrandeSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
I don't know what you are asking..
 




____________
IP Version: 1.1.0.15a
Server Type: Linux
Apache Version: 1.3.37
PHP Version: 5.0.5
MySQL Version: 4.1.22-standard-log
Globals: Off
Safemode: Off
 
drexfulSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
I don't understand as it integrates him inside icy phoenix..
 



 
vascoseigrandeSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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!!!
 



 
bagsSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
Use the phpbb2.0+ entry and you should be fine
 




____________
Check out my new website:
Adult Forums - A place where everyone can fit in.
Currently running v1.1.10.25 RC3
 
darkoneSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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!!!
 



 
bagsSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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 
coolguy14783Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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

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

 



 
Last edited by coolguy14783 on Sun 19 Aug, 2007 20:58; edited 1 time in total 
coolguy14783Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: FlashChat - How To Get It Working In ICY 
 
Really Great

thx a lot,
Bags!!!
 



 
bagsSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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#
 




____________
IP Version: 1.1.0.15a
Server Type: Linux
Apache Version: 1.3.37
PHP Version: 5.0.5
MySQL Version: 4.1.22-standard-log
Globals: Off
Safemode: Off
 
drexfulSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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.
 



 
coolguy14783Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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   
 



 
mamagalloSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 5
Goto page 1, 2, 3, 4, 5  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron