montego
Site Admin/Owner


Joined: Feb 12, 2005
Posts: 946
|
Posted:
Sun Dec 09, 2007 11:57 am |
|
Although it worked for most folks, the pagination links at the bottom (and with some themes also on the top), were not tapped. This completes these iif you need/want them:
=== OPEN ===
.htaccess
=== FIND CODE ===
| Code: |
RewriteRule ^members.html modules.php?name=Members_List [L]
|
=== REPLACE WITH (and then upload) ===
| Code: |
RewriteRule ^members-([a-z]*)-sortasc-([0-9]*).html modules.php?name=Members_List&file=index&mode=$1&order=ASC&start=$2 [L]
RewriteRule ^members-([a-z]*)-sortdesc-([0-9]*).html modules.php?name=Members_List&file=index&mode=$1&order=DESC&start=$2 [L]
RewriteRule ^members.html modules.php?name=Members_List [L]
|
=== OPEN FILE ===
ShortLinks/GT-Members_List.php
=== REPLACE THE $urlin / $urlout WITH ===
| Code: |
$urlin = array(
'"(?<!/)modules.php\?name=Forums&file=profile&mode=editprofile"',
'"(?<!/)modules.php\?name=Forums&file=profile&mode=viewprofile&u=([0-9]*)"',
'"(?<!/)modules.php\?name=Forums&file=([^index][a-zA-Z0-9_-]*)((\")|(&sid=[a-zA-Z0-9]*))"',
'"(?<!/)modules.php\?name=Forums&file=index((\")|(&sid=[a-zA-Z0-9]*))"',
'"(?<!/)modules.php\?name=Forums(?!&)"',
'"(?<!/)modules.php\?name=Members_List&file=index&mode=([a-z]*)&order=ASC&start=([0-9]*)((\")|(&sid=[a-zA-Z0-9]*))"',
'"(?<!/)modules.php\?name=Members_List&file=index&mode=([a-z]*)&order=DESC&start=([0-9]*)((\")|(&sid=[a-zA-Z0-9]*))"',
'"(?<!/)modules.php\?name=Members_List&file=index((\")|(&sid=[a-zA-Z0-9]*))"',
'"(?<!/)modules.php\?name=Private_Messages&file=index&folder=(savebox|inbox|outbox|sentbox)((\")|(&sid=[a-zA-Z0-9]*))"',
'"(?<!/)modules.php\?name=Private_Messages&file=index&mode=newpm&popup=1"',
'"(?<!/)modules.php\?name=Private_Messages&file=index&mode=post&u=([0-9]*)"',
);
$urlout = array(
'forum-editprofile.html',
'forum-userprofile-\\1.html',
'forums-\\1.html\\2',
'forums.html\\1',
'forums.html',
'members-\\1-sortasc-\\2.html\\3',
'members-\\1-sortdesc-\\2.html\\3',
'members.html\\1',
'messages-\\1.html\\2',
'messages-popup.html',
'messages-post-\\1.html',
);
|
=== UPLOAD FILES === |
| |
|