Hi,
I'm having trouble pointing my wsgi to Django with errors. I've created the virtualenv manually, installed django manually via pip, cloned the files I require for the website via github and proceeded to the Web tab to let the wsgi point to Django etc. To see if it is working, I tried to hit migrate on Bash. I get a couple of errors saying Django.urls include not found.
wsgi.py
> # +++++++++++ DJANGO +++++++++++
> # To use your own Django app use code like this: import os import sys
>
> path =
> '/home/rickson/.virtualenvs/ypfvirtualenv/python-project/mysite' if
> path not in sys.path:
> sys.path.append(path)
>
>
> os.environ("DJANGO_SETTINGS_MODULE", "mysite.settings")
>
> ## Uncomment the lines below depending on your Django version
> ###### then, for Django >=1.5: from django.core.wsgi import get_wsgi_application application = get_wsgi_application()
> ###### or, for older Django <=1.4
> #import django.core.handlers.wsgi
> #application = django.core.handlers.wsgi.WSGIHandler()
Here are the screenshots of my Web section, Files Section, And errors