Help
General ArrowChat talk that doesn't fit any other forum.
User avatar
edgarmartinez
Free
 
Posts: 2
Joined: 18 Mar 2013, 16:46

 

by edgarmartinez 18 Mar 2013, 16:53

My English is not good and I'm actually a little annoyed with this.
The problem is that it shows the chat on my website.

This created in php nuke and no way to make it run. Here is as I placed the code in header.php and footer.php

HEADER.PHP
--------------------------------------
<link type="text/css" rel="stylesheet" media="all" href="arrowchat/external.php?type=css" charset="utf-8" />
<script type="text/javascript" src="arrowchat/includes/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="arrowchat/includes/js/jquery-ui-1.7.2.custom.min.js"></script>

<?php

/************************************************************************/
/* PHP-NUKE: Advanced Content Management System */
/* ============================================ */
/* */
/* Copyright (c) 2007 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/

if (stristr(htmlentities($_SERVER['PHP_SELF']), "header.php")) {
Header("Location: index.php");
fdie();
}

define('NUKE_HEADER', true);
require_once("mainfile.php");

##################################################
# Include some common header for HTML generation #
##################################################


function head() {
global $slogan, $sitename, $banners, $nukeurl, $Version_Num, $artpage, $topic, $hlpfile, $user, $hr, $theme, $cookie, $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $textcolor1, $textcolor2, $forumpage, $adminpage, $userpage, $pagetitle;
$ThemeSel = get_theme();
include_once("themes/$ThemeSel/theme.php");
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
echo '<html xmlns="http://www.w3.org/1999/xhtml">';
echo "<head>\n";
echo "<title>$sitename $pagetitle</title>\n";
include("includes/mias.php");
echo '<meta name="google-site-verification" content="3y3xJYDHSYUitn7cbfFfI6C2BiK_q66dtRfykpzHW5w" />';

?>



FOOTER.PHP
----------------------------------------------------------
echo "</body>\n</html>";
ob_end_flush();
die();
}

foot();

?>
<script type="text/javascript" src="arrowchat/external.php?type=djs" charset="utf-8"></script>
<script type="text/javascript" src="arrowchat/external.php?type=js" charset="utf-8"></script>
User avatar
Jason
Customer
 
Posts: 2329
Joined: 12 Dec 2009, 16:06

 

by Jason 18 Mar 2013, 17:12

You need to place it after the head tag.

Change it to look like this:

Code: Select all
echo "<head><script type="text/javascript" src="arrowchat/external.php?type=djs" charset="utf-8"></script>
<script type="text/javascript" src="arrowchat/external.php?type=js" charset="utf-8"></script><script type="text/javascript" src="arrowchat/external.php?type=djs" charset="utf-8"></script>
<script type="text/javascript" src="arrowchat/external.php?type=js" charset="utf-8"></script>\n";
User avatar
edgarmartinez
Free
 
Posts: 2
Joined: 18 Mar 2013, 16:46

 

by edgarmartinez 18 Mar 2013, 17:23

thanks! :)
User avatar
Staff Bot
ArrowChat Team
 
Posts: 8996
Joined: 07 Nov 2012, 13:41

 

by Staff Bot 16 Dec 2014, 00:26

[b]This thread has been locked because the last post is greater than six months old. There is a good chance that the information in this thread is outdated. Please open a new topic if you wish to discuss this further.[/b]