Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter andrewgcross

    (@andrewgcross)

    I’m NINE months late responding to this, but you were absolutely right – it was an .htaccess issue.

    If anyone else runs into this issue, my problem wasn’t caused by the main .htaccess rewrite rules located in my root directory. Instead, it was a second .htaccess file located in ./wp-content that was causing me issues.

    Originally, I had a block that prevented any of the php files in wp-content being directly accessible (probably not a bad idea, in general):

    <Files *.php>
    deny from all
    </Files>

    Since this plugin works with a bit of php magic, though, the /css/style.php file was made inaccessible by this .htaccess block. To fix it, I modified the code such that any file named style.php would be accessible!

    <Files *.php>
    deny from all
    </Files>

    <Files style.php>
    Order Allow,Deny
    Allow from all
    </Files>

    Thanks again, jrf!

    Thread Starter andrewgcross

    (@andrewgcross)

    Here’s a link to the page in question: https://goo.gl/7f4xEr

    There are two media-attached files located near the end of the post. The first one seems to attach the class and appropriately ::after the file size, but the second piece of media does not.

    Best I can tell my browser(s) doesn’t feel like rendering the base64 encoded cssvars argument–I’m getting a 404 error.

    I’m curious what you notice. I’m guessing I’ll learn something one way or another! In the meantime, I’m going to shuffle through my plugins and see if there’s some sort of strange conflict.

    Thread Starter andrewgcross

    (@andrewgcross)

    Any ideas? I haven’t had any luck with it today yet either…

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