Quantcast
Channel: Joomla! Forum - community, help and support
Viewing all articles
Browse latest Browse all 870

Migrating and Upgrading to Joomla! 4.x • Re: local upgrade from Joomla 4.2.8 to 4.3.3 Error - last_check_timestamp

$
0
0
I had similar issue and solved it as follows:
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',
to:

Code:

`checked_out` int(10) unsigned DEFAULT NULL,  `checked_out_time` datetime DEFAULT NULL,
then run:

Code:

  UPDATE yourDB.****_extensions SET `checked_out` = NULL AND `checked_out_time` = NULL;
2. Then actualize the ****_update_sites_extensions table by adding following associations at the first rows:

Code:

VALUES (1,229),(2,230),(3,24),......
be sure that the extension_ids 229, 230 and 24 are matching follwing entries in the ****_update_site table:

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)
and so on....

Statistics: Posted by samik83 — Mon Aug 05, 2024 8:02 am



Viewing all articles
Browse latest Browse all 870

Trending Articles





<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>