4K Download Feedback All the ideas and discussions
16 votes Vote

In 4K Stogram, possibility to update instagram username


Currently, if the username doesn't exist (because it has been changed), if keeps refreshing without stopping, so it would be nice if you can update the username. For example, if the program has downloaded photos of user "unknown", but the user has changed his name to "unknown1", I would like to manually change the name; otherwise it won't download new photos and also the program keep refreshing photos for an user that doesn't exist.

Pascual , 28.06.2015, 15:47
Idea status: completed

Comments

Mark, 05.08.2017, 00:00
Would be great if 4K Stogram could update the name automatically.
jian, 10.06.2019, 21:42
open the database in the 4kstogram folder with a program like SQLiteStudio

In the table "subscriptions" change the OLDNAME with the NEWNAME

then do these 4 queries:

UPDATE photos SET ownerName = replace( ownerName, 'OLDNAME', 'NEWNAME' )
UPDATE photos SET file = replace( file, 'OLDNAME', 'NEWNAME' )
UPDATE photos SET thumbnail_file = replace( thumbnail_file, 'OLDNAME', 'NEWNAME' )
UPDATE photos SET query = replace( query, 'OLDNAME', 'NEWNAME' )

and then change the OLDNAME of the windows folder which contains the images with the NEWNAME

Leave a comment