Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Installation Help
Author Message
izone
Involved
Involved



Joined: Sep 07, 2004
Posts: 354
Location: Sweden

PostPosted: Wed Apr 13, 2005 7:05 am Reply with quote

I am running phpnuke 7.5 with phpbb 2.0.10

I wonder where could I finde upgrade files for BB to upgrade to 2.0.13?

thanks for helping
 
View user's profile Send private message
chatserv
Member Emeritus



Joined: May 02, 2003
Posts: 1389
Location: Puerto Rico

PostPosted: Wed Apr 13, 2005 9:08 am Reply with quote

I have grouped the upgrade packs to enable you to upgrade from 2.0.10 to 2.0.13 with just one pack, get it here.
 
View user's profile Send private message Visit poster's website
CurtisH
Life Cycles Becoming CPU Cycles



Joined: Mar 15, 2004
Posts: 638
Location: West Branch, MI

PostPosted: Wed Apr 13, 2005 9:17 am Reply with quote

I need to do a manual upgrade due to all of the mods that I have. Are there directions for manually upgrading from 2.0.10 to 2.0.13

_________________
Those who dream by day are cognizant of many things which escape those who dream only by night. ~Poe 
View user's profile Send private message Visit poster's website Yahoo Messenger
chatserv







PostPosted: Wed Apr 13, 2005 9:37 am Reply with quote

[ Only registered users can see links on this board! Get registered or login! ] [ Only registered users can see links on this board! Get registered or login! ] [ Only registered users can see links on this board! Get registered or login! ]
 
CurtisH







PostPosted: Wed Apr 13, 2005 9:50 am Reply with quote

Thanks. Smile I saw that but was hoping there was a direct upgrade. *LOL*
 
izone







PostPosted: Thu Apr 14, 2005 4:45 am Reply with quote

chatserv, thank u very much for helping.

But if want to change these files by myself, because I have a few modes installed, do I have to make only these changes you mentioned here:
[ Only registered users can see links on this board! Get registered or login! ]

thank again for helping me.
 
chatserv







PostPosted: Thu Apr 14, 2005 11:16 am Reply with quote

The three links listed above are for upgrading from BBtoNuke 2.0.10 to 2.0.13 so if that's what you want to do you would need to apply all three.
 
izone







PostPosted: Fri Apr 15, 2005 3:54 am Reply with quote

Thanks again Chatserv.
 
VinDSL
Life Cycles Becoming CPU Cycles



Joined: Jul 11, 2004
Posts: 614
Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com

PostPosted: Sat Apr 16, 2005 1:57 am Reply with quote

Just upgraded my forums to 2.0.14 (thanks, as always, CS) and I noticed those pesky title bars were back again, in the forum headers. The culprit, if you will, is 'includes/page_header.php'.

It's just a cosmetic thing, but if you want to get rid of those butt ugly, redundant title bars in your forums...

In 'includes/page_header.php',

Find:
Code:
<snip>


define('HEADER_INC', TRUE);

global $name, $sitename, $is_inline_review, $prefix, $db;

$sql = "SELECT custom_title from ".$prefix."_modules where title='$name'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
if ($row[custom_title] == "") {
    $mod_name = ereg_replace("_", " ", $name);
} else {
    $mod_name = $row[custom_title];
}
if (!$is_inline_review & $mod_name != "Private Messages") {
    title("$sitename: $mod_name");
}
    OpenTable();

//
// gzip_compression
//

<snip>


Change to:
Code:
<snip>


//
// Forums Title Bar Killer (VinDSL - Lenon.com)
//

global $db;
OpenTable();

/* define('HEADER_INC', TRUE);

global $name, $sitename, $is_inline_review, $prefix, $db;

$sql = "SELECT custom_title from ".$prefix."_modules where title='$name'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
if ($row[custom_title] == "") {
    $mod_name = ereg_replace("_", " ", $name);
} else {
    $mod_name = $row[custom_title];
}
if (!$is_inline_review & $mod_name != "Private Messages") {
    title("$sitename: $mod_name");
}
    OpenTable(); */

//
// gzip_compression
//

<snip>

_________________
.:: "The further in you go, the bigger it gets!" ::.
.:: VinDSL's Lenon.com | The Disipal Site ::. 
View user's profile Send private message Visit poster's website ICQ Number
VinDSL







PostPosted: Sat Apr 16, 2005 2:13 am Reply with quote

Um... In case you don't know what I'm talking about...

Before:

Image

After:

Image
 
izone







PostPosted: Sat Apr 16, 2005 2:59 am Reply with quote

Well, thank you very much. It is much better AFTER. I give it a try.

You said bb ver. 2.0.14 is it out now?

