Due to the volume of spam happening on our forums, posting is now restricted to verified members only. If you're not verified, drop us a note with your username.
Hi i have a problem that my site does not have any control panel. i tried in 2 deifferent sites. both have same problem. just check this is and help me
Yes, we've seen this a few other places recently too. I believe it's a change that occurred in a recent release of either PHP itself or one of the major server packages (if it's the same problem).
Open up your index.php file, and find this line (should be line 192):
Code
$CookieData = $HTTP_COOKIE_VARS[$CookieName];
and replace it with this:
Code
$CookieData = $_COOKIE[$CookieName];
Then save and upload back to your website. Let us know if that works for you.