All the Javascript isn't working in the admin area on my production server.
Locally it works fine. I have narrowed it down to /wp-admin/wp-header.php line 72-78
do_action('admin_print_styles');
And all similar ones to these.
The only difference on the production server is that I have set up a sym link:
ln -s /current/wp-content/plugins /shared/plugins
The symlink is working fine, I can access files by going to:
httt://productionsite.co.uk/wp-content/plugins/pluginname/file.css
However, when I view the console I get the following errors:
"NetworkError: 404 Not Found - http://productionsite.co.uk/wp-content/plugins/var/www/vhosts/productionsite.co.uk/shared/plugins/wordpress-form-manager/css/style.css?ver=3.2.1"
So it is trying to include the wrong file and seems to have something to do with the sym link.
Any ideas are appreciated.