Problems, need help? Have a tip or advice? Post it here.
6 posts Page 1 of 1
New to Couch, can anyone tell me how I stop the image url displaying on the live page. The full path is showing above the image.
Hi and welcome Adellan. :)

You have two options. Add hidden='1' to the image editable region or relocate the cms:editable tag to within your cms:template tag. The latter is preferred because then you have everything defined in one location:
Code: Select all
<cms:template title='Contact Us'>
    <cms:editable name='content' type='richtext'/>
    <cms:editable name='picture' type='image'/>
</cms:template>
Thank you so much for the quick response. Fixed it. No doubt I'll be back!
Cheers :D
I am back. I'm getting a 203 error when I try to load an image from my c drive which my client will need to do. I can load images if I ftp them to the upload folder and then browse for them but that won't work for the client.
KK wrote: We get this error when PHP fails to move the uploaded image from the tmp folder to the actual folder. Usually this happens when the uploaded file is invalid but there can be other reasons too.

...

Can you make sure that the folder into which the images get stored after uploading (uploads/images) has 'write' permission?
Try 777 for the folder.
Permissions it was, thanks again.
Have a great day.
6 posts Page 1 of 1
cron