Krileon,
Bro sorry, i totally missed your reply to me. For some reason this particular reply notification was never emailed to me... That OR i simply missed that email. I'm sorry!
Anyway, i think i totally confused you
hehe
So it happens that i did solve this issue and found where the problem was. I was using another user's image field value and was trying to stick that into the same field for new users (on registration).
So let's say i was taking
cb_<myimagefield>_63_4d3a55462b292.png value that i took from existing user (into who's image field the image was uploaded manually) and inserting into same field for new users using CB Queries plug-in.
HOW I SOLVED IT:
1. I uploaded file
defaultimage.png into
/images/comprofiler folder
2. On user confirmation event in CB Queries plug-in I set to run a query to update cb_myimagefield's value
QUERY:
UPDATE `#__comprofiler` SET cb_myimagefield = "defaultimage.png" WHERE user_id = [user_id];
So basically all i needed is to upload an image that i wanted to be a default into
/images/comprofiler folder and use that name in my UPDATE query.
SEEMS TO WORK (so far...)
Did i explain it OK this time? I have amazing gift of confusing people bro
Somebody will bash me on the head 'cause of it one day
heh
*** ADDED ***
Your two cents? Maybe there are easier way to do it?