Reputation: 422
Any ideas as to why the jQuery Cycle plugin would function perfectly on a local install of wordpress and is now broken running on a live server? I have referenced all of my javascript files in the wordpress header and all of my cycle functions are written in "custom.js". I understand that it is best practice to include these in the footer but this seemed to give me errors.
http://sameralmadani.com/aleo_retouching/?page_id=6
Any clue as to why the .cycle()
plugin is getting ignored would be much appreciated.
Upvotes: 0
Views: 431
Reputation: 4232
You have to change your server/ftp settings. You don't have access to http://sameralmadani.com/aleo_retouching/wp-content/themes/twentyeleven/js/jquery.cycle.all.min.js because of a 403 error.
Set the /wp-content folder (recursive) to CHMOD 777. If this works, set CHMOD back to 755 and check if it works too.
See https://stackoverflow.com/a/2785552/1184904 for further information
Upvotes: 1
Reputation: 106
Are you using the WordPress plugin version of cycle? Have you specified the parent container's id name in the control panel? If you just migrated your site to a new url that information may not have been retained.
Upvotes: 0
Reputation: 3078
Your site apparently doesn't have access to the location where your "cycle" and "easing" js is located.
It's giving a "403 Forbidden" error. http://en.wikipedia.org/wiki/HTTP_403
Upvotes: 0