You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 69 guest(s) and 1 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Forum, Topic, and Post Title in Browser Bar [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
djalecc
Lieutenant
Lieutenant


Joined: Feb 21, 2004
Posts: 180

Location: Gloucestershire

PostPosted: Thu Aug 19, 2004 10:01 pm Reply with quoteBack to top

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 Very Happy

_________________
Free Dating
Courier Service Foook It!
Find all posts by djaleccView user's profileSend private messageVisit poster's website
Gaurav
Captain
Captain


Joined: Oct 13, 2003
Posts: 317


PostPosted: Fri Aug 20, 2004 7:39 pm Reply with quoteBack to top

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.

_________________
Image
Find all posts by GauravView user's profileSend private messageVisit poster's website
OCSupertones
Lieutenant
Lieutenant


Joined: Jan 20, 2004
Posts: 213


PostPosted: Tue Aug 24, 2004 8:25 am Reply with quoteBack to top

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.
Find all posts by OCSupertonesView user's profileSend private messageVisit poster's website
fuzioneer
Private
Private


Joined: Nov 07, 2003
Posts: 37


PostPosted: Tue Nov 30, 2004 12:19 am Reply with quoteBack to top

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
Find all posts by fuzioneerView user's profileSend private message
SlashDot
Lieutenant
Lieutenant


Joined: Nov 22, 2004
Posts: 160

Location: Bangladesh

PostPosted: Tue Dec 07, 2004 6:58 am Reply with quoteBack to top

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>
Find all posts by SlashDotView user's profileSend private messageVisit poster's website
djalecc
Lieutenant
Lieutenant


Joined: Feb 21, 2004
Posts: 180

Location: Gloucestershire

PostPosted: Sat Feb 26, 2005 1:42 am Reply with quoteBack to top

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!
Find all posts by djaleccView user's profileSend private messageVisit poster's website
djalecc
Lieutenant
Lieutenant


Joined: Feb 21, 2004
Posts: 180

Location: Gloucestershire

PostPosted: Fri Mar 04, 2005 12:38 am Reply with quoteBack to top

Found a fix for this on the www.nukearcade.com downloads... Download the phpbb.php hack file, this fixes the problem and doesnt need the arcade to fix it either (if its not installed, no errors come up)...

_________________
Free Dating
Courier Service Foook It!
Find all posts by djaleccView user's profileSend private messageVisit poster's website
Fiona
Private
Private


Joined: Nov 10, 2004
Posts: 48


PostPosted: Sun Mar 19, 2006 1:59 am Reply with quoteBack to top

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
Find all posts by FionaView user's profileSend private message
Fiona
Private
Private


Joined: Nov 10, 2004
Posts: 48


PostPosted: Sun Mar 19, 2006 3:17 am Reply with quoteBack to top

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
Find all posts by FionaView user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next 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



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.243 Seconds - 215 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::