Re: django 1.9 - application does not

2015-12-30 Thread Fred Stakem
I had the same issue and I found it was coming from django-rest. I uncommented the app and it disappeared. Not sure the solution. On Thursday, December 24, 2015 at 1:32:11 AM UTC-5, Shekar Tippur wrote: > > Hello, > > I have a application on my laptop and I am trying to move it to AWS. > I have i

Re: django 1.9 - application does not

2015-12-27 Thread Sergiy Khohlov
Django toolbar does not work with 1.9 please comment it in and restart server 24 груд. 2015 19:36 "Shekar Tippur" пише: > Just for testing, I downgraded django to 1.8.4 > > # pip-3.4 install Django==1.8.4 > > You are using pip version 6.1.1, however version 7.1.2 is available. > > You should cons

Re: django 1.9 - application does not

2015-12-24 Thread Shekar Tippur
Just for testing, I downgraded django to 1.8.4 # pip-3.4 install Django==1.8.4 You are using pip version 6.1.1, however version 7.1.2 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Collecting Django==1.8.4 Downloading Django-1.8.4-py2.py3-none-any.wh

Re: django 1.9 - application does not

2015-12-24 Thread Shekar Tippur
$ pip freeze Django==1.9 django-bootstrap3==6.2.2 django-debug-toolbar==1.4 django-rest-swagger==0.3.4 djangorestframework==3.3.2 djangorestframework-recursive==0.1.1 jsonpickle==0.9.2 PyYAML==3.11 requests==2.9.1 sqlparse==0.1.18 -- You received this message because you are subscrib

Re: django 1.9 - application does not

2015-12-24 Thread Shekar Tippur
Tim, I tried with --nothreading and I get the same error. $ python3.4 manage.py runserver --nothreading 0.0.0.0:8000 Traceback (most recent call last): File "manage.py", line 10, in execute_from_command_line(sys.argv) File "/home/ctippur/db/db_virtual/local/lib/python3.4/site-packa

Re: django 1.9 - application does not

2015-12-24 Thread Tim Graham
There's a bug in Django 1.9 that hides the actual exception when you use runserver. Try adding runserver --nothreading to see the actual exception. It will be fixed in Django 1.9.1 which will likely be released next week. On Thursday, December 24, 2015 at 10:23:03 AM UTC-5, Sergiy Khohlov wrote:

Re: django 1.9 - application does not

2015-12-24 Thread Sergiy Khohlov
I've had a similar problem. And use next way to solve: 1) Create new project at the new directory and verify that Django 1.9 is OK 2) Check (compare ) setting related to the TEMPLATE in setting.py file 3) Disable installed add modules At this step I detected that django-debug-toolbar a

Re: django 1.9 - application does not

2015-12-24 Thread AJ Abrahamsen
This person had a similar problem. Hopefully this can give you some clue to help fix your issue: http://stackoverflow.com/questions/26276397/django-1-7-upgrade-error-appregistrynotready-apps-arent-loaded-yet -- You received this message because you are subscribed to the Google Groups "Django

django 1.9 - application does not

2015-12-23 Thread Shekar Tippur
Hello, I have a application on my laptop and I am trying to move it to AWS. I have installed django 1.9 on aws server under a virtualhost and scp'd all my local files to aws server. Under the virtualhost, when I try to run the server, I get an error. $ python3.4 manage.py runserver 0.0.0.0:800