Forum for discussing general topics related to Couch.
4 posts Page 1 of 1
Hello! is it any change to make that when I have made a Databound form, with "Upload image button"

Right now when I upload an image from me "Profile.php" I get the image to my "Admin list"

But that I try too do so I get the Image to my Profile.php when I have upload it.

I have made like .......
Code: Select all
<cms:input name="uploaded_image" type="bound" />

  <cms:if "<cms:not submit_success />" >
        <button type="submit">Submit Application</button>
    </cms:if>


Then did I try <img src="<cms:show uploaded_image />" /> but it's not working.

and I have made clonable="1" with
Code: Select all
<cms:editable name='uploaded_image' required='1' allowed_ext='jpg, jpeg, png, gif' max_size='4048' type='securefile' />


How could I do so I can see the image in my profile.php?
Xtriz3D :

You are use "securefile" editable type. So you must call the securefile like this :

Code: Select all
<cms:show_securefile 'uploaded_image' >
      <img src="<cms:cloak_url link=file_id  />" />
   </cms:show_securefile>
As soon as possible!

Touch me up : abada[dot]zulma[at]gmail[dot]com
GoingMarryAsap wrote: Xtriz3D :

You are use "securefile" editable type. So you must call the securefile like this :

Code: Select all
<cms:show_securefile 'uploaded_image' >
      <img src="<cms:cloak_url link=file_id  />" />
   </cms:show_securefile>



ohh thanks! Thanks for the fast answer.
Xtriz3D wrote:
GoingMarryAsap wrote: Xtriz3D :

You are use "securefile" editable type. So you must call the securefile like this :

Code: Select all
<cms:show_securefile 'uploaded_image' >
      <img src="<cms:cloak_url link=file_id  />" />
   </cms:show_securefile>



ohh thanks! Thanks for the fast answer.


Anytime bro!
As soon as possible!

Touch me up : abada[dot]zulma[at]gmail[dot]com
4 posts Page 1 of 1