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, 117 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - "Jump to: " in forums does not work [ ]
 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
KOMAPA
Nuke Soldier
Nuke Soldier


Joined: May 18, 2003
Posts: 26


PostPosted: Wed Feb 04, 2004 5:42 am Reply with quoteBack to top

10x for help
Find all posts by KOMAPAView user's profileSend private messageVisit poster's websiteICQ Number
pmilo1
Nuke Cadet
Nuke Cadet


Joined: Feb 01, 2004
Posts: 4

Location: Illinois

PostPosted: Wed Feb 04, 2004 6:51 am Reply with quoteBack to top

Worked for me! good catch and great fix.
Find all posts by pmilo1View user's profileSend private messageVisit poster's website
Getyousomeofthis
Sergeant
Sergeant


Joined: Jan 18, 2004
Posts: 128

Location: Tulsa Oklahoma

PostPosted: Sun Feb 08, 2004 11:32 am Reply with quoteBack to top

I love this place . Thanks a lot guys you rock! Cool
Find all posts by GetyousomeofthisView user's profileSend private messageVisit poster's website
IChick
Nuke Soldier
Nuke Soldier


Joined: Aug 28, 2003
Posts: 13


PostPosted: Fri Feb 13, 2004 1:06 pm Reply with quoteBack to top

rfburn wrote:
Yeah, same here. Mine was alread set for 'post'. The problem only exists in my subblack3dblue and subblack3dorange forum themes. All other themes and their forums work fine when using the jumpbox. I checked and both the problem forums say 'post'. If the author of the forum themes could shed some light on this, it would be great. I really like those two forum layouts.

Rf


Im having the same problem my files say post already and im using subBlack3dBlue. Mine just seem to refresh the current page its on instead of jumping to any other forum chosen.
Find all posts by IChickView user's profileSend private message
aCe2k4
Nuke Cadet
Nuke Cadet


Joined: Feb 26, 2004
Posts: 3


PostPosted: Thu Feb 26, 2004 6:30 pm Reply with quoteBack to top

Hi.. to all you guys that that have the "get" / "post" issue not fixing your problem..

I have a more comprehencive workaround
locate your functions.php in /includes/ dir

Locate on line 130 where it says: function make_jumpbox($action, $match_forum_id = 0)

Scroll a blitt further to about line 220 where you'll fine:
Code:
$template->set_filenames(array(
'jumpbox' => 'jumpbox.tpl')
);


Just before this, add these lines:
Code:
// aCe2k hack to fix jumpbox
if ($action == "viewforum.$phpEx") {
   $aCeURL = str_replace("?", "&", $action); // As we are already in nuke, change the ? to &
   $aCeURL = str_replace(".php", "", $aCeURL);
   $aCe2kBoxFix = "Forums";  //Edit to make name=Forums
   $aCe2kBoxFixer = "$aCeURL";  //Edit to make file=$url
}
// aCe2k hack END

$template->set_filenames(array(
'jumpbox' => 'jumpbox.tpl')
);



Further more, we need to parce this info right...
so open you jumpbox.tpl inside your phpBB's templates/<theme>/ dir...
Now MAKE A BACKUP! and past this in the original file:
Code:
<!-- aCe2k hack to match edit in functions.php -->
<form method="post"
     name="jumpbox"
     onSubmit="if(document.jumpbox.f.value == -1){return false;}"
>
<input type="hidden"
       name="name"
       value="{S_JUMPBOX_ACE_NAME}"
>
<input type="hidden"
       name="file"
       value="{S_JUMPBIX_ACE_FILE}"
>
<!-- aCe2k hack END -->
<table cellspacing="0" cellpadding="0" border="0">
  <tr>
   <td nowrap="nowrap">
     <span class="gensmall">{L_JUMP_TO}:
{S_JUMPBOX_SELECT}
     <input type="submit" value="{L_GO}" class="liteoption" />
     </span>{S_HIDDEN_FIELDS}
   </td>
  </tr>
</table>
</form>


This code made things work for me.
Private forums not show'n, but public does.
But there's more to do here...

Coz when your reading a thread, jumpbox automaticly selects the Topic your in, but when your reading on the Topic's page, it doesn't auto select or even print the BBS's frontpage..
Maybe som code guru can fix this?? It would mean a functions.php hack, but i just havn't got the time to learn what is, and what's not possible with nuke and phpbb, and what's stored in db and what's not.

For you out there that have the Hiarchive mod,.. donno if it'll work.. you try.. Backup and past new code and we find out soon enough Smile


