Ad Help

Status
Not open for further replies.
B

brice

Guest
I was wondering if anyone here had any experience in putting the ad codes in phpnuke platinum? I tried to insert them myself without any luck. I've used search and tried the ad tut and a few other ways different people have suggested and I still havent got it to work. I tried installing the code on the top of the header.php file and the bottom. I'm thinking maybe it has something to do with the way the header php file is coded in php nuke platinum. Any help would greaty appericated. I'll post my header php file so you guys can have a look.

PHP:
<?php

/************************************************** **********************/
/* PHP-NUKE: Advanced Content Management System */
/* ============================================ */
/* */
/* Copyright (c) 2002 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. */
/************************************************** **********************/
/* PHP-Nuke Platinum: Expect to be impressed COPYRIGHT */
/* */
/* Copyright (c) 2004 - 2006 by http://www.techgfx.com */
/* Techgfx - Graeme Allan (goose@techgfx.com) */
/* */
/* Copyright (c) 2004 - 2006 by http://www.conrads-berlin.de */
/* MrFluffy - Axel Conrads (axel@conrads-berlin.de) */
/* */
/* Refer to TechGFX.com for detailed information on PHP-Nuke Platinum */
/* */
/* TechGFX: Your dreams, our imagination */
/************************************************** **********************/

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

require_once("mainfile.php");
/************************************************** ***/
/* Security - Protector System v.1.15b3 START */
/************************************************** ***/
global $admin_file;
if(!eregi("".$admin_file.".php",$_SERVER['SCRIPT_NAME'])) {
require_once("includes/blocker.php"); }
/************************************************** ***/
/* Security - Protector System v.1.15b3 END */
/************************************************** ***/

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

$header = 1;

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;
include("includes/ipban.php");
$ThemeSel = get_theme();
include("themes/$ThemeSel/theme.php");
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
echo "<html>\n";
echo "<head>\n";
echo "<title>$sitename $pagetitle</title>\n";

include("includes/meta.php");
include("includes/javascript.php");

if (file_exists("themes/$ThemeSel/images/favicon.ico")) {
echo "<link REL=\"shortcut icon\" HREF=\"themes/$ThemeSel/images/favicon.ico\" TYPE=\"image/x-icon\">\n";
}
echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"RSS\" href=\"backend.php\">\n";
echo "<LINK REL=\"StyleSheet\" HREF=\"themes/$ThemeSel/style/style.css\" TYPE=\"text/css\">\n\n\n";
if (file_exists("includes/custom_files/custom_head.php")) {
include_once("includes/custom_files/custom_head.php");
}
echo "\n\n\n</head>\n\n";
if (file_exists("includes/custom_files/custom_header.php")) {
include_once("includes/custom_files/custom_header.php");
}
themeheader();
}

online();
head();
include("includes/counter.php");

/************************************************** ***/
/* Addon - Center Blocks v.2.1.1 START */
/* Addon - Conditional Blocks v.1.1.1 START */
/************************************************** ***/
global $home;
if ($home == 1) {
message_box();
blocks(Center);
include("includes/cblocks1.php");
}
/************************************************** ***/
/* Addon - Conditional Blocks v.1.1.1 END */
/* Addon - Center Blocks v.2.1.1 END */
/************************************************** ***/

?>
PHP:
 
B

brice

Guest
Ok when I ad the ad code to the top of my header php file using the x10Advanced Text Link code I get this error.

Parse error: parse error, unexpected T_STRING in /home/blah/public_html/header.php on line 1

But when I use the
x10Corporate Full Banner code in the same place it works. Any ideas? I need the x10Advanced Text Link code to work since thats the plan I have. Would it be ok to put the banner up there until i can figure out how to get the text link to work?
 
Last edited by a moderator:
B

brice

Guest
This thread can be closed now if fixed the problem I was having with the ad code.
 
Status
Not open for further replies.
Top