PHP Web Host - Quality Web Hosting For All PHP Applications Just Great Software
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Author Message
daverupe
New Member
New Member


Joined: Dec 30, 2005
Posts: 24

PostPosted: Fri Sep 17, 2010 9:42 am Reply with quote Back to top

I tried to register at
Only registered users can see links on this board!
Get registered or login to the forums!
to get resolution, but never got a confirmation email. So I figured I'd look for assistance here.

I have implemented TrickedOut Slider successfully. I worked fine until I applied the fix for Gallery 2 in the forum here
Only registered users can see links on this board!
Get registered or login to the forums!


The problem is that the original header.php from the RN 2.4 distro works fine, the modified header.php from the above foum link does not. TrickedOut slider doesn't slide. It lists all content vertically.

Any assistance would be GREATLY appreciated!
View user's profile Send private message
nuken
RavenNuke(tm) Development Team


Joined: Mar 11, 2007
Posts: 1536
Location: North Carolina

PostPosted: Fri Sep 17, 2010 9:58 am Reply with quote Back to top

Hi Dave, I activated you account at Tricked Out News. It may have gotten sent to your junk mail folder. I think the changes for Gallery 2 were already implemented in the RavenNuke 2.4 release. The post you mentioned was for RavenNuke 2.3 which did not have the ability to load js and css dynamically. This is required for the slider to work.
View user's profile Send private message Send e-mail Visit poster's website
daverupe
New Member
New Member


Joined: Dec 30, 2005
Posts: 24

PostPosted: Fri Sep 17, 2010 10:02 am Reply with quote Back to top

It didn't appear to be fixed in 2.4. The Gallery 2 color pack didn't display in Gallery 2 until I applied the fix in the above mentioned forum. When I did that TrickedOut Slider didn't work. I got the new user account just before this reply, should I take this discussion to your site?
View user's profile Send private message
nuken
RavenNuke(tm) Development Team


Joined: Mar 11, 2007
Posts: 1536
Location: North Carolina

PostPosted: Fri Sep 17, 2010 10:04 am Reply with quote Back to top

No, I will help you here. Give me a couple of minutes and I will get you a revised header.php for 2.4
View user's profile Send private message Send e-mail Visit poster's website
nuken
RavenNuke(tm) Development Team


Joined: Mar 11, 2007
Posts: 1536
Location: North Carolina

PostPosted: Fri Sep 17, 2010 10:12 am Reply with quote Back to top

Try this header.php

