Skip to main content

cPanel user manager error

Comments

2 comments

  • cPanelMichael
    Hello, You can try creating the missing column with the following commands to see if that helps solve the issue:
    cd /home/$username/.subaccounts/ sqlite3 storage.sqlite SQLite version 3.6.20 Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> CREATE TABLE meta (key text, value text); sqlite> ALTER TABLE users ADD COLUMN has_invite integer; sqlite> ALTER TABLE users ADD COLUMN invite_expiration integer; sqlite> .exit
    Thank you.
    0
  • Havri
    Hello Michael, Thank you for your help. I created the missing column using your tutorial, but I still couldn't edit any details of the email account contact@mydomain.tld becuase of some duplicate entries for the same account. In the end, I ended up emptying the users table from the sqlite database:
    cd /home/$username/.subaccounts/ sqlite3 storage.sqlite delete from users; .exit
    After that, I recreated the account and restored the content from a backup and it worked fine. Best regards.
    0

Please sign in to leave a comment.