Changes between Initial Version and Version 1 of Ticket #22930


Ignore:
Timestamp:
Jul 1, 2014, 5:23:27 AM (10 years ago)
Author:
Tim Graham
Comment:

I suspect this is some loading issue similar to #10405. It's probably fixed in 1.7 by the app loading refactor. Please reopen if you can test there and it's still an issue, although I think it's more likely you should use TicketClosingReasons/UseSupportChannels to get help.

Also, note that 1.4.5 has known security issues and you should upgrade to the latest minor release (1.4.13 as of this writing) ASAP.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22930

    • Property Resolutionduplicate
    • Property Status newclosed
  • Ticket #22930 – Description

    initial v1  
    1 When I set variable Debug to False in django==1.4.5, the server throws me a 500 error. I don't know what I'm doing wrong. I f I  set to True it doesn't have any problem.  My allowed hosts is like this
     1When I set variable Debug to False in django==1.4.5, the server throws me a 500 error. I don't know what I'm doing wrong. I f I  set to True it doesn't have any problem.  My allowed hosts is like this
     2{{{
    23ALLOWED_HOSTS = [
    34    'domain name',
    45    'ip-address', # Allow domain and subdomains
    56]
     7}}}
    68
    79My apache configuration is like this:
     10{{{
    811<VirtualHost *:80>
    912    WSGIDaemonProcess Vermonti python-path=/srv/www/app:/srv/www/app/ENV/lib/python2.7/site-packages
     
    1922    SetEnv DJANGO_SETTINGS_MODULE app.settings
    2023</VirtualHost>
     24}}}
Back to Top