We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Very surprised to find this. I had imported a bunch of comments along with our user base to Piwigo.
I found that the authors on the album comments were not lining up with the correct users.
Then I found that the database only supports approximately 32,000 users!
`author_id` smallint(5) DEFAULT NULL,
Should be updated to:
`author_id` mediumint(8) DEFAULT NULL,
Which aligns with Piwigo's current default capacity for users.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Very surprised to find this. I had imported a bunch of comments along with our user base to Piwigo.
I found that the authors on the album comments were not lining up with the correct users.
Then I found that the database only supports approximately 32,000 users!
`author_id` smallint(5) DEFAULT NULL,
Should be updated to:
`author_id` mediumint(8) DEFAULT NULL,
Which aligns with Piwigo's current default capacity for users.
The text was updated successfully, but these errors were encountered: