Hi all,
I've been slowly retrofitting a site with Couch and things are going very well. The documentation is fantastically clear.
Nonetheless, I do have a couple of dumb questions...
First off : if I'm not logged in to the backend as a super-admin, when I type the site's URL I just get a blank white page. The source code is completely empty. Is this expected behaviour? I would like my client to be able to see the work in progress. I have a redirect at the root which drops the user into a "fr" folder, as French will be the default language (see code below). What have I done wrong?
Secondly : it's not very clear to me how my client will be able to add and remove pages. I currently only have one template which is clonable (for the News section). The other templates are all "singles". I'm struggling to understand how my client would go about adding a new page, or indeed removing an existing one.
Whilst the docs are brilliant from a designer/developer's perspective, there doesn't seem to be much documentation explaining things from a client/user's perspective. I will obviously need to teach my client how to use Couch, and it would help immensely if these questions were elucidated.
Thanks for a brilliant CMS!
cheers,
Ric
I've been slowly retrofitting a site with Couch and things are going very well. The documentation is fantastically clear.
Nonetheless, I do have a couple of dumb questions...

First off : if I'm not logged in to the backend as a super-admin, when I type the site's URL I just get a blank white page. The source code is completely empty. Is this expected behaviour? I would like my client to be able to see the work in progress. I have a redirect at the root which drops the user into a "fr" folder, as French will be the default language (see code below). What have I done wrong?
- Code: Select all
<?php require_once( 'couch/cms.php' ); ?>
<cms:template title='Referral' order='16' hidden='1'>
<cms:redirect url='http://test.study-technologies.com/fr/' />
</cms:template>
<?php COUCH::invoke(); ?>
Secondly : it's not very clear to me how my client will be able to add and remove pages. I currently only have one template which is clonable (for the News section). The other templates are all "singles". I'm struggling to understand how my client would go about adding a new page, or indeed removing an existing one.
Whilst the docs are brilliant from a designer/developer's perspective, there doesn't seem to be much documentation explaining things from a client/user's perspective. I will obviously need to teach my client how to use Couch, and it would help immensely if these questions were elucidated.
Thanks for a brilliant CMS!
cheers,
Ric