I just had the same problem, because my site.id was not 1 but 2 as I
discovered with
the shell...
On 18 août, 22:24, gegard wrote:
> > I cannot get flatpages to work on my site
>
> ... which, I should have said, is in Django 1.
> I cannot get flatpages to work on my site
... which, I should have said, is in Django 1.1.
Geoff
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send em
I cannot get flatpages to work on my site, although I have done all
that I can see in the documentation, and would like guidance.
I give a 6-step short description of what I've done and what happened,
in case anyone recognizes a glaring mistake or lack in what I've done.
Step 6 is it
Greetings,
I am designing an application that is very simple like flatpages but I
need the ability to associate a menu with the content which will be
done through the URL (i.e. example.com/products/widget2009 would
invoke the products menu and the widget2009 static page).
I expect these pages
I think I got your concept, converting all MEDIA_URL to corresponding
url before displaying.
But I still curious to know where should I put this code in the
project?
I've been thinking and can only come up with a way, by creating a new
middleware replicating FlatpageFallbackMiddleware
but instead
Please ignore the last line..
On Jun 25, 2:40 pm, Rama Vadakattu wrote:
> you can put {{MEDIA_URL}}
>
> but while displaying instead of displaying it directly just do the
> below
>
> from django.template.loader import render_to_string
> from django.template import Context, Template
>
>
you can put {{MEDIA_URL}}
but while displaying instead of displaying it directly just do the
below
from django.template.loader import render_to_string
from django.template import Context, Template
t = Template("flat page content goes here")
newflatpage = t.render({},context_instance=RequestCon
In the content of my flatpage, there's a picture to be displayed that
it was stored in django media folder. I want to link to this file
without having to specify its url directly. Instead, I want to use
something like {{MEDIA_URL}} when editing the content via django-
admin. I know I can use it no
On Tue, May 5, 2009 at 12:06 AM, Brian Neal wrote:
>
> >> On May 4, 10:28 am, Ronghui Yu wrote:
> >> > Hi,All,
>
> >> > I am going to use Flatpages app for those simple pages. And everything
> >> > works fine when settings.DEBUG is True, but when it is
thank you!
--~--~-~--~~~---~--~~
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
django-users+unsubscr
On Thu, Jun 4, 2009 at 12:52 PM, josebrwn wrote:
>
> Hi,
>
> I would like to have a list of recent flatpages. I'm doing something
> like:
>
> class LatestCmsNode(template.Node):
>def render(self, context):
>context['lat
Hi,
I would like to have a list of recent flatpages. I'm doing something
like:
class LatestCmsNode(template.Node):
def render(self, context):
context['latest_cms'] = FlatPage.objects.all()[:2]
return ''
but this orders the re
Hi, I'm looking for some help getting Apache running correctly with
FlatPages, as well running with multiple sites on the same server.
First the FlatPages problem. Everything's fine on my dev box (WinXP), but
on my production box (Debian) the Flatpages only work when running the
djan
Hello,
The thread link didn't go through.
On May 7, 12:25 pm, branesks wrote:
> Follow this thread.
>
> Sent from my iPhone
>
> On May 7, 2009, at 12:09, Jesse wrote:
>
>
>
> > Hello,
>
> > I've implemented both django-cms and flatpages, but c
Follow this thread.
Sent from my iPhone
On May 7, 2009, at 12:09, Jesse wrote:
>
> Hello,
>
> I've implemented both django-cms and flatpages, but can not get
> tiny_mce to display in either. My
>
> URLs.py file:
>(r'^tinymce/', include('
Hello,
I've implemented both django-cms and flatpages, but can not get
tiny_mce to display in either. My
URLs.py file:
(r'^tinymce/', include('tinymce.urls')),
from django.conf import settings
if settings.DEBUG:
urlpatterns += patterns('
e them to a simple one and
> see if the problem still there.Thanks
>
>
> On Tue, May 5, 2009 at 12:06 AM, Brian Neal wrote:
>
>>
>> On May 4, 10:28 am, Ronghui Yu wrote:
>> > Hi,All,
>> >
>> > I am going to use Flatpages app for those simple
> Hi,All,
> >
> > I am going to use Flatpages app for those simple pages. And everything
> > works fine when settings.DEBUG is True, but when it is turned to False,
> > a URL not configured in urlpatterns will trigger 500, not 404.
>
> Do you have a 404.html er
That's something I didn't try. It is a good idea to figure out what the
problem is.Thanks
On Tue, May 5, 2009 at 12:01 AM, Masklinn wrote:
>
> On 4 May 2009, at 17:28 , Ronghui Yu wrote:
> > I don't quite understand why this happens, and how to solve it.
> > Has anybody ever met this problem? An
On May 4, 10:28 am, Ronghui Yu wrote:
> Hi,All,
>
> I am going to use Flatpages app for those simple pages. And everything
> works fine when settings.DEBUG is True, but when it is turned to False,
> a URL not configured in urlpatterns will trigger 500, not 404.
Do you have a
On 4 May 2009, at 17:28 , Ronghui Yu wrote:
> I don't quite understand why this happens, and how to solve it.
> Has anybody ever met this problem? And any suggestions?
>
> Thanks in advance.
>
Setup a local smtp sink and activate the "mail on 500" thing, to see
why it's erroring out?
--~--~
Hi,All,
I am going to use Flatpages app for those simple pages. And everything
works fine when settings.DEBUG is True, but when it is turned to False,
a URL not configured in urlpatterns will trigger 500, not 404. This
happens on both Apache2 and the Django native testing server. Here is
some
Looks good. Thanks :)
On 21 Apr, 14:31, Tom Evans wrote:
> On Tue, 2009-04-21 at 06:02 -0700, Simon wrote:
> > I'm using Django flatpages for all the "one-off" pages on my website,
> > but I'd like to create a "lite" version of the site for iPh
On Tue, 2009-04-21 at 06:02 -0700, Simon wrote:
> I'm using Django flatpages for all the "one-off" pages on my website,
> but I'd like to create a "lite" version of the site for iPhone users
> (for example) which would use a different style sheet and
I'm using Django flatpages for all the "one-off" pages on my website,
but I'd like to create a "lite" version of the site for iPhone users
(for example) which would use a different style sheet and shorten the
site menu (by missing off several of the least used menu
Oh. Ok, I just read the docs. I'm going to use process_request.
Thanks a bunch!
--~--~-~--~~~---~--~~
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.c
Same principal stands; you'll need to use middleware to check the current
user has what they need on their session and interrupt the request if they
don't.
If that doesn't make sense, read up on what middleware can do for you.
On Wed, Apr 1, 2009 at 4:47 PM, Wiiboy wrote:
>
> Sorry, should've p
Sorry, should've pointed out: I'm not using Django's user system,
because I've got a PHP forum that I have to integrate with.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group
I'd like make them available on flatpages,
> but I have to be able to check whether the user is logged in.
>
> Can I do that?
http://www.djangosnippets.org/snippets/136/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the G
Hi,
I've got a site where users must be logged in to view any pages.
Logged in users may write articles for the newsletter, and upload
them. I then convert the article to HTML (manually), and make it
available for other users. I'd like make them available on flatpages,
but I have to
Never mind. Things are working fine. There was something wrong with my
default.html template.
On Mar 5, 8:10 am, Kyle Hayes wrote:
> Does it matter if I specify a port number for the site domain in Sites
> from the Admin panel for my flatpages to work? I'm really having a
> toug
Does it matter if I specify a port number for the site domain in Sites
from the Admin panel for my flatpages to work? I'm really having a
tough time getting these flatpages to display.
Thanks,
Kyle
--~--~-~--~~~---~--~~
You received this message because yo
Hi Trevor,
> I am building a bilingual cms type web site using Flatpages and django
> admin to obviously input the content. I am using django-multilingual.
> I need to be able to swap languages from one to another remembering
> the page the user is on, I am aware of set_language and
Hi everyone,
I am building a bilingual cms type web site using Flatpages and django
admin to obviously input the content. I am using django-multilingual.
I need to be able to swap languages from one to another remembering
the page the user is on, I am aware of set_language and I created a
ti work so has
> anyone got a nice method for doing this?
>
> Cheers.
>
> Doug
Don't understand the question. There are no templates included with
flatpages, you supply them yourself. So just put the tag into the
template you write.
--
DR.
--~--~-~--~~~---
I'm just starting to get my head around inclusion tags and have hit a
roadblock.
How on earth do I include them into a Flatpage base template? I don't
want to have to dig into the flatpage code to make ti work so has
anyone got a nice method for doing this?
Cheers.
Doug
--~--~-~--~
urrent_site':current_site})
This has nothing to do with the problem at hand, since flatpages don't
call your own views.
[...]
> and at the moment of viewing a flatpage, the title doesn't show, i
> think taht the reason is because i've passed de current_site object
> l
nd this template por
evereting at mi web site.
this is the template code:
{% block title %}{{current_site.name}}{% endblock %}
When i have the defatul.htlm page for flatpages, i have this:
{% extends "doorsFront/default_index.html" %}
{% block title %}{{current_site.name}} My page
nd this template por
evereting at mi web site.
this is the template code:
{% block title %}{{current_site.name}}{% endblock %}
When i have the defatul.htlm page for flatpages, i have this:
{% extends "doorsFront/default_index.html" %}
{% block title %}{{current_site.name}} My page
Hi,
check this out.
http://code.djangoproject.com/ticket/6932
adi
On 21.01.2009, at 16:53, Gordon wrote:
>
> Hi
> I've just started to use Django and have been using the flatpages
> plugin for serving static pages. Does anyone know how or a plugin that
> will generate a
Hi
I've just started to use Django and have been using the flatpages
plugin for serving static pages. Does anyone know how or a plugin that
will generate a content's tree from the URLs?
e.g.
/staff/
/staff/management/
/staff/clerical/
/staff/technical/
/projects/
/projects/ace/
/proje
On Wed, Oct 22, 2008 at 6:14 AM, erikcw wrote:
>
> Hi all,
>
> I'm working on a project that uses flatpages pretty heavily. I was
> wondering if there was a way to use named urls with flatpages so that
> I can use reverse() in my other views and {% url flat_privacy_poli
> It isn't a bug. Read the docs. Create yourself an empty 404.html and
> 500.html file in your templates directory and your flatpage will work
> with DEBUG=False.
You are so right!! :) It worked like a charm!
I neglected this box:
"Ensure that your 404 template works
Note that the FlatpageFallb
ratch to reproduce my error. I used the
> instructions provided in the latest documentation to add FlatPages and
> an Admin application.
>
> When I add a FlatPage for my site index page (URL = /) it works fine.
>
> Then, if I change the DEBUG flag to False in my settings.py, the ind
Hi Brian. Thank you.
I've read the documents you pointed out. But the issue is not on
404/500 html templates, but in the DEBUG setting.
I've started a project from scratch to reproduce my error. I used the
instructions provided in the latest documentation to add FlatPages an
your problem. Did you read this:
http://docs.djangoproject.com/en/dev/ref/contrib/flatpages/#ref-contrib-flatpages
Note the 4 step installation. The docs don't say to add anything to
your URLs.
> If I hit, localhost:8000 it __works fine__ BUT if I set DEBUG = False
> in setti
Thanks a lot, Jeff FW and Dmitry Dzhus.
I'm using the most recent release version of Django (installed 5 days
ago). 'django.contrib.flatpages' and 'django.contrib.sites' are
listed in my INSTALLED_APPS.
'middleware.FlatpageFallbackMiddleware' is in my
MIDDLEWARE_CLASSES.
My urls.py WAS l
Nuno Machado wrote:
> If I put / in the URL field, I need to write "mysite.com//" to get
> access to my index page. This is not good for visitors!
It works fine for me when URL of flatpage is just slash, I type in
site.com and see my flatpage. Probably your Django installation is a bit
old or mi
Nuno,
"Yes, I do. It's a default setting." Never hurts to check--just
because it's default, doesn't mean you haven't unset it :-)
I just ran a very simple test, using a project that I use for testing
Django apps--which I had never used flatpages in. I added
py?
>
> http://docs.djangoproject.com/en/dev/ref/middleware/#module-django.mi...
>
> On Dec 9, 7:29 pm, Nuno Machado <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > I'm using flatpages to display some static content in a site. The
> > "about" pag
Do you have CommonMiddleware enabled in your settings.py?
http://docs.djangoproject.com/en/dev/ref/middleware/#module-django.middleware.common
On Dec 9, 7:29 pm, Nuno Machado <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm using flatpages to display some static content in a site. T
Hi,
I'm using flatpages to display some static content in a site. The
"about" page is working flawlessly (URL = mysite.com/about) but now
I'm trying to define the index (URL = mysite.com) using flatpages.
I'm having troubles defining the URL in the administration pane
I used DEBUG_PROPAGATE_EXCEPTIONS variable and thanks to this found a bug
in my application.
On Sunday 30 of November 2008 12:22:25 Grzegorz Szymański wrote:
> Thank you for the tip. It works well.
>
> I have problem with processing flat pages.
> When debug is switched to True the error appear in
Thank you for the tip. It works well.
I have problem with processing flat pages.
When debug is switched to True the error appear in db with following content:
Traceback (most recent call last):
File "/usr/local/lib/python2.6/site-packages/django/core/handlers/base.py",
line 86, in get_respons
On Sun, 2008-11-23 at 20:26 -0800, watusee wrote:
> Picture a site with a flatpage at the root. This root flatpage in the
> admin tool has a "/" for the URL. The root flatpage gets into a
> redirect loop. All other flatpages except the root flatpage work fine.
> If Append
Picture a site with a flatpage at the root. This root flatpage in the
admin tool has a "/" for the URL. The root flatpage gets into a
redirect loop. All other flatpages except the root flatpage work fine.
If Append_Slash is set to false, this perplexing behavior no longer
occurs an
On Tue, 2008-10-21 at 14:14 -0700, erikcw wrote:
> Hi all,
>
> I'm working on a project that uses flatpages pretty heavily. I was
> wondering if there was a way to use named urls with flatpages so that
> I can use reverse() in my other views and {% url flat_privacy_policy
Hi all,
I'm working on a project that uses flatpages pretty heavily. I was
wondering if there was a way to use named urls with flatpages so that
I can use reverse() in my other views and {% url flat_privacy_policy
%} in my templates.
I haven't been able to find anything helpful in t
Try searching for 404 on http://docs.djangoproject.com -- there's both
flatpages-specific information on how to deal with 404 errors and also
how to handle it in general in your django apps. In general, try
searching the django docs site first -- there's a lot of good info
ther
>
> Yeps. But use {% extends "base.html" %} instead - notice the quotes.
Aie! How could I miss that? :(
Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, se
On 16 oct, 12:32, chiggsy <[EMAIL PROTECTED]> wrote:
> If I am using flatpages, can i have my flatpages/default.html inherit
> from my sites base.html?
>
> I've a template dir, with a subdirectory "flatpages" and file
> "default.html" inside that subd
If I am using flatpages, can i have my flatpages/default.html inherit
from my sites base.html?
I've a template dir, with a subdirectory "flatpages" and file
"default.html" inside that subdir.
Now, in default.html the first line is {%extends base.html%} which is
in the d
Hi All,
I am newer in Django Web Framework. I am very curious to know the
following
How to handle error pages and flat pages?
Example : Error : 404
Error : Page not found.
Ravi Hingarajiya
--~--~-~--~~~---~--~~
You received this message becaus
There are a few fairly recent threads touching this issue - including
one of mine - but I'd like to ask a new question.
The FlatPage model requires an explicity defined - ie hard-coded - URL
and get_absolute_url() is set equal to this hard-coded URL (eg "/
about/").
For my purposes I needed to a
etup
> correctly and is serving static content.
Okay. I am using TinyMCE with many textareas on my site, however I
have not tried it with flatpages yet, so I can't vouch for those
instructions on the wiki. Can you activate it on a "normal" model in
the admin area? That might
> So you did this
> part?http://code.djangoproject.com/wiki/AddWYSIWYGEditor#UsingTinyMCEwithf...
>
> Do you have MEDIA_URL and MEDIA_ROOT setup correctly in settings.py?
> Are you using the development server? Do you have that setup to server
> static content?
yeah see my previous post. This i
On Oct 5, 9:35 pm, Bobby Roberts <[EMAIL PROTECTED]> wrote:
> > Did you see this:
>
> >http://code.djangoproject.com/wiki/AddWYSIWYGEditor
>
> yeah i saw that and tried to follow it. Here's what i did:
>
> 1. d/l tinymce
> 2. uploaded to /static/admin/js/tiny_mce (i have static setup as an
>
> Did you see this:
>
> http://code.djangoproject.com/wiki/AddWYSIWYGEditor
yeah i saw that and tried to follow it. Here's what i did:
1. d/l tinymce
2. uploaded to /static/admin/js/tiny_mce (i have static setup as an
app to serve static files)
3. I created a textarea.js file as instructed
On Oct 4, 3:34 pm, Bobby Roberts <[EMAIL PROTECTED]> wrote:
> hi group. I need some help getting tinymce installed for flatpages in
> admin. I'm serving static content from an application called /static/
> with tinymce located in /static/js/tiny_mce/. I have read the d
On 5 oct, 11:30, Erik Allik <[EMAIL PROTECTED]> wrote:
>
> what if I did the from django.core.urlresolvers import reverse part in
> the function itself that gets called?
>
> def my_flatpage_url(o):
>from django.core.urlresolvers import reverse
>return '%s%s' % (reverse('my-site-index'), o.
Small postscript to the above:
On 21 August, Jannis Leidel (http://jannisleidel.com/) posted that he
was using something like Erik's code:
from django.core.urlresolvers import reverse
ABSOLUTE_URL_OVERRIDES = {
'coltrane.entry': lambda o: reverse('coltrane_entry_detail',
kwargs={
Malcolm,
Thanks, your explanation is clear for me and I certainly don't need to
live dangerously - the conventional usage of ABSOLUTE_URL_OVERRIDES
works fine for me. I was only trying to satisfy my curiosity about
using reverse() because I've read a number of posts from James Bennett
and others s
Malcolm,
what if I did the from django.core.urlresolvers import reverse part in
the function itself that gets called?
def my_flatpage_url(o):
from django.core.urlresolvers import reverse
return '%s%s' % (reverse('my-site-index'), o.url)
ABSOLUTE_URL_OVERRIDES = {
'flatpages.flatpage'
On Sun, 2008-10-05 at 12:30 +0300, Erik Allik wrote:
> Malcolm,
>
> what if I did the from django.core.urlresolvers import reverse part in
> the function itself that gets called?
>
> def my_flatpage_url(o):
>from django.core.urlresolvers import reverse
>return '%s%s' % (reverse('my-si
in Js, "document.URL" has the same function as get_ab_url().
--
真正的杰出,不是妙用规则的错层,而是极致的偏执于信念
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-use
On Sun, 2008-10-05 at 00:50 -0700, John Allen wrote:
> Erik, Malcolm,
>
> Thanks for two very interesting answers - but which one is correct?
> Malcolm, you are saying, in effect, that the code in Erik's post can
> never work in the settings file?
Even if it does work by accident, it would not
Erik, Malcolm,
Thanks for two very interesting answers - but which one is correct?
Malcolm, you are saying, in effect, that the code in Erik's post can
never work in the settings file?
John
--~--~-~--~~~---~--~~
You received this message because you are subscribed
On Sat, 2008-10-04 at 09:42 -0700, John Allen wrote:
[...]
> This works fine but I am wondering: can the function in
> ABSOLUTE_URL_OVERRIDES make use of reverse(), so as to avoid hard-
> coding the "/cms" into the setting?
No, you can't do this. The rule is that you cannot use any pieces of
Dja
from django.core.urlresolvers import reverse
def get_flatpage_absolute_url(o):
return '%s%s' % (reverse('site-index'), o.url)
ABSOLUTE_URL_OVERRIDES = {
'flatpages.flatpage': get_flatpage_absolute_url
}
Actually I think this would work too:
ABSOLUTE_URL_OVERRIDES = {
'flatpag
hi group. I need some help getting tinymce installed for flatpages in
admin. I'm serving static content from an application called /static/
with tinymce located in /static/js/tiny_mce/. I have read the docs on
creating an admin.py file and have done that as well but it's not
s
On Sep 22, 8:59 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
> Chris wrote:
> > I have various global values, like SITE_NAME, defined in my
> > settings.py. How would you make settings available inside Flatpage
> > templates? For non-flatpages, I'm currently impor
Chris wrote:
> I have various global values, like SITE_NAME, defined in my
> settings.py. How would you make settings available inside Flatpage
> templates? For non-flatpages, I'm currently importing settings in my
> view and explicitly passing it in render_to_response(). Do Flat
I have various global values, like SITE_NAME, defined in my
settings.py. How would you make settings available inside Flatpage
templates? For non-flatpages, I'm currently importing settings in my
view and explicitly passing it in render_to_response(). Do Flatpages
allow you to specify what
u for Django flatpages" described here:
http://blog.foozia.com/blog/2007/jul/29/simple-menu-django-flatpages/
The complete working code now looks like this:
from django.template import Library, Node
from django.contrib.flatpages.models import FlatPage
from django.contrib.sites.models import Site
I'm a newcomer to django but so far most things seem to work nicely.
One detail which has left me baffled is how to get working urls for
flatpages used in my site. For example, take a flatpage for which the
url field is set to "/about/"
The site as a whole has URLs of
HI all,
Just testing the Flatpages functionality out of django and found out
that when the default.html template is missing, the error is not
showing on the default django error way, but a simple stack error.
Don't know if this is a bug. I'm using 0.97-pre-SVN-8012.
My flat page work
I just got started with Django and not before long I was thinking the
same as you. So I wrote this blog post:
http://overtag.dk/wordpress/2008/07/tip-extending-django-flatpages/
It's really simple, but quite a valuable technique, I think. The main
idea is: Instead of extending the ori
I need to add some fields to flatpage model. (like header image)
is there a clean way to do this?
I saw it come up before, and one comment was "model subclassing is not
supported." So now that it is supported... I am going to learn that it wont
help me with this problem?
Carl K
--~--~--
l
for the menus and such work great. However, when I do the exact same
thing with a flatpage, nothing gets translated in the base template.
The introduction.html and flatpages/default.html are nearly the same,
except that my page_title and content blocks are actual content in
introduction.html an
Is there any way to type template tags into the admin form field for
Flatpages content and have them interpreted as template tags (instead
of text to display) ?
IF this is possible, then the next question would be to define some
python dictionaries inside the flatpage contentthis is all to
> Is this possible?
Short answer: No. (At least I can't see anyway to accomplish it.)
On the other hand, the flatpages code is really quite straightforward.
views.py is 46 lines and models.py is only 36 lines. Why not grab a
copy, possibly rename it to avoid confusion, and h
change the views. Most of the website is flatpages.
Is there a way to use Mako templates with flatpages without changing
the Django source (flatpage views). I want to have the Django
framework untouched and all the configurations, code etc. within my
project folder.
Is this possible?
Regards,
Mark
On 4/24/08, Rodney Topor <[EMAIL PROTECTED]> wrote:
>
>
>
> > Is Flatpages required to display every static HTML page? It seems to
> > require a fair bit of work by the programmer, and requires additional
> > tables and rows in the database. I guess it's si
On 4/24/08, Rodney Topor <[EMAIL PROTECTED]> wrote:
>
> Is Flatpages required to display every static HTML page? It seems to
> require a fair bit of work by the programmer, and requires additional
> tables and rows in the database. I guess it's simpler for the
>
Is Flatpages required to display every static HTML page? It seems to
require a fair bit of work by the programmer, and requires additional
tables and rows in the database. I guess it's simpler for the
programmer than writing a new view for every static HTML page, though
this would not re
Te two items that might be different between the servers is that one
doesn't have DEBUG set to false or doesn't have flatpages installed
properly. On my development servers in order not to have to change the
site name and url when I launch the site, I have my development
computer under
configs are nearly identical, do a diff and see what *is* the
> > difference between the two? Are the two running the same django versions?
>
> > bfrederi wrote:
> > > I am using flatpages on a production box, and whenever I don't set
> > > DEBUG to True in the se
al, do a diff and see what *is* the
> > difference between the two? Are the two running the same django versions?
>
> > bfrederi wrote:
> > > I am using flatpages on a production box, and whenever I don't set
> > > DEBUG to True in the settings.py file, the
f the configs are nearly identical, do a diff and see what *is* the
> difference between the two? Are the two running the same django versions?
>
>
> bfrederi wrote:
> > I am using flatpages on a production box, and whenever I don't set
> > DEBUG to True in the settings.
If the configs are nearly identical, do a diff and see what *is* the
difference between the two? Are the two running the same django versions?
bfrederi wrote:
> I am using flatpages on a production box, and whenever I don't set
> DEBUG to True in the settings.py file, the middl
101 - 200 of 334 matches
Mail list logo