| Author |
Message |
djalecc
Lieutenant


Joined: Feb 21, 2004
Posts: 180
Location: Gloucestershire
|
Posted:
Thu Aug 19, 2004 10:01 pm |
  |
Hi
Just searched thro all your posts, didn't find it...
Could you just take a quick look at your nukebb.php file and see if the hack is in there?
and then post it on here for us?
Many thanks  |
_________________ Free Dating
Courier Service Foook It! |
|
    |
 |
Gaurav
Captain


Joined: Oct 13, 2003
Posts: 317
|
Posted:
Fri Aug 20, 2004 7:39 pm |
  |
ohhhh...well i think ur post reminds me of the solution....try downloading the latest nukebb.php and replace it with your old one (don't forget to back it up) I think it should work. |
_________________
 |
|
    |
 |
OCSupertones
Lieutenant


Joined: Jan 20, 2004
Posts: 213
|
Posted:
Tue Aug 24, 2004 8:25 am |
  |
I am running 7.0
Can I just download the latest nukebb.php and replace my old one? |
_________________ Free advertising for your website, free info here.
Join Here. |
|
    |
 |
fuzioneer
Private


Joined: Nov 07, 2003
Posts: 37
|
Posted:
Tue Nov 30, 2004 12:19 am |
  |
where can i get the required files as the orientalgate download and forum links are dead ?
Also does this work with Googletap ? |
_________________ www.cheapukwebhosting.com |
|
   |
 |
SlashDot
Lieutenant


Joined: Nov 22, 2004
Posts: 160
Location: Bangladesh
|
Posted:
Tue Dec 07, 2004 6:58 am |
  |
yes where can i dw the patched nukebb.php the dw link given here is dead? please help! |
_________________ <b><a href="http://www.sddesign.biz">A EXCITING NEW LOOK FOR YOU PHPNUKE SITE FOR FREE?!</a></b>
<b><a href="http://www.clanthemes.biz">GIVE YOUR CLAN AN INEXPENSIVE MAKEOVER?</a></b> |
|
    |
 |
djalecc
Lieutenant


Joined: Feb 21, 2004
Posts: 180
Location: Gloucestershire
|
Posted:
Sat Feb 26, 2005 1:42 am |
  |
Bumping this as I'm still trying to find out how to get rid of the "Foook > Forums > Post 1123" In favour of "Foook > Fourms > Romance > {post title}"
Any one have any Ideas why my site says the "Post No" ?
Its just that now google and msn have indexed the fourms, when they are listed in the seach engines only the PostNo title is indexed, yet when you go to that page, it is displayed correctly! |
_________________ Free Dating
Courier Service Foook It! |
|
    |
 |
djalecc
Lieutenant


Joined: Feb 21, 2004
Posts: 180
Location: Gloucestershire
|
Posted:
Fri Mar 04, 2005 12:38 am |
  |
|
    |
 |
Fiona
Private


Joined: Nov 10, 2004
Posts: 48
|
Posted:
Sun Mar 19, 2006 1:59 am |
  |
This is a super fix (see below).
One adjustment would be even better: When viewing a post I get:
My Forum Title-viewtopic-My Topic
Is there any qay to get rid of the word 'viewtopic' from the middle of this?
Fi
| Imago wrote: |
open nukebb.php and
AFTER
get_lang($module_name);
ADD
| Code: |
$pagetitle = "$name";
if($p) {
$sql = "SELECT post_subject, post_id FROM ".$prefix."_bbposts_text WHERE post_id='$p'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$title = $row[post_subject];
$post = $row[post_id];
$pagetitle = "$name | Post $post | $title";
}
if($t) {
$sql = "SELECT topic_title, forum_id FROM ".$prefix."_bbtopics WHERE topic_id='$t'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$title = $row[topic_title];
$forum = $row[forum_id];
$sql = "SELECT forum_name FROM ".$prefix."_bbforums WHERE forum_id='$forum'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$forum = $row[forum_name];
$pagetitle = "| $name | $forum | $title";
}
elseif($f) {
$sql = "SELECT forum_name FROM ".$prefix."_bbforums WHERE forum_id='$f'";
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$forum = $row[forum_name];
$pagetitle = "| $name | $forum";
} |
PS. There are some important addons to the code
http://www.orientalgate.org/fortopic442.html |
|
|
|
   |
 |
Fiona
Private


Joined: Nov 10, 2004
Posts: 48
|
Posted:
Sun Mar 19, 2006 3:17 am |
  |
Further to my post above I have since discovered that the code only seems to be executed for viewtopic&p and not throught the normal navigation route. Other changes are needed, not just the adition (as some of the added parts are executed before the final title is built).
I changed the other two areas in this same module and all was fine.
Fi |
|
|
   |
 |
|
|