--==-- Donate --==--
Voluntary donations are greatly appreciated to help cover the cost of hosting.
Voluntary donations are greatly appreciated to help cover the cost of hosting.
Donations to date: 1 totaling $10
Thank you for supporting this site!
(Opens in new window. Might need to hold down control/CTRL on your keyboard if you have a popup blocker..)
NOTE- 15Jul03 - An issue was been brought to my attention for people using PHP 4.1.0 or earlier where logging in just takes you back to the login screen with no error.
Although incorrect security settings for the UebiMiau $temporary_directory 'database' folder is usually the most likely cause it seems users with old PHP versions can have this problem too.
I *highly* recommend updating to the latest version of PHP but if you can't or choose not to someone has contacted me with a fix that supposedly works. This should not be needed for anyone
using PHP 4.1.0+ so I don't recommend applying these mods except as a last resort for people having the same problem.
Edit inc.php and change:
// from:
session_start();
if (!isset($_SESSION['sid'])){
$sid = strtoupper("{".uniqid("")."-".uniqid("")."-".time()."}");
$_SESSION['sid']=$sid;
} else $sid=$_SESSION['sid'];
// to:
session_start();
if(!is_array($_SESSION)) {
$_SERVER = &$HTTP_SERVER_VARS;
$_GET = &$HTTP_GET_VARS;
$_POST = &$HTTP_POST_VARS;
$_COOKIE = &$HTTP_COOKIE_VARS;
$_SESSION = &$HTTP_SESSION_VARS;
$_FILES = &$HTTP_POST_FILES;
$_ENV = &$HTTP_ENV_VARS;
}
if (!isset($_SESSION['sid'])){
$sid = strtoupper("{".uniqid("")."-".uniqid("")."-".time()."}");
$_SESSION['sid']=$sid;
session_register ('sid');
} else $sid=$_SESSION['sid'];
Thanks goes to Alessandro Fiorotto - effe9 AT tiscali.it
Comments on Neotech.net theme or other questions?
Email me at: ubmods AT neotech.net
For official UebiMiau info, files & support see: http://www.uebimiau.org
|
|