The issuse I am having is installing Freichat on elgg 1.8
I get to the box that says add the following lines in your
Add the following lines in your
head.php in views/default/page/elements/in the header(before
tag)
then this code
<!--===========================FreiChatX=======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 if(isset($_SESSION["guid"])==true) {$ses=$_SESSION["guid"]; } else {$ses=0;}
if(!function_exists("freichatx_get_hash")){
function freichatx_get_hash($ses){
if(is_file("/home/mrcoffee/public_html/mod/chat/vendors/freichat/hardcode.php")){
require "/home/mrcoffee/public_html/mod/chat/vendors/freichat/hardcode.php";
$temp_id = $ses . $uid;
return md5($temp_id);
}
else
{
echo "<script>alert('module freichatx says: hardcode.php file not
found!');";
}
return 0;
}
}
?> <script type="text/javascript" language="javascipt" src="http://planofaction.info/mod/chat/vendors/freichat/client/main.php?id=<?php%20echo%20%24ses;?>&xhash=<?php%20echo%20freichatx_get_hash(%24ses);%20?>"></script><link rel="stylesheet" href="http://planofaction.info/mod/chat/vendors/freichat/client/jquery/freichat_themes/freichatcss.php" type="text/css">
<!--===========================FreiChatX=======END=========================-->
Problem is, I dont see a Head tag.
in
/home/mrcoffee/public_html/views/default/page/elements/head.php
I see
<?php /**
* The standard HTML head
*
* @uses $vars['title'] The page title
*/
// Set title
if (empty($vars['title'])) {
$title = elgg_get_config('sitename');
} else {
$title = elgg_get_config('sitename') . ": " . $vars['title'];
}
global $autofeed;
if (isset($autofeed) && $autofeed == true) {
$url = full_url();
if (substr_count($url,'?')) {
$url .= "&view=rss";
} else {
$url .= "?view=rss";
}
$url = elgg_format_url($url);
$feedref = <<<END
<link rel="alternate" type="application/rss+xml" title="RSS" href="{$url}" />
END;
} else {
$feedref = "";
}
$js = elgg_get_loaded_js('head');
$css = elgg_get_loaded_css();
$version = get_version();
$release = get_version(true);
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="ElggRelease" content="<?php echo $release; ?>">
<meta name="ElggVersion" content="<?php echo $version; ?>">
<title><?php echo $title; ?></title>
<?php echo elgg_view('page/elements/shortcut_icon', $vars); ?><?php foreach ($css as $link) { ?><link rel="stylesheet" href="<?php%20echo%20%24link;%20?>" type="text/css">
<?php } ?><?php $ie_url = elgg_get_simplecache_url('css', 'ie');
$ie7_url = elgg_get_simplecache_url('css', 'ie7');
$ie6_url = elgg_get_simplecache_url('css', 'ie6');
?><!--[if gt IE 7]>
<link rel="stylesheet" type="text/css" href="<?php echo $ie_url; ?>" />
<![endif]--><!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="<?php echo $ie7_url; ?>" />
<![endif]--><!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="<?php echo $ie6_url; ?>" />
<![endif]--><?php foreach ($js as $script) { ?><script type="text/javascript" src="<?php%20echo%20%24script;%20?>"></script><?php } ?><script type="text/javascript">
// <![CDATA[
<?php echo elgg_view('js/initialize_elgg'); ?>
// ]]>
</script>