Problems, need help? Have a tip or advice? Post it here.
9 posts Page 1 of 1
Hello,

1) Whatever I try, I can't change the logo couch which is over the
dashboard.
I change the config.php and uploaded the logo already, but nothing
works.
It's not really important, because it'a my website, not a customer one,
but still...
I installed the responsive dashboard, as instructed.
my website is http://www.tableaux-sur-toile.com

2) the post on blog don't keep their categories.
They appear sometime in the dashboard, but not all the time, and when I change the post category to something, it late one day, or few hours, and get erased again.

I don't know what to do.

http://www.tableaux-sur-toile.com/blog/
Best regards,
Paolo
1. In couch/theme/customize.css please remove or comment out line 5 per the comment on line 4.

2. This could be the result of a cached page not being invalidated by Couch. (http://www.couchcms.com/forum/viewtopic.php?f=4&t=7525&p=11374#p11374) When you see this problem, try editing one of your blog posts and clicking save. Make sure to log out afterwards otherwise you won't know whether this has worked.
1) Ok, it works now
2) I tried that already of course.

I fact, I enter the category, refresh the page, in blog list they are present, but if I open one article, they disappear from that article (it reads no category), then from the dashboard as well.

If I try to open one category with the right category menu, it reads 404, then categories disappear as well from the menu
Hi Paolo,

This 'disappearing folders' issue is intriguing.

Have you, by any chance, defined the folders statically (using cms:folder tag) and then also defined them as dynamic using dynamic_folders='1' parameter in template tag?
If so, this could be a reason for the phenomenon (it is explained at http://www.couchcms.com/docs/miscellane ... lders.html).

If, however, that is not the case, could you please PM me your template that is displaying this problem (along with related snippets if any)?
I'll try and duplicate the issue on my test machine.

Thanks.
No, I didn't use dynamic folders.

I can't send you the file here, because it doesn't allow php or txt files.

Send me a valide e-mail address of yours, and I will send my files directly to you.

Thanks a lot, that's the last issue I have with couch, then I'm cool...

Regards,
Paolo
Please zip the source files before uploading as zip format is allowed.
If you wish to send them via email, have PMed that too.

Thanks
Ok, here we go,
please find attached a zip file.
Thanks,
Paolo

PS: one more thing, I need to purchase another copy of couch for a new website cef.vn
but last month I bough one for happia.com.vn and still haven't received confirmation of
my license purchase, as I were with http://www.tableaux-sur-toile.com.
Who can I contact if it happens again?

Attachments

Hi,

I had a look and this is what might be causing the disappearing folders -
Your original code in blog.php looks like this
<?php require_once( 'couch/cms.php' ); ?>
<cms:if k_is_page >
<cms:template title='Blog' clonable='1' commentable='1'>

<cms:editable name='blog_content' type='richtext' />

<cms:editable name='blog_image'
crop='1'
width='1170'
height='600'
type='image'
/>

<cms:folder name="art_et_tableaux" title="art et tableaux" />
<cms:folder name="tableaux_expliques" title="tableaux expliqués" />
<cms:folder name="connaissance" title="connaissance" />
<cms:folder name="expositions" title="expositions" />
<cms:folder name="divers" title="divers" />

</cms:template>

<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"><!--<![endif]-->
..
..

Please notice that you have defined the cms:template block within the <cms:if k_is_page > conditional statement.

This is causing that block (and hence all its contents that include the folder definitions too) to execute only in page-view. In any other views, the code does not execute leading Couch to believe you have deliberately removed the statements.
Hence the problem.

To rectify, simply move the cms:template block out of the cms:if condition e.g.
<?php require_once( 'couch/cms.php' ); ?>
<cms:template title='Blog' clonable='1' commentable='1'>

<cms:editable name='blog_content' type='richtext' />

<cms:editable name='blog_image'
crop='1'
width='1170'
height='600'
type='image'
/>

<cms:folder name="art_et_tableaux" title="art et tableaux" />
<cms:folder name="tableaux_expliques" title="tableaux expliqués" />
<cms:folder name="connaissance" title="connaissance" />
<cms:folder name="expositions" title="expositions" />
<cms:folder name="divers" title="divers" />

</cms:template>

<cms:if k_is_page >

<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"><![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"><![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"><![endif]-->
..
..

This should resolve the problem. Please check and let me know.

last month I bough one for happia.com.vn and still haven't received confirmation of
my license purchase, as I were with http://www.tableaux-sur-toile.com.
Who can I contact if it happens again?

I am so sorry but this could have been due to some mail problem as our records show that a confirmation was dispatched the same day (16th. Aug).
Anyways, I have emailed you a copy of it at sales@vietnamsales.com.
Please let me know if it reached you this time.

In case you have any such problem in the future, please feel free to directly contact me (PM me or email me if you wish).

Thanks
Cool,

it works just fine! Thanks,

Best regards,
Paolo
9 posts Page 1 of 1