Magento 1.9 Error – Fix 403 Forbidden Error in Console

consoleerrormagento-1.9

I am getting following error in my Browser's console.

Any suggestions are welcome.

"NetworkError: 403 Forbidden – www.example.com/skin/frontend/mytheme/default/"

Best Answer

It seems like permissions error.

Provide full permissions to your site's root directory recursively or try giving Magento's standard permissions as one of the code below suggests.

Navigate to your root directory through Terminal:

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

Now try refreshing in the browser.

Hope this works for you.