Re: Why aren't my flatpages working?

2007-08-08 Thread Jay Parlar

On 8/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I dunno. Never had a problem with them before. Lemme try the subdomain
> thing.

Also, make sure you've got all the correct templates and everything,
as described in the documentation. That's caused issues for me as
well.

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why aren't my flatpages working?

2007-08-08 Thread [EMAIL PROTECTED]

I dunno. Never had a problem with them before. Lemme try the subdomain
thing.

On Aug 8, 10:36 am, "Jay Parlar" <[EMAIL PROTECTED]> wrote:
> On 8/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
>
> > Unless it's the subdomain... I've got it set up as test.domain.com,
> > could that hose it? Should I just have domain.com?
>
> Not really sure :) All I know is that I've had 404s with flatpages
> before, and it's always because I forgot to change out the default
> "example.com" in Sites.
>
> Jay P.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why aren't my flatpages working?

2007-08-08 Thread Jay Parlar

On 8/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Unless it's the subdomain... I've got it set up as test.domain.com,
> could that hose it? Should I just have domain.com?

Not really sure :) All I know is that I've had 404s with flatpages
before, and it's always because I forgot to change out the default
"example.com" in Sites.

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why aren't my flatpages working?

2007-08-08 Thread [EMAIL PROTECTED]

Unless it's the subdomain... I've got it set up as test.domain.com,
could that hose it? Should I just have domain.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
-~--~~~~--~~--~--~---



Re: Why aren't my flatpages working?

2007-08-08 Thread [EMAIL PROTECTED]

I believe so. There's only one, and the domain matches the site
domain. In the DB, it has the ID 1. Not seeing anything wrong there.


On Aug 8, 10:28 am, "Jay Parlar" <[EMAIL PROTECTED]> wrote:
> On 8/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > OK, I've looked over this again:
> >http://www.djangoproject.com/documentation/flatpages/
>
> > I've got
> > MIDDLEWARE_CLASSES = (
> > 'django.middleware.common.CommonMiddleware',
> > 'django.contrib.sessions.middleware.SessionMiddleware',
> > 'django.contrib.auth.middleware.AuthenticationMiddleware',
> > 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
> > 'django.middleware.doc.XViewMiddleware',
> > 'classic.utils.lastseen.LastSeen',
> > )
>
> > django.contrib.flatpages is an installed app.
>
> > I can see it in the admin, and have the URL set to /about/
> > There's only one site, so it's selected.
>
> > But when I go to /about/ I 404.
>
> Do you have the domain set properly in the Sites app?
>
> Jay P.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Why aren't my flatpages working?

2007-08-08 Thread Jay Parlar

On 8/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> OK, I've looked over this again:
> http://www.djangoproject.com/documentation/flatpages/
>
> I've got
> MIDDLEWARE_CLASSES = (
> 'django.middleware.common.CommonMiddleware',
> 'django.contrib.sessions.middleware.SessionMiddleware',
> 'django.contrib.auth.middleware.AuthenticationMiddleware',
> 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
> 'django.middleware.doc.XViewMiddleware',
> 'classic.utils.lastseen.LastSeen',
> )
>
>
> django.contrib.flatpages is an installed app.
>
> I can see it in the admin, and have the URL set to /about/
> There's only one site, so it's selected.
>
> But when I go to /about/ I 404.


Do you have the domain set properly in the Sites app?

Jay P.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Why aren't my flatpages working?

2007-08-08 Thread [EMAIL PROTECTED]

OK, I've looked over this again:
http://www.djangoproject.com/documentation/flatpages/

I've got
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
'django.middleware.doc.XViewMiddleware',
'classic.utils.lastseen.LastSeen',
)


django.contrib.flatpages is an installed app.

I can see it in the admin, and have the URL set to /about/
There's only one site, so it's selected.

But when I go to /about/ I 404.


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---