Hi,
Client made me to move my couch www from subdomain to domain and back again.
It resulted in missing images, please see this link:
http://test.softinet.com.pl/blog.php
What might be wrong:
I have this code in my blog.php:
and this one in blog-list.html:
Please see also the view from couch cms - in attachement
Client made me to move my couch www from subdomain to domain and back again.
It resulted in missing images, please see this link:
http://test.softinet.com.pl/blog.php
What might be wrong:
I have this code in my blog.php:
- Code: Select all
<?php define( 'K_TEMPLATE_NAME', 'blog.php' ); ?> <?php require_once( 'couch/cms.php' ); ?> <cms:template title="Blog" clonable="1"> <cms:editable name="blog_content" type="richtext"/> <cms:editable name="blog_image" crop="1" width="900" height="600" type="image" /> <cms:folder name="aktualnosci" title="Aktualności"/> <cms:folder name="szkolenia" title="Szkolenia"/> <cms:globals> <cms:repeatable name='videos' > <cms:editable name='video' label='Video embed code' type='textarea' no_xss_check='1' > <iframe width = "100%" height = "auto" src="https://www.youtube.com/embed/fMf0mrVMGJk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> </cms:editable> <cms:editable name='videotitle' label='tytul' type='richtext' /> <cms:editable name='videotext' label='videotext' type='richtext' /> </cms:repeatable> </cms:globals> </cms:template>
and this one in blog-list.html:
- Code: Select all
<!-- Post Image --> <div class="img-blog-list"> <img class="img imgfix_top_container" alt="" src="<cms:show blog_image />"/> </div> <!-- Post Image end--> <div class="px-2"> <!-- Post Title --> <h3 class="title"><a href="<cms:show k_page_link />"> <cms:show k_page_title/> </a></h3> <!-- Post Content --> <cms:excerptHTML count='75' ignore='img'> <cms:show blog_content/> </cms:excerptHTML> <!-- Read More Button --> <a href="<cms:show k_page_link />" class="btn-primary-line">Czytaj</a> <!-- Read More Button end--> </div>
Please see also the view from couch cms - in attachement