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
0
votes
1 answer

How to set menus in Mezzanine Django

I have created a model.py file in which I define my classes like: from django.db import models from mezzanine.pages.models import Page class Author(Page): dob = models.DateField("Date of birth") class Book(models.Model): author =…
Tameen Malik
  • 1,258
  • 6
  • 17
  • 45
0
votes
1 answer

unable to find vcvarsall.bat

I have : OS: Microsoft Windows 7 (32bit) Microsoft Visual Studio 2010 I downloaded Mezzanine on my machine from it's official website. It's installation generate error unable to find unable to find vcvarsall.bat . I search for it's…
Tameen Malik
  • 1,258
  • 6
  • 17
  • 45
0
votes
1 answer

Mezzanine ImportError when running tests

I have recently upgraded the version of Django from 1.5.5 to 1.6.2 and Mezzanine to 3.0.9. When I run python manage.py test All the tests run without problem. But When I run project specific tests using python manage.py test Then I…
Deva
  • 433
  • 3
  • 11
0
votes
1 answer

Django template not loaded when deploy on openshift

Totally new to Openshift and has been following various stepbystep guides. Able to get django 1.6, Python 2.7 and Mezzanine 3.0.9 up with the application working - partially. For some reason, the template is not loaded, both if the template is…
green
  • 226
  • 2
  • 12
0
votes
1 answer

Unknown Column `comments_count`

I'm having a weird problem with one of my models. I have a model Podcast that inherits from a base model BCCFChildPage that has RatingField and CommentsField. Every other child model works except for Podcast. It's weird that it's only happening to…
koralarts
  • 2,062
  • 4
  • 30
  • 48
0
votes
1 answer

Mezzanine Django Framework createdb error on Max OSX 10.9.2

I want to build a django framework with mezzanine using python on my mac. from their site they have this simple steps to create a framework in your terminal. # Install from PyPI $ pip install mezzanine # Create a project $ mezzanine-project…
user2325481
0
votes
1 answer

Python Django-mezzanine run failed

I installed django+mezzanine+mysql+apache2+nginx. [Sun Mar 23 10:01:02.382418 2014] [authz_core:debug] [pid 1131] mod_authz_core.c(828): [client xxx.xxx.xxx.xxx:36626] AH01628: authorization result: granted (no directives) [Sun Mar 23…
0
votes
2 answers

Getting "ImproperlyConfigured: The SECRET_KEY setting must not be empty." error when deploying mezzanine 3.0.9 on openshift

I have been following this (http://appsembler.com/blog/django-deployment-using-openshift/) tutorial to deploy mezzanine 3.0.9 with python 2.7 and mysql 5.1 After deploy when I make the http request I am getting following error logs: [Sat Mar 22…
gauravdott
  • 420
  • 1
  • 5
  • 14
0
votes
1 answer

Mezzanine customizing Profiles

I have a project where I need to extend django's User. The way I did this initially (without Mezzanine) was to subclass Model into a custom Profile which had a one-to-one Field to django's User. Aditionally, to guarantee that each user always has a…
user1950164
0
votes
2 answers

404 on django app when address doesn't have extension (in mezzanine)

When I go to http://localhost:8000/getAndAnalyzePosts/index it 404s and adds a trailing slash (it does this regardless of whether I have APPEND_SLASH = True or APPEND_SLASH = False Going to http://localhost:8000/getAndAnalyzePosts/test doesn't work…
exrhizo
  • 141
  • 2
  • 13
0
votes
1 answer

Creating a Local Version of Mezzanine's Blog Homepage Template

I'm new to Django, and am using Mezzanine in order to create a basic blog website. One thing I wanted to achieve was using the supplied blog_post_list template as a base for the homepage. In the Mezzanine docs, it explains how to do this, however, I…
0
votes
1 answer

Displaying ManyToMany Fields in Django Template

Model: class Specialization(models.Model): SPECIALIZATION_TYPE = ( ('S','Specialty'), ('Ss','Sub-specialty') ) specialization_desc = models.CharField('Specialization',max_length=50,unique=True) specialization_type =…
splucena
  • 159
  • 1
  • 3
  • 14
0
votes
1 answer

Difficult time using Mezzanine on Heroku - issues with Procfile and dictionary Value Error

Using the following tutorials and github templates here, here, and here , I've spent the better part of the evening wrestling with django and mezzanine. Right now I've got a mezzanine-project, called uccdev which is working nicely when I run python…
gersande
  • 465
  • 1
  • 8
  • 25
0
votes
1 answer

Issues with page processors in Mezzanine

I am using page processors to use some dynamic data on some pages. I have successfully used this on some URL like 'test' but when I try to use it on home page it doesn't work. Code : Working -> @processor_for("test") def…
Inforian
  • 1,716
  • 5
  • 21
  • 42
0
votes
1 answer

Can't save model with href tag in Django admin

I am using mezzanine cms which uses django-tinymce to provide RichTextField, I put the link like this using both link and html editor:

Facebook

When I save it, it automatically turns…
pynovice
  • 7,424
  • 25
  • 69
  • 109