JRSweets
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/1893895841d22f8dea615.gif)
Joined: Aug 06, 2004
Posts: 192
|
Posted:
Tue Jan 18, 2005 2:47 pm |
|
Telli posted a some GT code for the arcade and I updated it for the newest version.
http://www.codezwiz.com/ftopicp-37950-.html#37950
Open GT-Forums.php
Find:
After add:
Code:"'(?<!/)modules.php\?name=Forums&file=arcade_search&x=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=arcade_search'",
"'(?<!/)modules.php\?name=Forums&file=comments_list&start=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=comments_list'",
"'(?<!/)modules.php\?name=Forums&file=toparcade&start=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=toparcade'",
"'(?<!/)modules.php\?name=Forums&file=arcade&cid=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=arcade&favori=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=arcade&delfavori=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=arcade'",
"'(?<!/)modules.php\?name=Forums&file=games&gid=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=scoreboard&gid=([0-9]*)'",
"'(?<!/)modules.php\?name=Forums&file=statarcade&uid=([0-9]*)'",
|
Open GT-Forums.php
Find:
After add:
Code:"forums-arcade-search-\\1.html",
"forums-arcade-search.html",
"forums-comments-list-\\1.html",
"forums-comments-list.html",
"forums-toparcade-\\1.html",
"forums-toparcade.html",
"forums-arcade-\\1.html",
"forums-arcade-fav-\\1.html",
"forums-arcade-delfav-\\1.html",
"forums-arcade.html",
"forums-games-\\1.html",
"forums-scoreboard-\\1.html",
"forums-statarcade-\\1.html",
|
Add this to htaccess...
Code:RewriteRule ^forums-arcade-search-([0-9]*).html forums.html?file=arcade_search&x=$1 [L]
RewriteRule ^forums-arcade-search.html forums.html?file=arcade_search [L]
RewriteRule ^forums-comments-list-([0-9]*).html forums.html?file=comments_list&start=$1 [L]
RewriteRule ^forums-comments-list.html forums.html?file=comments_list [L]
RewriteRule ^forums-toparcade-([0-9]*).html forums.html?file=toparcade&start=$1 [L]
RewriteRule ^forums-toparcade.html forums.html?file=toparcade [L]
RewriteRule ^forums-arcade-([0-9]*).html forums.html?file=arcade&cid=$1 [L]
RewriteRule ^forums-arcade-fav-([0-9]*).html forums.html?file=arcade&favori=$1 [L]
RewriteRule ^forums-arcade-delfav-([0-9]*).html forums.html?file=arcade&delfavori=$1 [L]
RewriteRule ^forums-arcade.html forums.html?file=arcade [L]
RewriteRule ^forums-games-([0-9]*).html forums.html?file=games&gid=$1 [L]
RewriteRule ^forums-scoreboard-([0-9]*).html forums.html?file=scoreboard&gid=$1 [L]
RewriteRule ^forums-statarcade-([0-9]*).html forums.html?file=statarcade&uid=$1 [L]
|
|
Last edited by JRSweets on Thu Jan 20, 2005 9:24 pm; edited 1 time in total |
|