Questions tagged [mezzanine]

Mezzanine is an open source content management platform built using the Django framework.

Mezzanine is an open source content management platform built using the Django framework. It features hierarchical pages, inline editing, scheduled publishing, blog importing, and more.

For more information visit the Mezzanine project website.

465 questions
3
votes
1 answer

OSError at /admin/pages/richtextpage/3/ [Errno 13] Permission denied: '/static'

I am creating pages from admin in mezzanine and in description of page I want to show some images but when I am giving the images path and trying to save it , the page is throwing this error. OSError at /admin/pages/richtextpage/3/ [Errno 13]…
Inforian
  • 1,716
  • 5
  • 21
  • 42
3
votes
1 answer

Installing Pillow, getting -Wunused-command-line-argument-hard-error-in-future

I cannot get pillow installed. (env)noah:cupalensic2 broinjc$ which cc /usr/bin/cc (env)noah:cupalensic2 broinjc$ cc --version Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn) Target: x86_64-apple-darwin13.1.0 Thread model: posix I…
broinjc
  • 2,619
  • 4
  • 28
  • 44
3
votes
2 answers

Mezzanine on Heroku

I'm trying to get a Mezzanine (Django) app up on Heroku. I have a custom theme in an app in the project. I'm getting this error from the herokuapp site: Application Error An error occurred in the application and your page could not be served.…
Charles
  • 545
  • 2
  • 7
  • 14
3
votes
2 answers

Multiple storage engines for django media: prefer local, fallback to CDN

I have a django/mezzanine/django-cumulus project that uses the rackspace cloudfiles CDN for media storage. I would like to automatically serve all static files from the local MEDIA_ROOT, if they exist, and only fallback to the CDN URL if they do…
evilchili
  • 73
  • 7
3
votes
0 answers

Extending search functionality to translated fields (Mezzanine)

I have been using this gist to add parallel translations to Mezzanine (version 1.4.16): https://gist.github.com/3596248 Mezzanine doesn't by default include the translated fields in searches. It looks as though it is necessary to tell Mezzanine…
Soz
  • 957
  • 1
  • 5
  • 9
3
votes
1 answer

Use mezzanine together with angularjs

I'm setting up a simple website, and I wanted to integrate angularjs for the UI. However, it seems the CMS takes over everything and serves up everything, including anything I want served up through angularjs. My urls.py file: urlpatterns =…
Stephen M
  • 809
  • 1
  • 10
  • 21
3
votes
2 answers

Mezzanine CMS using MongoDB ?

Looks Mezzanine is one of the best Django based CMS. I would like to use it in my project but want to use NoSQL DB. Did some research but could not find a straight answer to it. Any documents on how to use MongoDB for Mezzanine? Thanks in advance
user2777473
  • 3,736
  • 5
  • 26
  • 39
3
votes
1 answer

Page areas in Mezzanine

I am new in Mezzanine CMS and i need to develop a company website using it. The problem is that the home page has different sections or areas that i want to administrate using the admin. Areas like the team members or another describing the…
user2121530
  • 107
  • 1
  • 4
  • 8
3
votes
0 answers

Custom Page fields in Mezzanine not displaying in template

I am building a CMS in Mezzanine, and all in all I am extremely impressed with the system. I can't tell you how many CMS systems I have attempted to customize in the past and given up in total frustration. All in all this has been smooth as silk.…
3
votes
0 answers

how to adding mezzanine blog apps to existing django apps

guys I just installed Mezzanine and would like to use it for a "blogs" section in a Django project. how to sett into my settings.py and urls.py to use mezzanine blog? i want myproject.com/blog using mezzanine blog apps
user2196581
  • 31
  • 1
  • 1
3
votes
1 answer

Launching a Mezzanine site live

I'm new to mezzanine and Django. I have set up a site, everything is working but I can only launch the server on "development". I would like to access de site on the port 80 on the internet instead of internally, as I have no way other than…
3
votes
1 answer

Webfaction Mezzanine ALLOWED_HOSTS 200 error

So my site shows up fine with DEBUG = True, but I get a 200 server error when I change it to False. I've been reading around and saw that 500 errors are common but I can't find anything on a 200 error. My local_settings.py file doesn't have an…
user2392322
  • 31
  • 1
  • 2
3
votes
2 answers

How to access Django/Mezzanine gallery content in a different page template

Can I access content from Mezzanine page gallery in a template I use for another page? For example I have a gallery page that shows a collection of images I have added in Django Admin to the "Media Library". The page works fine and shows all of the…
3
votes
0 answers

Django 1.5 + django-ajax-upload-widget - jQuery $.ajax handle success response as error

I'm using django 1.5 + Mezzanine + django-ajax-upload-widget. I have the problem with the django-ajax-upload-widget. So, when I trying to choose file in form I have an upload error. As I undestand (by using js debugger) - the problem is that jQuery…
3
votes
2 answers

How to deploy mezzanine on heroku?

I have created a mezzanine project and its name is mezzanine-heroku-test I create a Procfile that has the content as follow: web: python manage.py run_gunicorn -b "0.0.0.0:$PORT" -w 3 Next, I access to the website to test and I receive the error:…
Thinh Phan
  • 655
  • 1
  • 14
  • 27