To reset admin´s password you should change the value of user_password field, in user´s table.
UPDATE user SET user_password = MD5(CONCAT(user_id, '-', MD5('somepass'))) WHERE user_name = 'someuser';

![[Main Page]](/modules/mediawiki/images/mediawiki.png)
From XOOPS Web Application System
Main Page | Recent changes | Edit this page | Page history | Switch to MediaWiki modeTo reset admin´s password you should change the value of user_password field, in user´s table.
UPDATE user SET user_password = MD5(CONCAT(user_id, '-', MD5('somepass'))) WHERE user_name = 'someuser';