Ok so I was using the wrong version of django and python! I now noobie mistake lol. So I reinstalled my app in a new virtualenv running the same version of django and python as the app was created with, Django 1.7.4 and python 3.4. Anyway now it loads but it's loading the "Hello World" html code from the WSGI file? I think I didn't edit the WSGI file right or maybe my sys path is wrong? Here's the WSGI file after I edited it,
<h1>+++++++++++ DJANGO +++++++++++</h1>
<h1>To use your own django app use code like this:</h1>
import os
import sys
<h1></h1>
<h2>assuming your django settings file is at '/home/lonto81/mysite/settings.py'</h2>
path = '/home/lonto81/.virtualenvs/myvirtualenv/qblog'
if path not in sys.path:
sys.path.append(path)
<h1></h1>
os.environ['DJANGO_SETTINGS_MODULE'] = 'qblog.settings'
<h1></h1>
<h2>then, for django >=1.5:</h2>
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
<h2>or, for older django <=1.4</h2>
<h1>import django.core.handlers.wsgi</h1>
<h1>application = django.core.handlers.wsgi.WSGIHandler()</h1>
Thanks again for your help, so close but not there yet but I wont give up until I get this site up and running. Thanks again for your patience and all of your help.