Problems, need help? Have a tip or advice? Post it here.
4 posts Page 1 of 1
Trying to get a thumbnail created, but Couch is creating a empty file, so when calling thumbnail its shows broken image link.

Here is my code:
Code: Select all
 <cms:editable name='group_img1' label='First Image' desc='First Image' type='group'  />
    <cms:editable
        name='image_1'
        label='image 1'
        desc='Upload Image'
        show_preview='1'
        preview_width='200'
        group='group_img1'
        type='image'/>
    <cms:editable
        name='thumb'
        label='Image Thumbnail'
        desc='Image Thumbnail' 
        show_preview='1'
        width='200'
        assoc_field='image_1'
        group='group_img1'
        type='thumbnail' />
    <cms:editable
        name='image_1_title'
        label='image title'
        desc='Enter image title'
        group='group_img1'
        type='text' />


I have attached the result.

Attachments

Hello and welcome :)

Could you please take a look at your setup and let us know if it has GD Library module enabled ?

One way of doing this could be placing a <?php phpinfo(); ?> statement in any PHP template and seeing if GD library is mentioned anywhere.

Thanks.
It says it's installed. See screenshot.

Attachments

OK, so then there is no other obvious reason that I could think of.
This, normally, is the point where I request access to the server to take a look at the problem first-hand. However, since your setup is still on your local system that won't be possible.

I suggest you ignore the issue for the moment and continue developing the site.
Local stacks (WAMP, XAMPP etc.) all have their quirks and, in all probability, once you migrate the site online you won't encounter this problem (and if you do, at least I'd be able to help you in a more meaningful manner then).

Thanks.
4 posts Page 1 of 1