Re: Mezzanine Gunicorn Problem

2013-09-09 Thread Mario Gudelj
What's the issue Kelvin? Is the gunicorn process dying? I remember having some issues with starting gunicorn and mezzanine and it was due to locale. Make sure you have a correct locale in the settings. You can run the locale command in the shell to obtain it it for the machine you're on: $ locale

Re: Mezzanine Gunicorn Problem

2013-09-09 Thread Kelvin Wong
> > This is the command (single line) that I am using for a Django app using > Gunicorn (and Supervisor). It is running with a virtualenv which explains > the python executable. > > /home/myapp/.virtualenvs/productionmyapp/bin/python > /home/myapp/webapps/production_fido/fido/manage.py run_guni

Mezzanine Gunicorn Problem

2013-09-08 Thread val_erie
Hello everyone, I am having a problem starting Mezzanine with Gunicorn. I used 'gunicorn myproject.wsgi:application' command and got ImportError: No module named myproject.wsgi, so I used export PYTHONPATH=$PYTHONPATH:/path_to_folder_where_myproject_is . After that in python shell I could imp