I am getting 404 errors on all of my static files when I try to deploy them in production
A live page of the site is available here. Inspecting the page in Chromes Console or Firebug will show the below issues.

I cant understand why this is happening as the above 404 errors match perfectly to the locations of my CSS files
/var/www/bias_experiment/static/survey/css/bootstrap.css
I've tried to solve this for a few days but cant crack the problem.
Below is all of my setup. I thought it best to include everything that might be useful and all the steps I have taken. Apologies for the length.
settings.py
DEBUG = True
STATIC_ROOT = '/var/www/bias_experiment/static/'
STATIC_URL = '/bias_experiment/static/'
STATICFILES_DIRS = (
'/var/www/bias_experiment/src/survey/static/survey/css',
'/var/www/bias_experiment/src/survey/static/survey/js',
'/var/www/bias_experiment/src/survey/static/survey/fonts',
)
I am using STATIC_URL = '/bias_experiment/static/' because I am using a VM which has been made publicly available through http://phaedrus.scss.tcd.ie/bias_experiment/
If I use STATIC_URL = '/static/' I get 403 forbidden errors.
slide_test.html
{% load staticfiles %}
<!-- THESE WORK LOCALY BUT DO NOT WORK ON THE SERVER -->
<link rel = "stylesheet" href ="{% static "survey/css/bootstrap.min.css" %}" >
<link rel = "stylesheet" href ="{% static "survey/css/bootstrap.css" %}">
<link rel="stylesheet" href ="{% static "survey/css/jquery-ui.css" %}">
<link rel="stylesheet" href ="{% static "survey/css/slider.css" %}">
<script src="{% static "survey/js/jquery.min.js" %}"></script>
<script src="{% static "survey/js/jquery-ui.js" %}"></script>
<script src="{% static "survey/js/slider.js" %}"></script>
My default apache file /etc/apache2/sites-available/default
Alias /static/ /var/www/bias_experiment/static/
<Directory /var/www/bias_experiment/static>
Order deny,allow
Allow from all
</Directory>
WSGIScriptAlias /bias_experiment /var/www/bias_experiment/src/bias_experiment/index.wsgi
<Directory /var/www/bias_experiment/src/bias_experiment>
<Files index.wsgi>
Order deny,allow
Allow from all
</Files>
</Directory>
...
standard apache default settings here
...
</VirtualHost>
As per the DjangoProject 1.6 Documentation (I am using Apache/2.2.22 (Ubuntu))
If you are using a version of Apache older than 2.4, replace Require all granted with Allow from all and also add the line Order deny,allow above it.
I have restarted and reloaded Apache
sudo service apache2 restart sudo service apache2 reload
I have no problem running collectstatic

I have set ownership of the collected files to www-data:www-data with the below command
sudo chown -R www-data:www-data /var/www/bias_experiment/static/

I have even disabled and re-enabled the default file in apache2
sudo a2dissite default
sudo a2ensite default
and then restarted
sudo service apache2 restart sudo service apache2 reload
I am using
- Ubuntu 12.04
- Apache 2.22
- Django 1.6
- mod_wsgi Version: 3.3-4ubuntu0.1
An absolute path to one of the CSS files is http://phaedrus.scss.tcd.ie/bias_experiment/static/survey/css/bootstrap.min in case it is of any use.
However I cant seem to get the test deployment page I am working to show its CSS or JS. I really am not sure what I'm leaving out. If anyone can make any suggestions it would be hugely appreciated.
I asked a similar question to this a few days ago which i have deleted as there were too many mistakes on my part and it lacked both detail and a clear issue.
Thanks
Alias /bias_experiment/static/ /var/www/bias_experiment/static/or yourSTATIC_URLshould be/static/, or these two will mismatch.