If you had made a "manual installation", here is the block of code that you had added:
1. into your "index.php" file of your used template
2. and placed just before the </head>
tag
But, if you had made an "automatic installation", none code is added: you had installed a specific module named "mod_freichatx-i.zip" into your CMS.
Sample of Block of Code:
================
<!--==========================FreiChatX====VERSIONS====5.X====START========================-->
<!-- For uninstalling ME , first remove/comment all FreiChatX related code i.e below code
Then remove FreiChatX tables frei_session & frei_chat if necessary
The best/recommended way is using the module for installation -->
<?php $session = JSession::getInstance("none",array());
$host = JURI::root();
$ses=$session->getId();
if(!function_exists("freichatx_get_hash")){
function freichatx_get_hash($ses){
if(is_file("/home/claude/joomla6/freichat/arg.php")){
require "/home/claude/joomla6/freichat/arg.php";
$temp_id = $ses . $uid;
return md5($temp_id);
}
else
{
echo "<script>alert('module freichatx says: arg.php file not
found!');</script>";
}
return 0;
}
}
?>
<script type="text/javascript" language="javascipt" src="<?php%20echo%20%24host;%20?>freichat/client/main.php?id=<?php%20echo%20%24ses;?>&xhash=<?php%20echo%20freichatx_get_hash(%24ses);%20?>">
</script><link rel="stylesheet" href="<?php%20echo%20%24host;%20?>freichat/client/jquery/freichat_themes/freichatcss.php" type="text/css"><!-- NOTE:: The copypaste code differs from 4.X to 5.X and may differ for further versions--><!-- So to be at a safer side always replace the entire FreiChatX code during installation-->
If you had made a "manual installation", here is the block of code that you had added:
&lt;strong&gt;
1. into your "index.php" file of your used template
2. and placed just before the &lt;code&gt; &lt;/head&gt; &lt;/code&gt; tag
&lt;/strong&gt;
But, if you had made an "automatic installation", none code is added: you had installed a specific module named "mod_freichatx-i.zip" into your CMS.
Sample of Block of Code:
================
&lt;code&gt;
&lt;!--==========================FreiChatX====VERSIONS====5.X====START========================--&gt;
&lt;!-- For uninstalling ME , first remove/comment all FreiChatX related code i.e below code
Then remove FreiChatX tables frei_session & frei_chat if necessary
The best/recommended way is using the module for installation --&gt;
&lt;?php
$session = JSession::getInstance("none",array());
$host = JURI::root();
$ses=$session-&gt;getId();
if(!function_exists("freichatx_get_hash")){
function freichatx_get_hash($ses){
if(is_file("/home/claude/joomla6/freichat/arg.php")){
require "/home/claude/joomla6/freichat/arg.php";
$temp_id = $ses . $uid;
return md5($temp_id);
}
else
{
echo "&lt;script&gt;alert('module freichatx says: arg.php file not
found!');&lt;/script&gt;";
}
return 0;
}
}
?&gt;
&lt;script type="text/javascript" language="javascipt"
src="&lt;?php echo $host; ?&gt;freichat/client/main.php?id=&lt;?php echo $ses;?&gt;&xhash=&lt;?php echo freichatx_get_hash($ses); ?&gt;"&gt;
&lt;/script&gt; &lt;link rel="stylesheet" href="&lt;?php echo $host; ?&gt;freichat/client/jquery/freichat_themes/freichatcss.php" type="text/css"&gt;
&lt;!-- NOTE:: The copypaste code differs from 4.X to 5.X and may differ for further versions--&gt;
&lt;!-- So to be at a safer side always replace the entire FreiChatX code during installation--&gt;
&lt;/code&gt;