• 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

How to import one user including user's images from chevereto A to chevereto B

yhsiao

Chevereto Member
Hi guys,I want to import an user including user's images from chevereto A to chevereto B, do you have some instructions to follow?
Thanks.
 
Chevereto does not currently offer this function.

You can only do this via database management, for example with phpMyAdmin.

[CODE lang="php" title="phpMyAdmin SQL"]UPDATE `chv_images` SET `image_user_id` = 'YOURNEWID', `image_album_id` = NULL WHERE `chv_images`.`image_user_id` = OLDUSERID;[/CODE]
 
Chevereto does not currently offer this function.

You can only do this via database management, for example with phpMyAdmin.

[CODE lang="php" title="phpMyAdmin SQL"]UPDATE `chv_images` SET `image_user_id` = 'YOURNEWID', `image_album_id` = NULL WHERE `chv_images`.`image_user_id` = OLDUSERID;[/CODE]
But how to deal with the user's content?
 
Oh, move from installation A to B.

1. Move the data from A to B via FTP
2. Easiest method (duplicate complete database from A to B)
If 2. is not possible because INstallation B already has users and data, then you would have to extract them or insert them into database B from database A (for each user (pictures, albums)).
 
Oh, move from installation A to B.

1. Move the data from A to B via FTP
2. Easiest method (duplicate complete database from A to B)
If 2. is not possible because INstallation B already has users and data, then you would have to extract them or insert them into database B from database A (for each user (pictures, albums)).
Thanks. Maybe that's the most easiest way to do this.
 
Back
Top