Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]: Documentation Error #4575

Closed
tresero opened this issue Apr 28, 2024 · 8 comments · Fixed by #4592
Closed

[BUG]: Documentation Error #4575

tresero opened this issue Apr 28, 2024 · 8 comments · Fixed by #4592

Comments

@tresero
Copy link

tresero commented Apr 28, 2024

Describe the bug
In the https://www.activepieces.com/docs/install/troubleshooting#reset-password the table is user. Not users
Also, the database is database.sqlite, not database.sqlite3

This should be updated in the documentation

@tresero
Copy link
Author

tresero commented Apr 28, 2024

Also, resetting doesn't work. Constantly shows Invalid email or password

@abuaboud
Copy link
Contributor

Hi @tresero

Do you have multiple users in the same instance?

@tresero
Copy link
Author

tresero commented Apr 28, 2024

No, I just set it up.

@abuaboud
Copy link
Contributor

Does your new hashed password starts with $2b$?

@tresero
Copy link
Author

tresero commented Apr 28, 2024

No $2y$

@abuaboud
Copy link
Contributor

Try to use something like that to generate the password, I will check later about `$2y$', we use below library

import bcrypt from 'bcrypt'
const SALT_ROUNDS = 10
const password = await bcrypt.hash('22@RandomPassword', SALT_ROUNDS)
console.log(password)

This above example output is $2b$10$5ShTzYKNNtIx0ZccSXDn5.6uexFoaNEGqHPrAWzhv.cd26kpCGI7e

Also Feel free to contribute for the docs: https://github.com/activepieces/activepieces/tree/main/docs

Let me know if it works.

@tresero
Copy link
Author

tresero commented Apr 28, 2024

Okay, that worked. I'll update the docs as well.

@abuaboud abuaboud linked a pull request Apr 30, 2024 that will close this issue
Copy link

⚠️COMMENT VISIBILITY WARNING⚠️

Comments on closed issues are hard for our team to see.
If this issue is continuing with the latest stable version of Activepieces, please open a new issue that references this one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants