First of all we started getting the security warning message:
QUOTE
Security Warning
Parsed array keys can not contain illegal characters! Script execution has been halted.
It may be possible to fix this error by deleting your browsers cookies and refresh this page.
Parsed array keys can not contain illegal characters! Script execution has been halted.
It may be possible to fix this error by deleting your browsers cookies and refresh this page.
I was pointed to this post and I applied this fix...
You can turn off that security function by opening /includes/ini.inc.php
Find:
Replace with:
The function is a hardening measure. This means that it is only an extra measure to prevent potential security issues. It is safe to trun off but we recommend having it on.
There have been a few bugs concerning this and I will release a patch asap.
Find:
CODE
$clean = new clean_all($data);
$_GET = $clean->clean_all($_GET);
$_POST = $clean->clean_all($_POST);
$_COOKIE = $clean->clean_all($_COOKIE);
$_REQUEST = $clean->clean_all($_REQUEST);
$_GET = $clean->clean_all($_GET);
$_POST = $clean->clean_all($_POST);
$_COOKIE = $clean->clean_all($_COOKIE);
$_REQUEST = $clean->clean_all($_REQUEST);
Replace with:
CODE
/*
$clean = new clean_all($data);
$_GET = $clean->clean_all($_GET);
$_POST = $clean->clean_all($_POST);
$_COOKIE = $clean->clean_all($_COOKIE);
$_REQUEST = $clean->clean_all($_REQUEST);
*/
$clean = new clean_all($data);
$_GET = $clean->clean_all($_GET);
$_POST = $clean->clean_all($_POST);
$_COOKIE = $clean->clean_all($_COOKIE);
$_REQUEST = $clean->clean_all($_REQUEST);
*/
The function is a hardening measure. This means that it is only an extra measure to prevent potential security issues. It is safe to trun off but we recommend having it on.
There have been a few bugs concerning this and I will release a patch asap.
We no longer get the security warning but REGULARLY (every 7/8 page views) get signed out of the admin panel saying No administration session found.
Is there a solution?
Has anyone had similar problems?
It is REALLY becoming an issue and very annoying. We've a lot of products to add before we go live, hopefully in May.
