In both places where I have image uploading capabilities (in the user profile and in a cck field), I'm getting two instances of the "form item," that is the text box that gets populated after a file is chosen. Only the top text box has a "browse" or "choose file" button next to (depending if it's cck or not.) The other text box is just there for no apparent reason.

I also have a problem with the labeling of the form on the user-profile image uploading area. The label as well as the description to the user have been replaced with the letter "U."

Also, is the user-profile image uploading form supposed to have an "upload" button like the CCK imagefield or is it simply understood that it gets uploaded when the profile is edited?

The modules I'm using for images are: CCK Image, Imagecache, and Imagecache Profile Pictures.

I've implemented these methods on my site: "enable thumbnail on teaser, larger image on page using cck imagefield, imagecache and upload" as well as Imagecache Example: User Profile Pictures.

Thanks for any insight you can provide!

Comments

rhg108’s picture

I installed the Form Inspect module to get a dump of the form array on the user edit page. The array prints as it should from the User Module:

 [picture_upload] => Array
       (
           [#type] => file
           [#title] => Upload picture
           [#size] => 48
           [#description] => Your virtual face or picture. Maximum dimensions are <em>160x160</em> and the maximum size is <em>60</em> kB. 
       )

None of this is getting outputted to the screen. Instead as I mentioned, the letter "U" is in place of the title and description. The size is different (35), and something is printing the text box twice. Can someone point me in the direction of what could be overriding this?

Thanks!