Page 1 of 1
Is it possible to have more than one page set to be the default page?
Posted: Wed Jun 07, 2006 5:40 pm
by mikem
Hi,
I changed the default page, and the original page set as the default remained checked as the default. Now both are checked.
Maybe I've stumbled onto a bug in version 0.13?
Mike
Re: Is it possible to have more than one page set to be the default page?
Posted: Thu Jun 08, 2006 11:29 pm
by Elijah Lofgren
mikem wrote:
I changed the default page, and the original page set as the default remained checked as the default. Now both are checked.
Maybe I've stumbled onto a bug in version 0.13?
I can't seem to reproduce it with either 0.13 or 1.0-svn. Was there anything special that you did when changing the default page?
Can you still reproduce this problem?
Re: Is it possible to have more than one page set to be the default page?
Posted: Fri Jun 09, 2006 12:56 am
by mikem
Hmm. The only thing I can think of that may have had an impact is that I deleted the page that was, at the time, the default page just before I set the new default page.
The toggle still works -- changing the default toggles off the previous default. But I still have the original problem...there are two pages listed as the default, one of which can't be toggled off.
Re: Is it possible to have more than one page set to be the default page?
Posted: Fri Jun 09, 2006 1:36 am
by Elijah Lofgren
mikem wrote:
Hmm. The only thing I can think of that may have had an impact is that I deleted the page that was, at the time, the default page just before I set the new default page.
The toggle still works -- changing the default toggles off the previous default. But I still have the original problem...there are two pages listed as the default, one of which can't be toggled off.
Hmm.. It shouldn't be possible to delete the default page. It isn't in the SVN version at least.
Re: Is it possible to have more than one page set to be the default page?
Posted: Fri Jun 09, 2006 3:27 am
by calguy1000
Well, it can be fixed with a simple sql query or two:
a) find the name of the bad one
Code: Select all
SELECT content_name,default_content FROM cms_content where default_content=1
this should return two rows for you.
b) fix it.
Code: Select all
UPDATE cms_content SET default_content = 0 WHERE content_name = "the bad content name"