Search code examples
jquerydotnetnukepermissionspermission-denied

Permission denied on jquery.min.js file in DotNetNuke


I have created some jQuery and put it in an ascx include. It works fine on regular pages, however when I load a secured page on my site I get the following javascript error.


Permission Denied jquery.min.js Code: 0


Any ideas?


Solution

  • Assuming you're using the hosted jQuery by the Google CDN, you can change the hosted script address to use https instead of http:

    Host -> Host Settings -> Advanced Settings -> jQuery Settings ->

    Screenshot of Host Settings

    References

    Updated

    This permissions error can occur when you're attempting to make an $.ajax() request using jQuery from a secure URL (https) to a non-secure URL (http) even though they are the same domain. Changing the url parameter to use a relative URL should fix the issue.