| Author |
Message |
izone Involved


Joined: Sep 07, 2004 Posts: 354 Location: Sweden
|
Posted:
Wed Apr 13, 2005 7:05 am |
|
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 |
|
|
|
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
|
Posted:
Wed Apr 13, 2005 9:08 am |
|
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 . |
|
|
|
 |
CurtisH Life Cycles Becoming CPU Cycles

Joined: Mar 15, 2004 Posts: 638 Location: West Branch, MI
|
Posted:
Wed Apr 13, 2005 9:17 am |
|
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 |
|
|
|
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
|
Posted:
Wed Apr 13, 2005 9:37 am |
|
|
|
 |
CurtisH Life Cycles Becoming CPU Cycles

Joined: Mar 15, 2004 Posts: 638 Location: West Branch, MI
|
Posted:
Wed Apr 13, 2005 9:50 am |
|
Thanks. I saw that but was hoping there was a direct upgrade. *LOL* |
|
|
|
 |
izone Involved


Joined: Sep 07, 2004 Posts: 354 Location: Sweden
|
Posted:
Thu Apr 14, 2005 4:45 am |
|
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:
thank again for helping me. |
|
|
|
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
|
Posted:
Thu Apr 14, 2005 11:16 am |
|
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 Involved


Joined: Sep 07, 2004 Posts: 354 Location: Sweden
|
Posted:
Fri Apr 15, 2005 3:54 am |
|
|
|
 |
VinDSL Life Cycles Becoming CPU Cycles

Joined: Jul 11, 2004 Posts: 617 Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com
|
Posted:
Sat Apr 16, 2005 1:57 am |
|
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>
|
|
|
|
 |
 |
VinDSL Life Cycles Becoming CPU Cycles

Joined: Jul 11, 2004 Posts: 617 Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com
|
Posted:
Sat Apr 16, 2005 2:13 am |
|
Um... In case you don't know what I'm talking about...
Before:
After:
 |
|
|
 |
 |
izone Involved


Joined: Sep 07, 2004 Posts: 354 Location: Sweden
|
Posted:
Sat Apr 16, 2005 2:59 am |
|
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 Life Cycles Becoming CPU Cycles

Joined: Jul 11, 2004 Posts: 617 Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com
|
Posted:
Sat Apr 16, 2005 11:22 am |
|
| 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!
Link: |
|
|
 |
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
|
Posted:
Sat Apr 16, 2005 11:37 am |
|
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 Life Cycles Becoming CPU Cycles

Joined: Jul 11, 2004 Posts: 617 Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com
|
Posted:
Sat Apr 16, 2005 12:08 pm |
|
Yes, that's better! Less 'hackish' looking...  |
|
|
 |
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1396 Location: Puerto Rico
|
Posted:
Sat Apr 16, 2005 12:21 pm |
|
And with proper credits as usual  |
|
|
|
 |
VinDSL Life Cycles Becoming CPU Cycles

Joined: Jul 11, 2004 Posts: 617 Location: Arizona (USA) Admin: NukeCops.com Admin: Disipal Designs Admin: Lenon.com
|
Posted:
Sat Apr 16, 2005 2:18 pm |
|
Duly noted... Thanks!  |
|
|
 |
 |
Guardian2003 Site Admin

Joined: Aug 28, 2003 Posts: 6302 Location: Vsetin, Czech Republic
|
Posted:
Sun Apr 17, 2005 9:57 am |
|
| 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. |
|
|
|
 |
CurtisH Life Cycles Becoming CPU Cycles

Joined: Mar 15, 2004 Posts: 638 Location: West Branch, MI
|
Posted:
Sun Apr 17, 2005 10:33 am |
|
Well spoken. *LMAO* I would have to agree. |
|
|
|
 |
Cablespider New Member


Joined: Jul 02, 2004 Posts: 7 Location: Occupied Chicago
|
Posted:
Sun Apr 17, 2005 12:45 pm |
|
How do you get rid of the Nav Bar in private messages section? |
|
|
|
 |
CurtisH Life Cycles Becoming CPU Cycles

Joined: Mar 15, 2004 Posts: 638 Location: West Branch, MI
|
Posted:
Sun Apr 17, 2005 1:06 pm |
|
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 New Member


Joined: Jul 02, 2004 Posts: 7 Location: Occupied Chicago
|
Posted:
Sun Apr 17, 2005 1:10 pm |
|
|
|
 |
carlito New Member


Joined: Oct 14, 2005 Posts: 1
|
Posted:
Fri Oct 14, 2005 7:00 am |
|
hi everybody! 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.. |
|
|
|
 |
bugsTHoR Involved


Joined: Apr 05, 2006 Posts: 252
|
Posted:
Wed Jul 12, 2006 5:23 pm |
|
when i insert this thing , pardon the pun from above
my whole forum disapears to im using raven nuke 7.6 all updates |
|
|
|
 |
Guardian2003 Site Admin

Joined: Aug 28, 2003 Posts: 6302 Location: Vsetin, Czech Republic
|
Posted:
Thu Jul 13, 2006 4:07 am |
|
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 Involved


Joined: Apr 05, 2006 Posts: 252
|
Posted:
Sat Jul 15, 2006 9:14 pm |
|
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 |
|
|
|
 |
|
|
|
|