You are not logged in.
Pages: 1
Hello,
I go to the folder "/var/www/html/glpi" then I do the command "php bin/console glpi:migration:unsigned_keys".
Then I have 4 errors:
The migration of the column "glpi_plugin_mydashboard_profileauthorizedwidgets.widgets_id" cannot be done because its default value is negative.
The migration of the column "glpi_plugin_mydashboard_stocktickets.groups_id" cannot be done because its default value is negative.
The migration of the column "glpi_plugin_mydashboard_userwidgets.users_id" cannot be done because it is referenced in the CONSTRAINT "glpi_plugin_mydashboard_userwidgets_ibfk_1" of the table "glpi_plugin_mydashboard_userwidgets.users_id".
The migration of the column "glpi_users.id" cannot be done because it is referenced in the CONSTRAINT "glpi_plugin_mydashboard_userwidgets_ibfk_1" of the table "glpi_plugin_mydashboard_userwidgets.users_id".
How do I do this because I deleted all my plugins voluntarily and I have nothing left as plugins but I have the errors there how to solve?
Debian 11
GLPI 10.0.3
Offline
I think you removed the plugin without uninstallation.
Drop those tables and u will be ok (do a backup before!)
DROP TABLE glpi_plugin_mydashboard_profileauthorizedwidgets;
DROP TABLE glpi_plugin_mydashboard_stocktickets;
DROP TABLE glpi_plugin_mydashboard_userwidgets;
Offline
Hi,
-bash: DROP : order not found
The controls do not work
Debian 11
GLPI 10.0.3
Offline
DROP is a sql command.
I forgot to say that (obvious?) the command has to be used inside sql ...
To be more clear.
- connect to mysql console
- select the right database
- execute the commands.
Last edited by Kaya84 (2022-12-12 11:47:08)
Offline
Oh yes, right,
No, no, it's clear that I wasn't awake.
But how does it work perfectly, what are the controls?
Debian 11
GLPI 10.0.3
Offline
But how does it work perfectly, what are the controls?
I can't undestand..
Offline
Pages: 1