Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author dpowney

    (@dpowney)

    Thanks for letting me know. I’ll take a look and try to find out the issue. Daniel

    mvanloon

    (@mvanloon)

    I ran into the same issue. This keeps the ‘view heatmap’ button from working unfortunately.

    The issue is simple to fix. The error is in the file admin-controller.php at line 318:

    $root_relative_path = '..' . DIRECTORY_SEPARATOR . '.. ' . DIRECTORY_SEPARATOR;

    NOTICE THE SPACE IN ‘.. ‘ AFTER DIRECTORY_SEPARATOR. That should not be there, thus:

    $root_relative_path = '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR;

    this fixes the 404’s.

    Plugin Author dpowney

    (@dpowney)

    Fixed in version 4.0.11 available now. Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Too many 404 files’ is closed to new replies.