<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Gixaw &#124; Support</title>
	<atom:link href="http://support.gixaw.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://support.gixaw.com</link>
	<description></description>
	<pubDate>Sat, 09 May 2009 20:46:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Upgrading Version 2.0 to 2.5</title>
		<link>http://support.gixaw.com/upgrading-version-20-to-25/</link>
		<comments>http://support.gixaw.com/upgrading-version-20-to-25/#comments</comments>
		<pubDate>Sat, 09 May 2009 20:41:22 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Upgrading]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=161</guid>
		<description><![CDATA[This installation guide will take you through the upgrade process from version 2.0 to version 2.5. If you wish to make a new installation, please follow the new installation instructions.
Before you upgrade&#8230;
You will need command line access (SSH) to run php commands for this upgrade process. 
Upgrading


Upload Gixaw Chat 2.5 to the same folder where version 2.0 of the chat [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><em>This installation guide will take you through the <strong>upgrade </strong>process from version 2.0 to version 2.5. If you wish to make a new installation, please follow the <a href="http://support.gixaw.com/gixaw-chat/installing-gixaw-chat/">new installation instructions</a>.</em></p>
<h3 style="text-align: left;">Before you upgrade&#8230;</h3>
<p style="text-align: left;">You will need command line access (SSH) to run php commands for this upgrade process. </p>
<h3 style="text-align: left;">Upgrading</h3>
<ol>
<li>
<p style="text-align: left;">Upload <a href="http://downloads.gixaw.com/chat/gixawchat-2.5.zip">Gixaw Chat 2.5</a> to the same folder where version 2.0 of the chat is installed. <strong><em>Overwrite any duplicate files.</em></strong></p>
</li>
<li>
<p style="text-align: left;">Once all files are uploaded, go to the command line and type the following command:<br />
<em><strong>php core/manage.php site/upgrade</strong></em></li>
<li>
<p style="text-align: left;">Remove all existing files from the <strong>data/files</strong> and <strong>data/assets</strong> folder. </p>
</li>
</ol>
<p style="text-align: left;">Your chat is now upgraded to version 2.5! If you encounter any error, please feel free to <a href="http://www.gixaw.com/contact">contact us</a>.</p>
<p style="text-align: left;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/upgrading-version-20-to-25/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating With Your Custom Database</title>
		<link>http://support.gixaw.com/integrating-with-your-custom-database/</link>
		<comments>http://support.gixaw.com/integrating-with-your-custom-database/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 14:30:46 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[custom application]]></category>

		<category><![CDATA[custom database]]></category>

		<category><![CDATA[integrate]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=141</guid>
		<description><![CDATA[Gixaw Chat can be seamlessly integrated with your custom application or member database. Please follow the instructions below:

First you need to create a file called gixawremote_custom.php. It should contain your PHP code with the following flow:
&#60;?php
require_once(realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.&#8217;gixawremote.php&#8217;);
if (/* user is not logged in */) {
    /*
       Show or redirect to the login form of your application.
       Once logged in, redirect the [...]]]></description>
			<content:encoded><![CDATA[<p>Gixaw Chat can be seamlessly integrated with your custom application or member database. Please follow the instructions below:</p>
<ol>
<li>First you need to create a file called <strong><em>gixawremote_custom.php</em></strong>. It should contain your PHP code with the following flow:</li>
<blockquote><p><!--p<br-->&lt;?php<br />
require_once(realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.&#8217;gixawremote.php&#8217;);</p>
<p>if (/* user is not logged in */) {<br />
    /*<br />
       Show or redirect to the login form of your application.<br />
       Once logged in, redirect the user back to the same url, with exactly same querystring.<br />
       It&#8217;s important that querystring remains the same or <em>return_to_gixaw</em> function won&#8217;t work.<br />
   */<br />
}<br />
else {<br />
   /*<br />
       User is logged in! We need to send it&#8217;s information back to<br />
       Gixaw installation which sent us here.</p>
<p>      The $data array should have the information about the logged in user.<br />
      The required keys are given below.<br />
   */<br />
    $data = array(<br />
            &#8217;external_id&#8217; =&gt; $user_id,<br />
            &#8217;display_name&#8217; =&gt; $nick_or_display_name,<br />
            &#8217;group_name&#8217; =&gt; $group_name,<br />
    );</p>
<p>    return_to_gixaw($data);<br />
}</p>
<p>?&gt;</p>
<p><strong><em>Accepted keys for $data (array passed to return_to_gixaw function).</em></strong></p>
<p><strong><em><span style="text-decoration: underline;">Required keys:</span></em></strong></p>
<p><strong>external_id</strong> - this is the integer or string used to uniquely identify this user, usually it would be the &#8220;id&#8221; field in your database table.<br />
<strong>display_name</strong> - display name (or nick name) for this user<br />
<strong>group_name</strong> - group name for this user, if your database does not store group names then it is advised to use Administrator for admin user, Moderator for the selected few and Member for the rest.</p>
<p><strong><em><span style="text-decoration: underline;">Optional keys:</span></em></strong></p>
<p><strong>profile_full_name</strong> - full name<br />
<strong>profile_email_address</strong> - email address<br />
<strong>profile_dob</strong> - date of birth<br />
<strong>profile_gender</strong> - gender<br />
<strong>profile_home_phone</strong> - home phone<br />
<strong>profile_work_phone</strong> - work phone </p></blockquote>
<li>Upload it to anywhere on your web site where your application exists (e.g <strong><em>http://www.yourdomain.com/gixawremote_custom.php</em></strong>)</li>
<li>Log into the admin area of Gixaw Chat and open <strong><em>Membership &gt; Integrations</em></strong>.</li>
<li>Click <strong><em>Enable Integrations</em></strong> (if not enabled already).</li>
<li>Add a new integration in the admin area and fill in the following details:
<ol>
<li>Integration Name as anything you wish to.</li>
<li>Integration URL as <em>http://www.yourdomain.com/gixawremote_custom.php</em></li>
<li>Integration Logout URL as <em>http://www.yourdomain.com/</em></li>
<li>Leave Integration Secret Key as it is.</li>
<li>Integration Charset same as your charset of your site. If you’re not sure what it is, leave this blank.</li>
</ol>
</li>
<li>Once created, click the <strong><em>Download</em></strong> link against the integration (in admin area) to download <em>gixawremote.php</em> file.</li>
<li>Upload <em>gixawremote.php</em> to the same directory where you uploaded <em>gixawremote_custom.php</em>.</li>
<li>In the Gixaw Chat admin area, click <strong><em>Make Default</em></strong> link against this integration.<br />
 </li>
</ol>
<p>Your integration is activated! Your members will automatically be logged into the chat now.</p>
<p>We also provide integration services to our customers. For any custom integrations, <a href="http://www.gixaw.com/contact">contact us</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-with-your-custom-database/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Web Server Requirements</title>
		<link>http://support.gixaw.com/web-server-requirements/</link>
		<comments>http://support.gixaw.com/web-server-requirements/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 16:28:26 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Installation]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[system requirements]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=128</guid>
		<description><![CDATA[Gixaw Chat Software Edition is simple to install (we offer an installation service if needed) and very easy to configure. It requires the following:


Operating System: Linux, Unix, or Windows
Scripting Language: PHP 5.2.x
Database: MySQL 4+ or SQLite
PHP PDO extension with MySQL or SQLite support
IonCube Loaders (more info)

If you&#8217;re unsure whether your server meets these requirements, simply download [...]]]></description>
			<content:encoded><![CDATA[<p><em>Gixaw Chat Software Edition</em> is simple to install (we offer an installation service if needed) and very easy to configure. It requires the following:</p>
<div class="innerContent">
<ol>
<li>Operating System: Linux, Unix, or Windows</li>
<li>Scripting Language: PHP 5.2.x</li>
<li>Database: MySQL 4+ or SQLite</li>
<li>PHP PDO extension with MySQL or SQLite support</li>
<li>IonCube Loaders (<a href="http://www.ioncube.com/loader_installation.php" target="_blank"><span style="color: #196297;">more info</span></a>)</li>
</ol>
<p>If you&#8217;re unsure whether your server meets these requirements, simply download <a href="http://downloads.gixaw.com/chat/gixaw_chat_check.zip"><em><span style="color: #196297;">gixaw_chat_check.zip</span></em></a><em> (1.6 kb) </em>and follow the instructions.</div>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/web-server-requirements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating With vBulletin</title>
		<link>http://support.gixaw.com/integrating-with-vbulletin/</link>
		<comments>http://support.gixaw.com/integrating-with-vbulletin/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 13:54:01 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[integrate]]></category>

		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=108</guid>
		<description><![CDATA[
Gixaw Chat can be seamlessly integrated with your vBulletin user database. Please follow the instructions below:

Download the vBulletin integration package.
Upload gixawremote_vb.php to your vBulletin forums directory.
Log into the admin area of Gixaw Chat and open Membership &#62; Integrations.
Click Enable Integrations (if not enabled already).
Add a new integration in the admin area and fill in the following details:

Integration [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p>Gixaw Chat can be seamlessly integrated with your vBulletin user database. Please follow the instructions below:</p>
<ol>
<li>Download the <a href="http://downloads.gixaw.com/chat/integrations/vbulletin.zip"><span style="color: #196297;">vBulletin<span style="color: #196297;"> integration package</span></span></a>.</li>
<li>Upload <strong><em>gixawremote_vb.php</em></strong> to your vBulletin forums directory.</li>
<li>Log into the admin area of Gixaw Chat and open <strong><em>Membership &gt; Integrations</em></strong>.</li>
<li>Click <strong><em>Enable Integrations</em></strong> (if not enabled already).</li>
<li>Add a new integration in the admin area and fill in the following details:
<ol>
<li>Integration Name as anything you wish to.</li>
<li>Integration URL as <em>http://www.yourdomain.com/forums/gixawremote_vb.php</em></li>
<li>Integration Logout URL as <em>http://www.yourdomain.com/forums/</em></li>
<li>Leave Integration Secret Key as it is.</li>
<li>Integration Charset same as your charset of vBulletin site. If you’re not sure what it is, leave this blank.</li>
</ol>
</li>
<li>Once created, click the <strong><em>Download</em></strong> link against the integration (in admin area) to download <em>gixawremote.php</em> file.</li>
<li>Upload <em>gixawremote.php</em> to <strong><em>/forums</em></strong> vBulletin directory.</li>
<li>In the Gixaw Chat admin area, click <strong><em>Make Default</em></strong> link against this integration.<br />
 </li>
</ol>
<p>Your integration is activated! Your vBulletin members will automatically be logged into the chat now.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-with-vbulletin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating With phpBB 3</title>
		<link>http://support.gixaw.com/integrating-with-phpbb-3/</link>
		<comments>http://support.gixaw.com/integrating-with-phpbb-3/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 13:48:22 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[integrate]]></category>

		<category><![CDATA[phpbb]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=102</guid>
		<description><![CDATA[
Gixaw Chat can be seamlessly integrated with your phpBB 3 user database. Please follow the instructions below:

Download the phpBB3 integration package.
Upload gixawremote_phpbb3.php to your phpbb3 forums directory.
Log into the admin area of Gixaw Chat and open Membership &#62; Integrations.
Click Enable Integrations (if not enabled already).
Add a new integration in the admin area and fill in the [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p>Gixaw Chat can be seamlessly integrated with your phpBB 3 user database. Please follow the instructions below:</p>
<ol>
<li>Download the <a href="http://downloads.gixaw.com/chat/integrations/phpbb3.zip">phpBB3<span style="color: #196297;"> integration package</span></a>.</li>
<li>Upload <strong><em>gixawremote_phpbb3.php</em></strong> to your phpbb3 forums directory.</li>
<li>Log into the admin area of Gixaw Chat and open <strong><em>Membership &gt; Integrations</em></strong>.</li>
<li>Click <strong><em>Enable Integrations</em></strong> (if not enabled already).</li>
<li>Add a new integration in the admin area and fill in the following details:
<ol>
<li>Integration Name as anything you wish to.</li>
<li>Integration URL as <em>http://www.yourdomain.com/forums/gixawremote_phpbb3.php</em></li>
<li>Integration Logout URL as <em>http://www.yourdomain.com/forums/</em></li>
<li>Leave Integration Secret Key as it is.</li>
<li>Integration Charset same as your charset of phpBB3 site. If you’re not sure what it is, leave this blank.</li>
</ol>
</li>
<li>Once created, click the <strong><em>Download</em></strong> link against the integration (in admin area) to download <em>gixawremote.php</em> file.</li>
<li>Upload <em>gixawremote.php</em> to <strong><em>/forums</em></strong> phpBB3 directory.</li>
<li>In the Gixaw Chat admin area, click <strong><em>Make Default</em></strong> link against this integration.<br />
 </li>
</ol>
<p>Your integration is activated! Your phpBB 3 members will automatically be logged into the chat now.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-with-phpbb-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating With Invision Power Board</title>
		<link>http://support.gixaw.com/integrating-with-invision-power-board/</link>
		<comments>http://support.gixaw.com/integrating-with-invision-power-board/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 13:36:53 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[integrate]]></category>

		<category><![CDATA[invision power board]]></category>

		<category><![CDATA[ipb]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=86</guid>
		<description><![CDATA[
Gixaw Chat can be seamlessly integrated with your Invision Power Board user database. Please follow the instructions below:

Download the IPB integration package.
Upload gixawremote_ipb.php to your invision power board directory.
Log into the admin area of Gixaw Chat and open Membership &#62; Integrations.
Click Enable Integrations (if not enabled already).
Add a new integration in the admin area and fill in [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p>Gixaw Chat can be seamlessly integrated with your Invision Power Board user database. Please follow the instructions below:</p>
<ol>
<li>Download the <a href="http://downloads.gixaw.com/chat/integrations/ipb.zip"><span style="color: #196297;">IPB integration package</span></a>.</li>
<li>Upload <strong><em>gixawremote_ipb.php</em></strong> to your invision power board directory.</li>
<li>Log into the admin area of Gixaw Chat and open <strong><em>Membership &gt; Integrations</em></strong>.</li>
<li>Click <strong><em>Enable Integrations</em></strong> (if not enabled already).</li>
<li>Add a new integration in the admin area and fill in the following details:
<ol>
<li>Integration Name as anything you wish to.</li>
<li>Integration URL as <em>http://www.yourdomain.com/forums/index.php?autocom=gixawremote_ipb</em></li>
<li>Integration Logout URL as <em>http://www.yourdomain.com/forums/</em></li>
<li>Leave Integration Secret Key as it is.</li>
<li>Integration Charset same as your charset of IPB site. If you’re not sure what it is, leave this blank.</li>
</ol>
</li>
<li>Once created, click the <strong><em>Download</em></strong> link against the integration (in admin area) to download <em>gixawremote.php</em> file.</li>
<li>Upload <em>gixawremote.php</em> to <strong><em>/forums/sources/components_public</em></strong> directory.</li>
<li>In the Gixaw Chat admin area, click <strong><em>Make Default</em></strong> link against this integration.<br />
 </li>
</ol>
<p>Your integration is activated! Your invision power board members will automatically be logged into the chat now.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-with-invision-power-board/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating With WordPress</title>
		<link>http://support.gixaw.com/integrating-with-wordpress/</link>
		<comments>http://support.gixaw.com/integrating-with-wordpress/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 13:24:21 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[integrate]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=76</guid>
		<description><![CDATA[Gixaw Chat can be seamlessly integrated with your WordPress user database. Please follow the instructions below:
This guide assumes that your wordpress blog is installed at http://blog.yourdomain.com/. In any other case, please change this address to the URL where your wordpress is installed.

Download the wordpress integration package.
Upload gixawremote_wordpress.php to your wordpress directory. It should be accessible [...]]]></description>
			<content:encoded><![CDATA[<p>Gixaw Chat can be seamlessly integrated with your WordPress user database. Please follow the instructions below:</p>
<p><span style="color: #ff0000;"><strong>This guide assumes that your wordpress blog is installed at </strong><strong>http://blog.yourdomain.com/</strong><strong>. </strong><span style="color: #000000;">In any other case, please change this address to the URL where your wordpress is installed.</span></span></p>
<ol>
<li>Download the <a href="http://downloads.gixaw.com/chat/integrations/wordpress.zip">wordpress integration package</a>.</li>
<li>Upload <strong><em>gixawremote_wordpress.php</em></strong> to your wordpress directory. It should be accessible at http://blog.yourdomain.com/gixawremote_wordpress.php.</li>
<li>Log into the admin area of Gixaw Chat and open <strong><em>Membership &gt; Integrations</em></strong>.</li>
<li>Click <strong><em>Enable Integrations</em></strong> (if not enabled already).</li>
<li>Add a new integration in the admin area and fill in the following details:
<ol>
<li>Integration Name as anything you wish to.</li>
<li>Integration URL as <em>http://blog.yourdomain.com/gixawremote_wordpress.php</em></li>
<li>Integration Logout URL as <em>http://blog.yourdomain.com/</em></li>
<li>Leave Integration Secret Key as it is.</li>
<li>Integration Charset same as your charset of wordpress site. If you’re not sure what it is, leave this blank.</li>
</ol>
</li>
<li>Once created, click the <strong><em>Download</em></strong> link against the integration (in admin area) to download <em>gixawremote.php</em> file.</li>
<li>Upload <em>gixawremote.php</em> to your wordpress directory. It should be accessible at http://blog.yourdomain.com/gixawremote.php.</li>
<li>In the Gixaw Chat admin area, click <strong><em>Make Default</em></strong> link against this integration.<br />
 </li>
</ol>
<p>Your integration is activated! Your wordpress members will automatically be logged into the chat now.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-with-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating With Joomla</title>
		<link>http://support.gixaw.com/integrating-with-joomla/</link>
		<comments>http://support.gixaw.com/integrating-with-joomla/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 12:51:47 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[integrate]]></category>

		<category><![CDATA[joomla]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=65</guid>
		<description><![CDATA[Gixaw Chat can be seamlessly integrated with your Joomla user database. Please follow the instructions below:

Download the joomla integration package.
Upload com_gixawremote_joomla folder to the &#8220;components&#8221; directory of your joomla.
Log into the admin area of Gixaw Chat and open Membership &#62; Integrations.
Click Enable Integrations (if not enabled already).
Add a new integration in the admin area and fill in [...]]]></description>
			<content:encoded><![CDATA[<p>Gixaw Chat can be seamlessly integrated with your Joomla user database. Please follow the instructions below:</p>
<ol>
<li>Download the <a href="http://downloads.gixaw.com/chat/integrations/joomla.zip">joomla integration package</a>.</li>
<li>Upload <strong><em>com_gixawremote_joomla</em></strong> folder to the &#8220;components&#8221; directory of your joomla.</li>
<li>Log into the admin area of Gixaw Chat and open <strong><em>Membership &gt; Integrations</em></strong>.</li>
<li>Click <strong><em>Enable Integrations</em></strong> (if not enabled already).</li>
<li>Add a new integration in the admin area and fill in the following details:
<ol>
<li>Integration Name as anything you wish to.</li>
<li>Integration URL as <em>http://www.yourdomain.com/index.php?option=com_gixawremote_joomla</em></li>
<li>Integration Logout URL as <em>http://www.yourdomain.com/index.php</em></li>
<li>Leave Integration Secret Key as it is.</li>
<li>Integration Charset same as your charset of joomla site. If you&#8217;re not sure what it is, leave this blank.</li>
</ol>
</li>
<li>Once created, click the <strong><em>Download</em></strong> link against the integration (in admin area) to download <em>gixawremote.php</em> file.</li>
<li>Upload gixawremote.php to /components/com_gixawremote_joomla directory of your joomla.</li>
<li>In the Gixaw Chat admin area, click <strong><em>Make Default</em></strong> link against this integration.</li>
</ol>
<p> </p>
<p>Your integration is activated! Your joomla members will automatically be logged into the chat now.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-with-joomla/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrating Gixaw Chat</title>
		<link>http://support.gixaw.com/integrating-gixaw-chat/</link>
		<comments>http://support.gixaw.com/integrating-gixaw-chat/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 11:06:02 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Integration]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[integrate]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=58</guid>
		<description><![CDATA[Gixaw Chat can easily be integrated with your website&#8217;s existing membership database, enabling users to chat with the same screen name. If your members are already logged into your main website, they do not need to log in again.
Integration is supported with any third-party application, whether it is a popular CMS/bulletin board or a custom [...]]]></description>
			<content:encoded><![CDATA[<p>Gixaw Chat can easily be integrated with your website&#8217;s existing membership database, enabling users to chat with the same screen name. If your members are already logged into your main website, they do not need to log in again.</p>
<p>Integration is supported with <strong><em>any third-party application</em></strong>, whether it is a popular CMS/bulletin board or a custom application. The profile information and user access level of members is also integrated. You may even integrate the chat if your membership database and Gixaw Chat are hosted on remote servers.</p>
<p>Integration is not only supported with software edition but also works great with hosted edition.</p>
<p>Please select the application you wish to integrate with:</p>
<ol>
<li><a href="http://support.gixaw.com/gixaw-chat/integrating-with-joomla/">Joomla</a></li>
<li><a href="http://support.gixaw.com/gixaw-chat/integrating-with-wordpress/">WordPress</a></li>
<li><a href="http://support.gixaw.com/gixaw-chat/integrating-with-vbulletin/">vBulletin</a></li>
<li><a href="http://support.gixaw.com/gixaw-chat/integrating-with-phpbb-3/">phpBB 3</a></li>
<li><a href="http://support.gixaw.com/gixaw-chat/integrating-with-invision-power-board/">Invision Power Board</a></li>
</ol>
<p> </p>
<p> If you wish to integrate with any other application, please <a href="http://www.gixaw.com/contact">contact us</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/integrating-gixaw-chat/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Upgrading From Version 1.0</title>
		<link>http://support.gixaw.com/upgrading-from-old-version/</link>
		<comments>http://support.gixaw.com/upgrading-from-old-version/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 10:36:11 +0000</pubDate>
		<dc:creator>Gixaw Support</dc:creator>
		
		<category><![CDATA[Gixaw Chat]]></category>

		<category><![CDATA[Installation]]></category>

		<category><![CDATA[Upgrading]]></category>

		<category><![CDATA[chat]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://support.gixaw.com/?p=41</guid>
		<description><![CDATA[This installation guide will take you through the upgrade process from version 1.0 to version 2.0. If you wish to make a new installation, please follow the new installation instructions.
The following installation procedure assumes that the URL of the software will be www.example.com/chat
Before you upgrade&#8230;
Please make sure your web server meets the system requirements.
Pre-requisites


The “upload” folder in the gixaw [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><em>This installation guide will take you through the <strong>upgrade </strong>process from version 1.0 to version 2.0. If you wish to make a new installation, please follow the <a href="http://support.gixaw.com/gixaw-chat/installing-gixaw-chat/">new installation instructions</a>.</em></p>
<p style="text-align: left;">The following installation procedure assumes that the URL of the software will be <strong><em>www.example.com/chat</em></strong></p>
<h3 style="text-align: left;">Before you upgrade&#8230;</h3>
<p style="text-align: left;">Please make sure your web server meets the <a href="http://support.gixaw.com/gixaw-chat/web-server-requirements/">system requirements</a>.</p>
<h3 style="text-align: left;">Pre-requisites</h3>
<ol>
<li>
<p style="text-align: left;">The “upload” folder in the gixaw chat zip file contains all the files that you need to upload to your web server in order to upgrade from version 1.0 to version 2.0.</p>
<p style="text-align: left;">ALL the files and folders in the “upload” folder should be uploaded to your existing directory containing Gixaw Power Chat version 1.0 files. So e.g. if your current directory is located such as:<br />
/wwwroot/chat/<br />
/wwwroot/chat/index.php<br />
/wwwroot/chat/templates<br />
/wwwroot/chat/……….. etc,</p>
<p>You should upload the files and folders in the Gixaw Chat 2.0 “upload” folder at<br />
/wwwroot/chat/*.*</p>
<p>No files/folders will be over-written except index.php file. You should let the new index.php file replace the old one.</li>
<li>You can obtain your version 2.0 license file the following way:
<ol>
<li>
<div style="text-align: left;">Log into the <a href="http://billing.gixaw.com/"><span style="color: #196297;">client area</span></a> with your account.</div>
</li>
<li>
<div style="text-align: left;">All the licenses files for your orders will be displayed on the home page. Download the one you’re looking for.</div>
</li>
<li>
<div style="text-align: left;">Upload the license file in <strong>/data/licenses</strong> folder of the chat.</div>
</li>
</ol>
</li>
</ol>
<p style="text-align: left;"> </p>
<h3 style="text-align: left;">Upgradation</h3>
<ol>
<li>
<div style="text-align: left;">Make sure the following file permissions are met:</div>
</li>
<li>
<table style="border: 1px solid #CCC;" border="0" cellpadding="5" width="400">
<tbody>
<tr>
<td style="background-color: #eee; padding: 5px;" width="133"><strong>Path</strong></td>
<td style="background-color: #eee; padding: 5px;" width="133"><strong>Type</strong></td>
<td style="background-color: #eee; padding: 5px;" width="133"><strong>Permission</strong></td>
</tr>
<tr>
<td>/chat/data</td>
<td>Directory</td>
<td>0777</td>
</tr>
<tr>
<td>/chat/data/assets</td>
<td>Directory</td>
<td>0777</td>
</tr>
<tr>
<td>/chat/data/db</td>
<td>Directory</td>
<td>0777</td>
</tr>
<tr>
<td>/chat/data/uploads</td>
<td>Directory</td>
<td>0777</td>
</tr>
<tr>
<td>/chat/data/licenses</td>
<td>Directory</td>
<td>0777</td>
</tr>
</tbody>
</table>
</li>
<li>Once the permissions are set, point your browser to <em>http://www.example.com/chat/install/index.php</em></li>
<li>The installer will guide you through the rest of the process. If you are using MySQL as your database engine, please make sure you have the MySQL hostname, username, password and database name.</li>
</ol>
<p> </p>
<p>If you encounter any error, please feel free to <a href="http://www.gixaw.com/contact">contact us</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.gixaw.com/upgrading-from-old-version/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
