Hello,

I am using Django 0.96 and I am currently having problems getting
flatpages middleware to work under Apache with mod_python. I am pretty
sure this is mod_python related since flatpages work fine using the
development server.

I have found at least one thread the mentions this problem, it's from
Aug 2006. The OP said he would take a look to see what the problem was
but did not post a follow-up.

http://groups.google.com/group/django-users/browse_thread/thread/eddadaacfc34aef9/194ee9abebecf6b6?lnk=gst&q=flatpages&rnum=5

The gist of it is that instead of rendering the flatpage it just keeps
rendering the 404 page when I run it on the production server.
However, using the development server flatpages work as expected. If
it helps any, I also have handler404 and handler500 point to a custom
handler.

below is the custom handler404:

def page_not_found(request):
    c = getDefaultContext(request)
    t = loader.get_template('404.thtml')
    return HttpResponse(t.render(c))

Note I am using .thtml extension for templates only because Eclipse
with WTP chokes when editing Django templates.

getDefaultContext() above sets up the Context object containing
important variables used in the templates.

Can anyone here provide pointers on how to get flatpages to work
properly under Apache and mod_python?

One other thing... Is it possible to use Textile for flatpages too?

http://cheeseshop.python.org/pypi/textile

Thanks in advance.
--
_nimrod_a_abing_

http://abing.gotdns.com/
http://www.preownedcar.com/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to