Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Paris Holley

    (@parisholley)

    Nope, there aren’t any .htaccess files or anything special to prevent it from loading.. perhaps check your access/error logs? did you verify that a 404 isn’t causing the 403 and url path is valid?

    Thread Starter moxojo

    (@moxojo)

    Hi Paris,

    thanks for your response. I finally had time to look into this and I believe there is an error on line 137 of asynchronous-javascript.php

    Namely, $options[‘head_file’] is never set as it is using a comparison rather than an assignment operator.

    if (empty($options['head_file'])){
            // notice the double equal sign, means $options['head_file'] is
            // never set
    	$options['head_file'] == self::$default_head_file;
      }

    When I changed the code to this

    if (empty($options['head_file'])){
    	$options['head_file'] = self::$default_head_file;
    }

    It completes just fine, with no errors.

    Thanks for looking into it!

    Plugin Author Paris Holley

    (@parisholley)

    thanks for finding that bug! I need to start double checking these pull requests..

    Thread Starter moxojo

    (@moxojo)

    Glad I could help :).

    Liking the plugin, keep up the good work, and thanks for being so responsive on the issue queue.

    Cheers!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘403 Error’ is closed to new replies.