Needs work
Project:
Image Exact Sizes
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Jul 2006 at 00:28 UTC
Updated:
12 Dec 2006 at 08:25 UTC
Jump to comment: Most recent file
Comments
Comment #1
mariachoo commentedgot the same problem with 4.7.2 - even after applying the patch.
Comment #2
tng@neuralgourmet.com commentedI can confirm this too on a fresh 4.7.2 install.
Comment #3
kopexy commentedLoks like a typo
line 128 first parameter should be $source an not $destination
Comment #4
thumb commentedI can confirm this with my multisite 4.7.2 install. I also notice that uploaded avatars are being referenced through system root rather than web root paths (i.e.
).
I'm a bit confused regarding the reference to line 128. There are only 115 lines in image_exact.module.
Comment #5
ezichko commentedsame problem here too. :(
Comment #6
gsh2000 commentedhere too- 4.7.3 --> image_exact: File does not exist.
Comment #7
dmp0x7c5 commentedIt's problem with $edit array in user_hook function for that module. $edit['picture'] doesn't exist. Now correnct one is $edit['_account']->picture.
patch attached.
Comment #8
ptilu8 commentedstill the same error even with the patch...
Comment #9
drumdance commentedSame error here. Applied the patch and changed line 128. :(
Comment #10
discursives commentedSame here. Please advise.
Comment #11
JohnNoc-old commentedsame problem here! huhuhu :-(
Comment #12
jango commentedSame problem!
Comment #13
jango commentedOh no i'm sorry, the patch is working great.
Comment #14
jerseycheeseApplied patch and still getting this error after uploading an avatar.
image_exact does not seem to crop avatar or have any effect on the uploaded avatar.
Comment #15
gsh2000 commentedsame error here. version 4.7.3
image_exact: File does not exist
Comment #16
toemaz commentedI applied the patch provided at #47 and it worked out well.
I tested a few times.
Patch seems ready to be comitted.
Comment #17
michelejohnston commentedWe applied the patch. It only works for admins updating their own avatar. Admins cannot update other users's avatars and users cannot update their own.
Comment #18
creatorsdream commentedDoesn't work on drupal 4.7.4 at all.
Comment #19
kevinwalsh commentedSame error, 4.7.4, whether it's the admin editing another's user account or the user.
Comment #20
bensheldon commentedThis is the code I'm using that seems to work in all cases (registration, update profile, administrator modification of existing account).
* The modifications are the beginning if statement (op == 'update' and checking to see if the user has an assigned picture).
* And I went back to the unpatched code without using the $edit['_account'] object.
Comment #21
sarvi commentedI notice that this problem also happens when a new user registers. Does your patch above address that as well. I ask since it seems to be checking for 'update' specifically. I am wondering if it will fix the case of a new subscriber aswell.