phpmyadmin install problem

ok lets try it this way:
Code:
$GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT';
header('Expires: ' . $GLOBALS['now']); // rfc2616 - Section 14.21 <----LINE 22
header('Last-Modified: ' . $GLOBALS['now']);
header('Cache-Control: no-store, no-cache, must-revalidate,

very weird there is something about the bottom half of this code that it doesn't like and won't let me post it...
 
fixed. had to change the default time zone in the phpMyAdmin/libraries/common.inc.php
from:
Code:
date_default_timezone_set(@date_default_timezone_get());
to:
Code:
date_default_timezone_set('America/Toronto');
fixing this. actually fixed all the errors..

Now using Cookie as auth method will force people to log in to use phpMyAdmin.. but the setup folder is still accessible without any login :S so do I need to htaccess just the setup & config folders??
 
Back
Top