Archive for October, 2007

phpfox.com Server Maintenance - 9:00PM CST 10/28/07

We will be running a routine server hardware checkup, which will take place on Sunday the 28th 2007 at 9:00 PM CST. During this time several areas of phpFoX will have to be taken offline, which include the Support, Forums and Client areas. The general tests will be executed during most of the scheduled day, however the downtime will be at 9:00 PM CST and should not be for very long.

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.