tomolimo / processmaker

GLPI plugin that provides an interface with ProcessMaker (http://www.processmaker.com/)
30 stars 11 forks source link

Login error #104

Closed Perez18 closed 4 years ago

Perez18 commented 4 years ago

PHP 7.1.32 MariaDB 10.4-8 Apache 2.4.41

I cannot log in to the Process Maker server, it tells me WARNING: User's account has expired, and I am using the same installation credentials, I have uninstalled and installed again but it does not let me log in

thanks for your help

tomolimo commented 4 years ago

Hello @Perez18 , What are the versions of GLPI, PM plugin and PM server? Thank you, Regards, Tomolimo

Perez18 commented 4 years ago

Thanks for your reply

The Versions GLPI 9.4.5 PLugin 3.6.5 Server 3.3.0

image

tomolimo commented 4 years ago

Hello @Perez18 Could you be more precise about the version of the PM server? Is it 3.3.0-community-RE-1.8? or else? Which user login are you using? the one by default "admin / admin"? or else? Thank you Regards, Tomolimo

Perez18 commented 4 years ago

Yes of course the version Release 3.3.0-RE-1.7 I am using the admin user and change the password to admin123

Thank you @tomolimo Regards

tomolimo commented 4 years ago

Hello @Perez18

You may check the following tables in wf_workflow DB: In table USERS search for admin user:

SELECT  `USR_UID`,  `USR_USERNAME`,  `USR_DUE_DATE`,  `USR_STATUS` FROM `WF_WORKFLOW`.`USERS` WHERE `USR_USERNAME` = 'admin'

You should get something like:

USR_UID USR_USERNAME USR_DUE_DATE USR_STATUS
00000000000000000000000000000001 admin 2035-12-31 ACTIVE

If not, please correct accordingly.

Also check the RBAC_USERS table:

SELECT  `USR_UID`,  `USR_USERNAME`,  `USR_DUE_DATE`,  `USR_STATUS` FROM `WF_WORKFLOW`.`RBAC_USERS` WHERE `USR_USERNAME` = 'admin'

where you should get this:

USR_UID USR_USERNAME USR_DUE_DATE USR_STATUS
00000000000000000000000000000001 admin 2035-12-31 1

If not, please correct accordingly.

Regards, Tomolimo

Perez18 commented 4 years ago

I proceed to perform and I comment the results

Regards,

Perez18 commented 4 years ago

Thank you very much, it was a great help

the problem was the Fields USR_DUE_DATE was 2020-01-01

Regards @Perez18

Perez18 commented 4 years ago

image

tomolimo commented 4 years ago

Cool, thank you for your feedback. I close the issue.