Author |
Message |
sak
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/0cddf1ff43222768be81b.jpg)
Joined: Jul 06, 2005
Posts: 172
|
Posted:
Wed Apr 04, 2007 8:27 am |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
jakec
Site Admin
![](modules/Forums/images/avatars/502a2d1345d88a86ddb4a.png)
Joined: Feb 06, 2006
Posts: 3048
Location: United Kingdom
|
Posted:
Wed Apr 04, 2007 10:36 am |
|
Have you copied the shortlinks code into the .htaccess file in the root of your site? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
Site Admin
![](modules/Forums/images/avatars/0c0adf824792d6d341ef4.gif)
Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Wed Apr 04, 2007 7:47 pm |
|
I have moved this to the RN ShortLinks forum where it belongs.
This is odd, because I could have sworn that I tested these, but I will look at them again tomorrow morning when I have some time to investigate. I agree, they are not tapped right. There is a tap missing it looks like.
I'll provide a fix then. |
_________________ 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! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
sak
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Apr 04, 2007 7:53 pm |
|
Woops, didn't see the ShortLinks forum. Yes, I'm using the basic .htaccess provided with RN for shortlinks. AFAIK it's a bug, but other people should be able to tell very quickly by taking a peak in the Content Manager. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Apr 04, 2007 8:01 pm |
|
sak, I have already aknowledged that it is a bug... I'll get you the fix tomorrow. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 05, 2007 7:10 am |
|
sak, I think this issue is coming from the GTZ-PageTap.php file and is not really a bug afterall. I had not picked up earlier on the "admin" piece. If you do not have a need to do the overall page tap of the Content link, you might want to remove the following two lines from this said file:
'"(?<!/)modules.php\?name=Content"',
'content.html',
You could also try, instead, changing the first line referenced above to this:
'"(?<!/)modules.php\?name=Content\""',
I'd be curious to see if this works. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 05, 2007 7:31 am |
|
If you have those Content lines within your GTZ-PageTap.php script, this would cause this problem. But, I would change the first line to this instead of what I posted earlier:
'"(?<!/)modules.php\?name=Content(?!&)"',
Such a simple change... ![Embarassed](modules/Forums/images/smiles/icon_redface.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 05, 2007 7:37 am |
|
Well, I must need to go back to bed. I just checked, and I need to post a more complete fix as RN2.10.00 was released with more taps in this file than I originally thought.
Just replace the whole $urlin/$urlout with the following:
Code:
$urlin = array(
'"(?<!/)modules.php\?name=Downloads(?!&)"',
'"(?<!/)modules.php\?name=Your_Account&op=logout(?!&)"',
'"(?<!/)modules.php\?name=Forums(?!&)"',
'"(?<!/)modules.php\?name=Your_Account(?!&)"',
'"(?<!/)modules.php\?name=Content(?!&)"',
'"(?<!/)modules.php\?name=FAQ(?!&)"',
'"(?<!/)modules.php\?name=Submit_News(?!&)"',
'"(?<!/)modules.php\?name=Topics(?!&)"',
'"(?<!/)modules.php\?name=Top(?!&)"'
);
$urlout = array(
'downloads.html',
'account-logout.html',
'forums.html',
'account.html',
'content.html',
'faq.html',
'submit.html',
'topics.html',
'top.html'
);
|
That ought to fix you right up everywhere that it matters. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
sak
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Apr 06, 2007 9:20 pm |
|
Thanks, man. I will give that a try and report back if there are any other problems.
![:clap:](modules/Forums/images/smiles/icon_welldone.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
montego
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Wed Apr 25, 2007 6:40 am |
|
sak, so I will assume that everything worked just fine then? Thx. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|