[mezzanine-users] Re: django-storages-redux mez: Error Finding Upload-Folder

2015-06-11 Thread Tom Longson
I am not sure why this is the case, but I found that manually cloning filebrowser-safe, and copying the filebrowser_safe folder into the python path got me around this frustrating issue. This doesn't make sense to me, but as soon as I pip uninstall filebrowser-safe, I am able to get everything

[mezzanine-users] What's version of python and Django is more compatible with new version of cartridge and mezzanine?

2015-06-11 Thread سید محمد رضا طباطبائی
hi i hava some problem with new version of django for installing cartridge and mezzanine like this $ python3 manage.py createdb --noinput /usr/local/lib/python3.3/dist-packages/Mezzanine-3.1.10-py3.3.egg/mezzanine/ utils/conf.py:51: UserWarning: You haven't defined the ALLOWED_HOSTS

Re: [mezzanine-users] Re: pip freeze insecure platform warning urllibe3

2015-06-11 Thread vikraw
While i changed the owner of the directory, I did not update python as currently the default on ubuntu is 14.04 is python 2.7.6 as many forums there are warning of breaking dependencies if updated. I did not see the */home/ubuntu/.cache/pip/http *directory on another ubuntu installation even

Re: [mezzanine-users] Re: pip freeze insecure platform warning urllibe3

2015-06-11 Thread Sam Kingston
The ~/.cache/pip directory is used by pip (Python's package manager) to store (cache) downloaded packages and wheels, so it can avoid downloading on the consecutive times you try to install a certain package. If pip cannot write to that directory (or any descendants), then it will disable its

[mezzanine-users] Re: What's version of python and Django is more compatible with new version of cartridge and mezzanine?

2015-06-11 Thread Sam Kingston
Please use the master branch of Mezzanine and Cartridge (unreleased as yet): $ pip install --upgrade -e git+https://github.com/stephenmcd/mezzanine.git#egg=Mezzanine-master $ pip install --upgrade -e git+https://github.com/stephenmcd/cartridge.git#egg=Cartridge-master Also good practice is to

[mezzanine-users] Re: What's version of python and Django is more compatible with new version of cartridge and mezzanine?

2015-06-11 Thread سید محمد رضا طباطبائی
pip install --upgrade -e git+https: //github.com/stephenmcd/cartridge.git#egg=Cartridge-master You are using pip version 6.0.8, however version 7.0.3 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Obtaining Cartridge-master from git+https:

Re: [mezzanine-users] Enable Mezzanine multilingual site support

2015-06-11 Thread Eduardo Rivas
Yep, only available in the development branch (which is very stable now). Documentation here: https://github.com/stephenmcd/mezzanine/blob/master/docs/multi-lingual-sites.rst. -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe

Re: [mezzanine-users] Enable Mezzanine multilingual site support

2015-06-11 Thread Lee H.
Thanks for the reply Eduardo I upgraded to the master branch, pip install git+https://github.com/stephenmcd/mezzanine.git, (which also upgraded django to 1.8), and I now get the error: Traceback (most recent call last): File manage.py, line 29, in module

[mezzanine-users] Enable Mezzanine multilingual site support

2015-06-11 Thread Lee H.
I want to use the Mezzanine multilingual site feature, so I can have different form labels and rich text content depending on whether my site is the en or fr version. I installed django-modeltranslation and added modeltranslation to my INSTALLED_APPS, also setting USE_MODELTRANSLATION = True,

[mezzanine-users] Issues with custom user model

2015-06-11 Thread Mario Gudelj
Hi guys, I built a site using the built in mezzanine.accounts app, but I've ran into some limitations with django's default user model and now I have to add a custom user model. I have added my custom user app, migrated DB with South and the runserver works. But when I try to access the site I

[mezzanine-users] Re: Issues with custom user model

2015-06-11 Thread Mario Gudelj
God, shoot me now! I had INSTALLED_APPS = (longerusernameandemail,) + INSTALLED_APPS in my settings the whole time. P: +61 2 9281 3315 M: +61 415 193775 E: ma...@twoblokeswithapostie.com W: www.twoblokeswithapostie.com On Fri, Jun 12, 2015 at 1:34 AM, Mario Gudelj