Hi,
we’ve upgrade Centreon from 23.04 to 24.10. We discover the the Dashboard system and is seems to be great.
We encounter a problem to Create a playlist. it’s just didn’t work when i clic on Save… nothing hapen..
Hi,
we’ve upgrade Centreon from 23.04 to 24.10. We discover the the Dashboard system and is seems to be great.
We encounter a problem to Create a playlist. it’s just didn’t work when i clic on Save… nothing hapen..
Best answer by Adrien Morais-Mestre
As a workaround, you might want to play this SQL request on your database (centreon)
use centreon;
ALTER TABLE
`dashboard_playlist`
ADD
COLUMN `publisher_id` INT NULL,
ADD
COLUMN `public_id` VARCHAR(255) NOT NULL,
RENAME COLUMN `is_public` TO `has_public_access`,
ADD
CONSTRAINT `dashboard_playlist_publisher_id` FOREIGN KEY (`publisher_id`) REFERENCES `contact` (`contact_id`) ON DELETE
SET
NULL;And then try to re-create your playlist.
I'll check on my side what might have gone wrong.
Let me know if it fixed your issue.
Regards.
Adrien
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.