What would be the best practice for uploading contact photos in bulk please?
I'm uploading photos of contacts that are named [contact_title].jpg. Where the contact_title is a unique number associated with the contact from another database. I uploaded all the photos to the respective contact_clien_tid, which are all the same three digit number. Next I updated the contact_photo to [contact_title].jpg
This did not work. I did notice that when you use the front side form to upload images, the file name in contact_photo gets hashed to a 66 character hash. I have looked through the GitHub code and I can't see a function anywhere that hashes the file name. I also looked for a function in the itflow DB but couldn't anything that would create a 66 char string. SHA2('mysrting', 256) will result in 64 chars. and there is noting prepended/appended that I can tell… so how are you doing this please… or how should I do it please?