• Resolved kacper3355

    (@kacper3355)


    Hi,

    I’m using the latest version of CAOS and WP 5.8.3. Unfortunately, in CAOS setting’s page I’m getting a wall full of errors: https://i.imgur.com/H4TGD4Y.jpg

    Can you please take a look at it?

    Thanks,
    Kacper

    EDIT: I just updated to WP 5.9.1 and the errors still persist.

    • This topic was modified 3 years ago by kacper3355.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author DaanvandenBergh

    (@daanvandenbergh)

    Hmmm… Something seems to be off (for some people, you’re not the only running into this) for retrieving the feed for the little news reel in the bottom right corner.

    Could you try the following:

    1. Open the file wp-content/plugins/host-analyticsjs-local/includes/admin/class-settings.php
    2. Go to line 480
    3. You’ll notice this snippet of code:

    
    $xml = utf8_encode(html_entity_decode($xml));
    $xml = simplexml_load_string($xml);
    

    4. Replace that with:

    
    libxml_use_internal_errors(true);
    $xml = utf8_encode(html_entity_decode($xml));
    $xml = simplexml_load_string($xml);
    

    Let me know how it goes!

    Thread Starter kacper3355

    (@kacper3355)

    Hi @daanvandenbergh,

    it fixes the problem! Will you include this fix in the next update?

    Best,
    Kacper

    Plugin Author DaanvandenBergh

    (@daanvandenbergh)

    Awesome! Will do ??

    Thread Starter kacper3355

    (@kacper3355)

    Great! Thanks ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘A wall full of errors’ is closed to new replies.