I had similar issue and solved it as follows:
1. altered the ****_extensions table to accept Null values for those properties:
from:to: then run: 2. Then actualize the ****_update_sites_extensions table by adding following associations at the first rows: be sure that the extension_ids 229, 230 and 24 are matching follwing entries in the ****_update_site table:
matches ->and so on....
1. altered the ****_extensions table to accept Null values for those properties:
from:
Code:
`checked_out` int(10) unsigned NOT NULL DEFAULT 0, `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
Code:
`checked_out` int(10) unsigned DEFAULT NULL, `checked_out_time` datetime DEFAULT NULL,
Code:
UPDATE yourDB.****_extensions SET `checked_out` = NULL AND `checked_out_time` = NULL;
Code:
VALUES (1,229),(2,230),(3,24),......
Code:
(1,'Joomla! Core','tuf','https://update.joomla.org/cms/',1,1722287964,'',NULL,NULL)
matches ->
Code:
(229,0,'files_joomla','file','joomla',NULL,'',0,1,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"2024-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.1.2\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','',NULL,NULL,0,0,NULL)
Statistics: Posted by samik83 — Mon Aug 05, 2024 8:02 am