TeamPass icon indicating copy to clipboard operation
TeamPass copied to clipboard

New users can't see the passwords

Open chcioni opened this issue 1 month ago • 2 comments

Regarding task #4924, even after upgrading to version 3.1.5.10, the problem persists. Enabling the MySQL log query, I see that the empty field is inserted as if it were unable to generate the value.

SELECT share_key, increment_id FROM teampass_sharekeys_items WHERE object_id = 2 AND user_id = 9999997;
INSERT INTO teampass_sharekeys_items (object_id, user_id, share_key) VALUES (2, 10000456, '') ON DUPLICATE KEY UPDATE share_key = VALUES(share_key);

There are no errors in the application logs.

chcioni avatar Dec 12 '25 08:12 chcioni

There are quite a few issues around at the moment for new users being unable to see any passwords,. It seems to be failing to create a sharekey for new users and there is no simple process to force it. I've been unable to get past this issue for over 2 months now :(

DaveWebb2 avatar Dec 15 '25 20:12 DaveWebb2

Hi, in subtask table view:

{"step":"step0","index":0,"nb":1000}    

{"step":"step20","index":0,"nb":1000}   

{"step":"step20","index":1000,"nb":1000}

{"step":"step60","index":0,"nb":1000}   

{"step":"step99"}     

Is correct or need other steps? And in the tasks log table view:

MariaDB [teampass]> select * from teampass_background_tasks_logs where status = 'ongoing' order by increment_id desc limit 10;
+--------------+------------+----------------+---------+------------+-------------+-----------------+
| increment_id | created_at | job            | status  | updated_at | finished_at | treated_objects |
+--------------+------------+----------------+---------+------------+-------------+-----------------+
|     15493279 | 1765907160 | do_calculation | ongoing |       NULL |        NULL | NULL            |
|     15493278 | 1765907100 | do_calculation | ongoing |       NULL |        NULL | NULL            |
|     15493277 | 1765907040 | do_calculation | ongoing |       NULL |        NULL | NULL            |
+--------------+------------+----------------+---------+------------+-------------+-----------------+

chcioni avatar Dec 16 '25 17:12 chcioni