And I saw a news about Nuke 7.7 to coming out soon. Wow it goes to fast forward!!!
 
VinDSL







PostPosted: Sat Apr 16, 2005 11:22 am Reply with quote

izone wrote:
You said bb ver. 2.0.14 is it out now? ...Wow it goes to fast forward!!!

Yep, that's life on the bleeding edge! Wink

Link: BBtoNuke 2.0.14
 
chatserv







PostPosted: Sat Apr 16, 2005 11:37 am Reply with quote

Changed it to the following:
Code:
if ( !defined('IN_PHPBB') )

{
   die("Hacking attempt");
}
define('HEADER_INC', TRUE);

global $name, $sitename, $is_inline_review, $prefix, $db;

//
// Forums Title Bar Killer (VinDSL - Lenon.com)
//

/* $sql = "SELECT custom_title from ".$prefix."_modules where title='$name'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
if ($row[custom_title] == "") {
    $mod_name = ereg_replace("_", " ", $name);
} else {
    $mod_name = $row[custom_title];
}
if (!$is_inline_review & $mod_name != "Private Messages") {
    title("$sitename: $mod_name");
} */
    OpenTable();

//
// gzip_compression
//
 
VinDSL







PostPosted: Sat Apr 16, 2005 12:08 pm Reply with quote

Yes, that's better! Less 'hackish' looking... Dance-Y
 
chatserv







PostPosted: Sat Apr 16, 2005 12:21 pm Reply with quote

And with proper credits as usual Wink
 
VinDSL







PostPosted: Sat Apr 16, 2005 2:18 pm Reply with quote

Duly noted... Thanks! Very Happy
 
Guardian2003
Site Admin



Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam

PostPosted: Sun Apr 17, 2005 9:57 am Reply with quote

VinDSL wrote:

<snip>It's just a cosmetic thing, but if you want to get rid of those butt ugly, redundant title bars in your forums...<snip>

I presume this is a male forum title bar thing? -most female butts seem just fine to me.
 
View user's profile Send private message Send e-mail
CurtisH







PostPosted: Sun Apr 17, 2005 10:33 am Reply with quote

Well spoken. *LMAO* I would have to agree.
 
Cablespider
New Member
New Member



Joined: Jul 02, 2004
Posts: 7
Location: Occupied Chicago

PostPosted: Sun Apr 17, 2005 12:45 pm Reply with quote

How do you get rid of the Nav Bar in private messages section?
 
View user's profile Send private message Visit poster's website
CurtisH







PostPosted: Sun Apr 17, 2005 1:06 pm Reply with quote

Open modules/Private_Messages/index.php

Find:
Code:
include("modules/Your_Account/navbar.php");

  OpenTable();
   nav();
 CloseTable();


Replace with:
Code:


//include("modules/Your_Account/navbar.php");
// OpenTable();
// nav();
// CloseTable();
 
Cablespider







PostPosted: Sun Apr 17, 2005 1:10 pm Reply with quote

That did it...thank you!
 
carlito
New Member
New Member



Joined: Oct 14, 2005
Posts: 1

PostPosted: Fri Oct 14, 2005 7:00 am Reply with quote

hi everybody!Smile i just followed the posted instructions on the header removal, since it bothers me as well.. everything looks fine, the header is gone, however, the forum has resized itself from original 100% to about 70% now.. how do i fix that so it would be back to the entire page with? tahnks in advance..Smile
 
View user's profile Send private message
bugsTHoR
Involved
Involved



Joined: Apr 05, 2006
Posts: 263

PostPosted: Wed Jul 12, 2006 5:23 pm Reply with quote

when i insert this thing , pardon the pun from above Smile

my whole forum disapears to im using raven nuke 7.6 all updates

_________________
LUV RAVEN DISTROBUTION BEBE

Clanthemes.com are great (free advertisements for now until i get to 20,000 posts LoL) 
View user's profile Send private message
Guardian2003







PostPosted: Thu Jul 13, 2006 4:07 am Reply with quote

Which one? there seem to be two hacks in this thread. One for removing the forum title and one for modifying the navbar.
Double check your edits, there must be something else wrong.
Have you tried it with a different theme (one with forum files and one without)?
 
bugsTHoR







PostPosted: Sat Jul 15, 2006 9:14 pm Reply with quote

Oh the title bar from vinDSL

[EDITED] FOUND IT , i had this RavenNuke 7.6 updates installed

Quote:
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
define('HEADER_INC', FALSE);

global $name, $sitename, $is_inline_review, $prefix, $db;

OpenTable();


i changed the TRUE .. Statment to a .......FALSE as you can see above

WORKED A TREAT WOOT WOOT

its right at the top of the /includes/page_header.php File hope this helps some guys
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> Installation Help

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
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©