Doing a fresh install of ipam 1.2.1 on centos 7 with mariadb 5.5.
I did an import of the db/SCHEMA.sql into phpipam but I cannot login; when I try to reset the password I got the error that user table doesn't exist:
MariaDB [phpipam]> update user set password='<md5 password="default" hash="">' where username='Admin';
ERROR 1146 (42S02): Table 'phpipam.user' doesn't exist
MariaDB [phpipam]> show tables;
+---------------------+
| Tables_in_phpipam |
+---------------------+
| api |
| changelog |
| deviceTypes |
| devices |
| firewallZoneMapping |
| firewallZoneSubnet |
| firewallZones |
| instructions |
| ipTags |
| ipaddresses |
| lang |
| loginAttempts |
| logs |
| nameservers |
| requests |
| scanAgents |
| sections |
| settings |
| settingsDomain |
| settingsMail |
| subnets |
| userGroups |
| users |
| usersAuthMethod |
| vlanDomains |
| vlans |
| vrf |
| widgets
Anonymous