I've allso located a minor html-bug in this part of the code..
In my file, it's located on line 182 and it looks like this:
Code:
$selected = ( $forum_rows[$j]['forum_id'] == $match_forum_id ) ? 'SELECTED' : '';

edit it to look like this, and you now have a better html rendered page.
Code:
$selected = ( $forum_rows[$j]['forum_id'] == $match_forum_id ) ? ' SELECTED' : '';


see the little space i've added just before SELECTED ?

That's it really Smile

NukeCops Admin / Moderator..
Please edit this reply if you find bad english and/or bad code. I'm no wizard at this. I only make thinks work, and stick to that Very Happy



<i>[Edit]I'm using the Cobalt2 theme, maybe that's why this "Fixed Hack" didn't work for me and others</i>

____________________________

aCe2k just left the building
Find all posts by aCe2k4View user's profileSend private message
siJosh
Nuke Cadet
Nuke Cadet


Joined: Mar 12, 2004
Posts: 1


PostPosted: Fri Mar 12, 2004 6:41 am Reply with quoteBack to top

thanks man. changing "get" to "post" worked for me. Laughing
Find all posts by siJoshView user's profileSend private message
okidoki
Nuke Cadet
Nuke Cadet


Joined: Apr 29, 2004
Posts: 8


PostPosted: Thu Apr 29, 2004 6:13 pm Reply with quoteBack to top

Thanks!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Find all posts by okidokiView user's profileSend private message
rfburn
Corporal
Corporal


Joined: Nov 02, 2003
Posts: 63


PostPosted: Mon Jul 12, 2004 9:47 pm Reply with quoteBack to top

I will certainly try the code editing and see if mine will work. Thanks for all your hours spent on this stuff. THANKS. People should be awarded hard currency for doing stuff like this. You will certainly be rewarded in a future time, no doubt.

RF
Find all posts by rfburnView user's profileSend private message
suzy
Private
Private


Joined: Jun 13, 2004
Posts: 40


PostPosted: Sun Aug 29, 2004 7:40 pm Reply with quoteBack to top

boonkwee wrote:
If only every bug was that simple! Shocked

Thanks!


Oh how I agree!
Find all posts by suzyView user's profileSend private message
mikeshields
Sergeant
Sergeant


Joined: Feb 21, 2004
Posts: 101


PostPosted: Wed Oct 20, 2004 6:15 am Reply with quoteBack to top

Thanks Mr. Green

_________________
Turkish Real Estate | Health & Safety Resources | Health & Safety Consultants | Blog
Find all posts by mikeshieldsView user's profileSend private messageVisit poster's website
nikko
Sergeant
Sergeant


Joined: Jan 01, 2005
Posts: 88


PostPosted: Sat Jan 29, 2005 12:45 am Reply with quoteBack to top

Well. Instead of making another topic for this problem that I am facing with, I am going to use this threat to find a fix for my problem.

Now, on the "Jump to forum" every time that I try to jump to another Forum I get this: "Sorry, such file doesn't exist..."


Any help would be great.

Nikko
Find all posts by nikkoView user's profileSend private messageVisit poster's website
nikko
Sergeant
Sergeant


Joined: Jan 01, 2005
Posts: 88


PostPosted: Sat Jan 29, 2005 9:01 am Reply with quoteBack to top

Sorry if I made a post again. I just wanted to let every one know about this little problem this morning again, since last night no one reply to my problem. Thanks for your help.


P.S.- I will edit this post as soon someone helps me out.


Nikko.
Find all posts by nikkoView user's profileSend private messageVisit poster's website
RachelwasHere
Nuke Cadet
Nuke Cadet


Joined: May 07, 2005
Posts: 7


PostPosted: Mon May 09, 2005 7:11 pm Reply with quoteBack to top

OK so I located my jumpbox.tpl file but where should I ftp it?....I have a seperate template for my forums. Just in the fiblack3d main folder directory?

All that is in the folder is an Images folder, and a fiblack3d.css file.
Find all posts by RachelwasHereView user's profileSend private messageAIM Address
RachelwasHere
Nuke Cadet
Nuke Cadet


Joined: May 07, 2005
Posts: 7


PostPosted: Mon May 09, 2005 7:13 pm Reply with quoteBack to top

NVM I got it. I'm so dumb haha. Thanks guys for the help!
Find all posts by RachelwasHereView user's profileSend private messageAIM Address
BrotherJoe
Nuke Soldier
Nuke Soldier


Joined: Aug 07, 2004
Posts: 19


PostPosted: Fri Dec 22, 2006 1:25 pm Reply with quoteBack to top

Thanks to all ... this saved me alot of time
Find all posts by BrotherJoeView 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.227 Seconds - 198 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::