0

hello guy's i publish my website on server but my css & jquery not loaded mr error in incpect has

enter image description here

user3590235
  • 153
  • 7
  • Don't use the flickr API to server to server jQuery, you're better off using a CDN. What happens if you try and browse to the problematic files directly. Please include the code where you are referencing these files. – Jon P Feb 04 '20 at 22:03

2 Answers2

0

The response code 403 indicates that you have not provided proper authentication required by the flickr API. Look at https://www.flickr.com/services/api/ as to how you should implement the authentication.

0

My 2 cents... This seems to me more of access issue.

  1. Make sure you are not using absolute paths in you code to access your CSS & JQuery files. Instead use relative path - I did some search here for you

  2. When you deploy your app to server (after publishing), the new server environment may be restricting your access to some resources (for ex. hyperlink addresses). So change location or grant the appropriate permissions.
    Hope this helps.

user3590235
  • 153
  • 7