I need to modify the code for the members' page, of this type:
http://example.com/forum/members/sillyUserName.html
Where to find the code for this page? There is no ~/forum/members.php file, and from looking in .htaccess it looks to me that the code is being parsed by vbseo.php:
Now going through vbseo.php is quite an adventure. I cannot find the string "members" in that file. Furthermore, in the database I see the string "members" only in the "phrase" and "modification_searchlog" tables, neither of which seem relevant.Code:[root@example forum]# cat .htaccess # Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable the hack in # the vBSEO control panel to stop url rewrites. RewriteEngine On # Some servers require the Rewritebase directive to be # enabled (remove '#' at the beginning to activate) # Please note: when enabled, you must include the path # to your root vB folder (i.e. RewriteBase /forums/) #RewriteBase / #RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com #RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301] RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L] RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|someIrrelevantPage.php) RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images|someIrrelevantPage)/ RewriteRule ^(.+)$ vbseo.php [L,QSA]
Please, where might I find this file, or where else should I look?
Thanks!


LinkBack URL
About LinkBacks





Reply With Quote

