Konsort v1.6 NON Case Sensitive Profiles

With phpFoX Konsort version 1.6 all profiles are case sensitive per our default design. For example if my user name is “natio” my profile URL would be:

http://www.example.com/natio

If you were going to view the following URL:

http://www.example.com/NatiO

you would get a “Error - Profile Not Found” page error. If you want to bring back NON case sensitive profile URL’s you can try the following MOD. First open the file /site/public/user/_pre.php and look for:

if ( !isset($oUser->aData['user']) || $sUser != $oUser->aData['user'] )

replace that with:

if ( !isset($oUser->aData['user']) )

Notice: This mod is not supported by phpFoX Official Support staff.