On Wed, Jul 04, 2012 at 11:44:50PM -0700, freewill wrote:
>Hello again Markus,
_o/
>I would like to ask you if you did try your code in a production enviroment
>with apache + mod_wsgi and if it really works for you.
Not that, but gunicorn+nginx.
>I figured out that mezzanine.forms app loads before my custom app even if
>mezzanine.forms is listed after my custom app in INSTALLED_APPS. I even
>tried to put my custom app on top in INSTALLED_APPS but no luck.
How did you figure?
Here's something from my settings.py in production:
INSTALLED_APPS = (
...
"django.contrib.sitemaps",
"django.contrib.staticfiles",
'captcha',
'mezzacaptcha',
"mezzanine.boot",
...
"mezzanine.forms",
...
)
--
mjt