
The php on the webserver is now 5.2.6, the helpdesk has changed is already.
But my adminpanel has no CSS anymore... Coincidence...

Tried to change the admin theme, deleted the cache, no luck until now.
®
[edit]
When I change to ' display_errors = on ' the admin looks fine (even the breadcrumbs, we are getting somewhere!), but I get an error in the site:
Code: Select all
Warning: Parameter table_id is not known... dropped in /usr/local/WWW/A/.5c1/a/a/htdocs/lib/misc.functions.php on line 1347
php_errorlog looks like: http://forum.cmsmadesimple.org/index.ph ... 549.0.html
Did not work for me...1. check your session_save_path and try to set
2. try this workaround, edit include.php:
@ini_set('session.use_trans_sid', 0);
#if(!@session_id())
#{
#Trans SID sucks also...
@ini_set('url_rewriter.tags', '');
@ini_set('session.use_trans_sid', 0);
@session_start();
if( isset($CMS_ADMIN_PAGE) )
{
if( !isset($_SESSION[CMS_USER_KEY]) )
{
// maybe change this algorithm.
$key = substr(str_shuffle(md5($dirname.time().session_id())),-8);
$_SESSION[CMS_USER_KEY] = $key;
}
}
#}
Tried to search the forum, couldn't find something yet. Tonight another try, first have to eat

[/edit]