Magento 1.8移动到新服务器并且Jquery文件未加载

My Magento site version 1.8 has moved to a new server and Jquery files are not loading, I am getting a 404 Not Found error, even though the files are there. I have tried all other things like deleting the cache etc. the CSS files are working fine.

Edit: ""NetworkError: 404 Not Found - http://example.com.au/skin/m/1405938595/js/prototype/prototype.js,/js/lib/ccard.js,/js/prototype/validation.js,/js/scriptaculous/builder.js,/js/scriptaculous/effects.js,/js/scriptaculous/dragdrop.js,/js/scriptaculous/controls.js,/js/scriptaculous/slider.js,/js/varien/js.js,/js/varien/form.js,/js/varien/menu.js,/js/mage/translate.js,/js/mage/cookies.js,/js/iwd/all/jquery-1.10.2.min.js,/js/magestore/rewardpoints.js,/js/prototype/window.js,/js/varien/product.js,/js/varien/configurable.js,/js/calendar/calendar.js,/js/calendar/calendar-setup.js,/js/ebizmarts/autoresponders/visitedproducts.js,/skin/frontend/default/nativebox/js/jquery.min.js,/skin/frontend/base/default/js/magestore/rewardpointsrule.js"

Cause the error, other js files are loading perfectly.

have you tried restoring proper permissions via ssh in magento root?

for folders:

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

for files:

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