Code:
<?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.       */
/************************************************************************/
/************************************************************************/
/* Additional code clean-up, performance enhancements, and W3C and      */
/* XHTML compliance fixes by Raven and Montego.                         */
/************************************************************************/
if (stristr(htmlentities($_SERVER['PHP_SELF']) , 'header.php')) {
    Header('Location: index.php');
    die();
}
if (!defined('NUKE_HEADER')) define('NUKE_HEADER', true);
require_once 'mainfile.php';
//GT-NExtGEn 0.4/0.5 by Bill Murrin (Audioslaved) http://gt.audioslaved.com (c) 2004
//Modified by montego from http://montegoscripts.com for TegoNuke(tm) ShortLinks
global $tnsl_bUseShortLinks, $tnsl_bAutoTapBlocks, $tnsl_bAutoTapLinks, $tnsl_bDebugShortLinks, $tnsl_sGTFilePath;
if (defined('TNSL_USE_SHORTLINKS')) {
    $GLOBALS['tnsl_asGTFilePath'] = tnsl_fPageTapStart();
}
/*
 * 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, $name, $db, $prefix, $nukeNAV;
    // Initialize CSS and JS arrays
    $headCSS = array();
    // Post 138905 Step 3
    addCSSToHead(INCLUDE_PATH . 'themes/ravennuke.css', 'file');
    $headJS  = array();  // added inside HEAD tags
    $bodyJS  = array(); // added at bottom of page, before </BODY>
    $ThemeSel = get_theme();
    // Post 138905 Step 1
    include_once INCLUDE_PATH . 'themes/' . $ThemeSel . '/theme.php';
    // Tolerant baseURL Hack - VinDSL (Lenon.com)
    $base_url = $_SERVER['HTTP_HOST'];
//    include_once 'includes/meta.php';
    // nukeSEO Dynamic HEAD - load HTML, HEAD tags
    include_once INCLUDE_PATH . 'includes/nukeSEO/nukeSEOdh.php';
    // Post 138905 Step 2
    //Added for Gallery2 integration
     if (defined('G2HEADER_CSS_JS')) {
         echo "\n". G2HEADER_CSS_JS;
   }
    if (defined('THEME_FAVICON'))
        echo '<link rel="shortcut icon" href="' , INCLUDE_PATH , 'themes/', $ThemeSel, '/images/favicon.ico" type="image/x-icon" />', "\n";
    else if (file_exists(INCLUDE_PATH . 'themes/' . $ThemeSel . '/images/favicon.ico')) {
        echo '<link rel="shortcut icon" href="' , INCLUDE_PATH , 'themes/', $ThemeSel, '/images/favicon.ico" type="image/x-icon" />', "\n";
    }
    // Post 138905 Step 4
    addCSSToHead(INCLUDE_PATH . 'themes/' . $ThemeSel . '/style/style.css','file');

    //
    // Support custom CSS on a per-module basis (RN0000391)
    // Module authors need to define RN_MODULE_CSS to name the external style sheet they want to load
    // and we will add a link to their stylesheet file automatically.
    // KG: The only example of using module-specific, theme CSS is Forums - do any themes actually use this?
    if (defined('RN_MODULE_CSS')) {
        $modCssFile = 'themes/' . $ThemeSel . '/style/' . RN_MODULE_CSS;
        if (file_exists($modCssFile)) {
            addCSSToHead($modCssFile, 'file');
        }
    }
    // Post 138905 Step 5
    include_once INCLUDE_PATH . 'includes/javascript.php';
    // Post 138905 Step 6
    include_once INCLUDE_PATH . 'includes/jquery/jquery.php';
    include_once INCLUDE_PATH . 'includes/jquery/jquery.colorbox.php';
    include_once INCLUDE_PATH . 'includes/tabcontent/tabcontent.php';
    include_once INCLUDE_PATH . 'includes/ajaxtabs/ajaxtabs.php';
    include_once INCLUDE_PATH . 'includes/custom_files/nukeSEO/nukePIEhdr.php';
    include_once INCLUDE_PATH . 'includes/custom_files/nukeSEO/nukeFEEDhdr.php';
    // nukeNAV(tm)
    include_once INCLUDE_PATH . 'includes/jquery/nukeNAV.php';
    // Post 138905 Step 7
    $addons = readDIRtoArray(INCLUDE_PATH . 'includes/addons', '/^head\-(.+)\.php/');
    foreach ($addons as $addon) {
        include_once INCLUDE_PATH . 'includes/addons/'.$addon;
    }
    $addons = readDIRtoArray(INCLUDE_PATH . 'includes/addons', '/^body\-(.+)\.php/');
    foreach ($addons as $addon) {
        include_once INCLUDE_PATH . 'includes/addons/'.$addon;
    }
    // Post 138905 Step 8 - RN_MODULE_HEAD should contain the file to include, with a path relative to the module folder
    if (defined('RN_MODULE_HEAD')) include_once 'modules/' . $name . '/' . RN_MODULE_HEAD;
    writeHEAD();
    // Post 138905 Step 9
    if (file_exists(INCLUDE_PATH . 'includes/custom_files/custom_head.php')) {
        include_once INCLUDE_PATH . 'includes/custom_files/custom_head.php';
    }
    echo "\n\n", '</head>', "\n";
    if (file_exists(INCLUDE_PATH . 'includes/custom_files/custom_header.php')) {
        include_once INCLUDE_PATH . 'includes/custom_files/custom_header.php';
    }
    global $ab_config;
    if ($ab_config['site_switch'] == 1 && isset($_COOKIE['admin']) && is_admin($_COOKIE['admin'])) {
        echo '<center><img src="images/nukesentinel/disabled.png" alt="' . _AB_SITEDISABLED . '" title="' . _AB_SITEDISABLED . '" border="0" /></center><br />';
    }
    if ($ab_config['disable_switch'] == 1 && isset($_COOKIE['admin']) && is_admin($_COOKIE['admin'])) {
        echo '<center><img src="images/nukesentinel/inactive.png" alt="' . _AB_NSDISABLED . '" title="' . _AB_NSDISABLED . '" border="0" /></center><br />';
    }
    if ($ab_config['test_switch'] == 1 && isset($_COOKIE['admin']) && is_admin($_COOKIE['admin'])) {
        echo '<center><img src="images/nukesentinel/testmode.png" alt="' . _AB_TESTMODE . '" title="' . _AB_TESTMODE . '" border="0" /></center><br />';
    }
    themeheader();
}
online();
head();
include_once INCLUDE_PATH . 'includes/counter.php';
if (defined('HOME_FILE')) {
   
    blocks('Center');
    message_box();
}
?>
View user's profile Send private message Send e-mail Visit poster's website
daverupe
New Member
New Member


Joined: Dec 30, 2005
Posts: 24

PostPosted: Fri Sep 17, 2010 10:25 am Reply with quote Back to top

That did the trick! Thanks for the assist!
View user's profile Send private message
nuken
RavenNuke(tm) Development Team


Joined: Mar 11, 2007
Posts: 1536
Location: North Carolina

PostPosted: Fri Sep 17, 2010 11:30 am Reply with quote Back to top

Glad it worked for you. RavensScripts
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:       
Post new topic   Reply to topic

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2011 by Raven

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::
:: fisubice Theme Modified by the RavenNuke™ Team ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum