Am using docker and compose. Did an update to v7.5.6, usual docker steps- set the image version, pull, up.
Get the login screen, but cannot log with any user. Turned on DEBUG in the logger.
It thinks all users are inactive.
Turned on 'sql' => true, but no queries are showing in the espo log.
Viewed the database, and "user" table is fine, is_active=1.
The table "auth_log_record" is getting updated with login attempts and shows denial reason of INACTIVE_USER.
Tried the documented suggestions for php rebuild.php, php clear_cache.php, but no change in behavior.
data/config/php still looks ok. Saw mention of the use of config-internal.php as of 7.0. This is not present on my system, is this a factor?
I'm out of ideas. Appreciate any suggestions.
The compose file, in case it helps.
Using a bind mount for convenience in backup and accessing with VSCode remote.
Get the login screen, but cannot log with any user. Turned on DEBUG in the logger.
Code:
[2023-10-22 14:31:00] INFO: AUTH: Trying to login as user 'billr' which is not active. [] []
Turned on 'sql' => true, but no queries are showing in the espo log.
Viewed the database, and "user" table is fine, is_active=1.
The table "auth_log_record" is getting updated with login attempts and shows denial reason of INACTIVE_USER.
Tried the documented suggestions for php rebuild.php, php clear_cache.php, but no change in behavior.
data/config/php still looks ok. Saw mention of the use of config-internal.php as of 7.0. This is not present on my system, is this a factor?
I'm out of ideas. Appreciate any suggestions.
The compose file, in case it helps.
Code:
espocrm: image: espocrm/espocrm:7.5.6 container_name: espocrm environment: ESPOCRM_DATABASE_HOST: db:3306 ESPOCRM_DATABASE_NAME: espocrm_db ESPOCRM_DATABASE_USER: espocrm_user ESPOCRM_DATABASE_PASSWORD: SECRET ESPOCRM_ADMIN_USERNAME: admin ESPOCRM_ADMIN_PASSWORD: SECRET ESPOCRM_SITE_URL: "http://localhost:8080" restart: always depends_on: - db ports: - 8080:80 volumes: - /dockerdata/espocrm:/var/www/html
Comment