• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Is it possible to assign images uploaded as guest to a user?

bangsters

Chevereto Member
Hello. I have a member that uploaded a lot of images. However he uploaded them as guest, then proceeded to add the embed links. Instead of reuploading as a username and editing all the links he already did, is there a way to just assign the images to his user account? Gues images are set to prune over few weeks, so his images and links would not work after a few weeks.

Please advise.

Thank you.
 
You can assign this images to the user via mySQL. Something like this

Code:
UPDATE `chv_images` SET `image_user_id` = 12345, `image_album_id` = 6789 WHERE `image_uploader_ip` = '123.123.123.123'

Where 12345 is the user ID, 6789 - album ID and 123.123.123.123 is his IP
 
Hello. I have a member that uploaded a lot of images. However he uploaded them as guest, then proceeded to add the embed links. Instead of reuploading as a username and editing all the links he already did, is there a way to just assign the images to his user account? Gues images are set to prune over few weeks, so his images and links would not work after a few weeks.

I suspect that happens quite a lot.

Re-attribution of posts, maybe a future feature down the line, would be quite useful I think.
 
Back
Top