diff --git a/administrator/components/com_highlights/forms/filter_highlights.xml b/administrator/components/com_highlights/forms/filter_highlights.xml index 04142b7b..ff9ea497 100644 --- a/administrator/components/com_highlights/forms/filter_highlights.xml +++ b/administrator/components/com_highlights/forms/filter_highlights.xml @@ -11,7 +11,8 @@ onchange="this.form.submit();"> - + + diff --git a/administrator/components/com_highlights/forms/highlight.xml b/administrator/components/com_highlights/forms/highlight.xml index de1f518d..f8bf402e 100644 --- a/administrator/components/com_highlights/forms/highlight.xml +++ b/administrator/components/com_highlights/forms/highlight.xml @@ -17,13 +17,35 @@ - - + + + + + - - + + + + + + + diff --git a/administrator/components/com_highlights/highlights.xml b/administrator/components/com_highlights/highlights.xml index 8a20e759..cd0e0beb 100644 --- a/administrator/components/com_highlights/highlights.xml +++ b/administrator/components/com_highlights/highlights.xml @@ -1,7 +1,7 @@ com_highlights - 2024-12-31 + 2025-01-03 2024 Eddy Prosperi GNU General Public License versione 2 o successiva; vedi LICENSE.txt Eddy Prosperi diff --git a/administrator/components/com_highlights/sql/install.mysql.utf8.sql b/administrator/components/com_highlights/sql/install.mysql.utf8.sql index f9ae11c1..c601c9eb 100644 --- a/administrator/components/com_highlights/sql/install.mysql.utf8.sql +++ b/administrator/components/com_highlights/sql/install.mysql.utf8.sql @@ -11,13 +11,19 @@ CREATE TABLE IF NOT EXISTS `#__highlights_` ( `titolo` VARCHAR(255) NULL DEFAULT "", `sottotitolo` VARCHAR(255) NULL DEFAULT "", `descrizione` TEXT NULL , -`lingua` VARCHAR(5) NULL DEFAULT "", +`lingua` VARCHAR(255) NULL DEFAULT "", `link_pulsante` VARCHAR(255) NULL DEFAULT "", +`link_pdf` VARCHAR(255) NULL DEFAULT "", `testo_pulsante` VARCHAR(255) NULL DEFAULT "", `data` DATETIME NULL DEFAULT NULL , -`classe` VARCHAR(255) NULL DEFAULT "", `immagine_main` TEXT NULL , `immagine_secondaria` TEXT NULL , +`classe` VARCHAR(255) NULL DEFAULT "", +`colore_testo` VARCHAR(22) NULL DEFAULT "00000", +`colore_sfondo` VARCHAR(22) NULL DEFAULT "00000", +`opacita` VARCHAR(255) NULL DEFAULT "", +`colore_sfondo_bottone` VARCHAR(22) NULL DEFAULT "00000", +`colore_testo_bottone` VARCHAR(22) NULL DEFAULT "00000", `data_inizio_pubblicazione` DATETIME NULL DEFAULT NULL , `data_fine_pubblicazione` DATETIME NULL DEFAULT NULL , PRIMARY KEY (`id`) @@ -27,8 +33,6 @@ PRIMARY KEY (`id`) ,KEY `idx_modified_by` (`modified_by`) ) DEFAULT COLLATE=utf8mb4_unicode_ci; -CREATE INDEX `#__highlights__etichetta` ON `#__highlights_`(`etichetta`); - CREATE TABLE IF NOT EXISTS `#__highlights_etichetta` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, diff --git a/administrator/components/com_highlights/src/Model/HighlightsModel.php b/administrator/components/com_highlights/src/Model/HighlightsModel.php index afbb98ce..e4628cb1 100644 --- a/administrator/components/com_highlights/src/Model/HighlightsModel.php +++ b/administrator/components/com_highlights/src/Model/HighlightsModel.php @@ -51,11 +51,17 @@ class HighlightsModel extends ListModel 'descrizione', 'a.descrizione', 'lingua', 'a.lingua', 'link_pulsante', 'a.link_pulsante', + 'link_pdf', 'a.link_pdf', 'testo_pulsante', 'a.testo_pulsante', 'data', 'a.data', - 'classe', 'a.classe', 'immagine_main', 'a.immagine_main', 'immagine_secondaria', 'a.immagine_secondaria', + 'classe', 'a.classe', + 'colore_testo', 'a.colore_testo', + 'colore_sfondo', 'a.colore_sfondo', + 'opacita', 'a.opacita', + 'colore_sfondo_bottone', 'a.colore_sfondo_bottone', + 'colore_testo_bottone', 'a.colore_testo_bottone', 'data_inizio_pubblicazione', 'a.data_inizio_pubblicazione', 'data_fine_pubblicazione', 'a.data_fine_pubblicazione', ); @@ -193,6 +199,14 @@ class HighlightsModel extends ListModel } } + + // Filtering etichetta + $filter_etichetta = $this->state->get("filter.etichetta"); + + if ($filter_etichetta !== null && !empty($filter_etichetta)) + { + $query->where("a.`etichetta` = '".$db->escape($filter_etichetta)."'"); + } // Add the list ordering clause. $orderCol = $this->state->get('list.ordering', 'id'); $orderDirn = $this->state->get('list.direction', 'ASC'); diff --git a/administrator/components/com_highlights/tmpl/highlight/edit.php b/administrator/components/com_highlights/tmpl/highlight/edit.php index e6fece30..a44b3e2e 100644 --- a/administrator/components/com_highlights/tmpl/highlight/edit.php +++ b/administrator/components/com_highlights/tmpl/highlight/edit.php @@ -39,9 +39,9 @@ HTMLHelper::_('bootstrap.tooltip'); form->renderField('descrizione'); ?> form->renderField('lingua'); ?> form->renderField('link_pulsante'); ?> + form->renderField('link_pdf'); ?> form->renderField('testo_pulsante'); ?> form->renderField('data'); ?> - form->renderField('classe'); ?> @@ -57,6 +57,21 @@ HTMLHelper::_('bootstrap.tooltip'); + +
+
+
+ + form->renderField('classe'); ?> + form->renderField('colore_testo'); ?> + form->renderField('colore_sfondo'); ?> + form->renderField('opacita'); ?> + form->renderField('colore_sfondo_bottone'); ?> + form->renderField('colore_testo_bottone'); ?> +
+
+
+
diff --git a/administrator/components/com_highlights/tmpl/highlights/default.php b/administrator/components/com_highlights/tmpl/highlights/default.php index fc790a26..c396d7e9 100644 --- a/administrator/components/com_highlights/tmpl/highlights/default.php +++ b/administrator/components/com_highlights/tmpl/highlights/default.php @@ -1,4 +1,5 @@ document->getWebAssetManager(); $wa->useStyle('com_highlights.admin') - ->useScript('com_highlights.admin'); + ->useScript('com_highlights.admin'); $user = Factory::getApplication()->getIdentity(); $userId = $user->get('id'); @@ -35,8 +36,7 @@ $canOrder = $user->authorise('core.edit.state', 'com_highlights'); $saveOrder = $listOrder == 'a.ordering'; -if (!empty($saveOrder)) -{ +if (!empty($saveOrder)) { $saveOrderingUrl = 'index.php?option=com_highlights&task=highlights.saveOrderAjax&tmpl=component&' . Session::getFormToken() . '=1'; HTMLHelper::_('draggablelist.draggable'); } @@ -44,129 +44,121 @@ if (!empty($saveOrder)) ?>
+ name="adminForm" id="adminForm">
- $this)); ?> + $this)); ?>
- - - - items[0]->ordering)): ?> - + - + items[0]->ordering)): ?> + - + - - - - - - - - - - - - - - - class="js-draggable" data-url="" data-direction="" > - items as $i => $item) : - $ordering = ($listOrder == 'a.ordering'); - $canCreate = $user->authorise('core.create', 'com_highlights'); - $canEdit = $user->authorise('core.edit', 'com_highlights'); - $canCheckin = $user->authorise('core.manage', 'com_highlights'); - $canChange = $user->authorise('core.edit.state', 'com_highlights'); - ?> - - - - items[0]->ordering)) : ?> - - + - - - - - - - + + + + - + + + + + + + class="js-draggable" data-url="" data-direction="" > + items as $i => $item) : + $ordering = ($listOrder == 'a.ordering'); + $canCreate = $user->authorise('core.create', 'com_highlights'); + $canEdit = $user->authorise('core.edit', 'com_highlights'); + $canCheckin = $user->authorise('core.manage', 'com_highlights'); + $canChange = $user->authorise('core.edit.state', 'com_highlights'); + ?> + + + + items[0]->ordering)) : ?> + + + + + + + + +
- - +
+ + - - - - - - - - -
- pagination->getListFooter(); ?> -
- id); ?> - - - - - - - - - - state, $i, 'highlights.', $canChange, 'cb'); ?> - - checked_out) && $item->checked_out && ($canEdit || $canChange)) : ?> - uEditor, $item->checked_out_time, 'highlights.', $canCheckin); ?> - - - - escape($item->titolo); ?> - - - escape($item->titolo); ?> - - - etichetta; ?> - - id; ?> - + + + + + + + +
+ pagination->getListFooter(); ?> +
+ id); ?> + + + + + + + + + + state, $i, 'highlights.', $canChange, 'cb'); ?> + + checked_out) && $item->checked_out && ($canEdit || $canChange)) : ?> + uEditor, $item->checked_out_time, 'highlights.', $canCheckin); ?> + + + + escape($item->titolo); ?> + + + escape($item->titolo); ?> + + + etichetta; ?> + + + + escape($item->id); ?> + + + escape($item->id); ?> + +
- - - + + +
diff --git a/administrator/language/en-GB/com_highlights.ini b/administrator/language/en-GB/com_highlights.ini index dcb9d96d..b4cc69df 100644 --- a/administrator/language/en-GB/com_highlights.ini +++ b/administrator/language/en-GB/com_highlights.ini @@ -46,16 +46,24 @@ COM_HIGHLIGHTS_HIGHLIGHTS_CHECKED_OUT_TIME = "N/A" COM_HIGHLIGHTS_HIGHLIGHTS_CREATED_BY = "Created by" COM_HIGHLIGHTS_HIGHLIGHTS_MODIFIED_BY = "Modified by" COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA = "Etichetta" +COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA_FILTER = "- Select Etichetta -" +COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA_FILTER_DEFAULT_OPTION = "- Please select Etichetta" COM_HIGHLIGHTS_HIGHLIGHTS_TITOLO = "Titolo" COM_HIGHLIGHTS_HIGHLIGHTS_SOTTOTITOLO = "Sottotitolo" COM_HIGHLIGHTS_HIGHLIGHTS_DESCRIZIONE = "Descrizione" COM_HIGHLIGHTS_HIGHLIGHTS_LINGUA = "Lingua" COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PULSANTE = "Link Pulsante" +COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PDF = "Link Pdf" COM_HIGHLIGHTS_HIGHLIGHTS_TESTO_PULSANTE = "Testo Pulsante" COM_HIGHLIGHTS_HIGHLIGHTS_DATA = "Data" -COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE = "Classe" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_MAIN = "Immagine Main" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_SECONDARIA = "Immagine Secondaria" +COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE = "Classe" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO = "Colore Testo" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO = "Colore Sfondo" +COM_HIGHLIGHTS_HIGHLIGHTS_OPACITA = "Opacita" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO_BOTTONE = "Colore Sfondo Bottone" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO_BOTTONE = "Colore Testo Bottone" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE = "Data Inizio Pubblicazione" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE = "Data Fine Pubblicazione" COM_HIGHLIGHTS_TITLE_ETICHETTE = "Etichette" @@ -81,11 +89,17 @@ COM_HIGHLIGHTS_SOTTOTITOLO_DESC = "Sottotitolo Descending" COM_HIGHLIGHTS_DESCRIZIONE_DESC = "Descrizione Descending" COM_HIGHLIGHTS_LINGUA_DESC = "Lingua Descending" COM_HIGHLIGHTS_LINK_PULSANTE_DESC = "Link Pulsante Descending" +COM_HIGHLIGHTS_LINK_PDF_DESC = "Link Pdf Descending" COM_HIGHLIGHTS_TESTO_PULSANTE_DESC = "Testo Pulsante Descending" COM_HIGHLIGHTS_DATA_DESC = "Data Descending" -COM_HIGHLIGHTS_CLASSE_DESC = "Classe Descending" COM_HIGHLIGHTS_IMMAGINE_MAIN_DESC = "Immagine Main Descending" COM_HIGHLIGHTS_IMMAGINE_SECONDARIA_DESC = "Immagine Secondaria Descending" +COM_HIGHLIGHTS_CLASSE_DESC = "Classe Descending" +COM_HIGHLIGHTS_COLORE_TESTO_DESC = "Colore Testo Descending" +COM_HIGHLIGHTS_COLORE_SFONDO_DESC = "Colore Sfondo Descending" +COM_HIGHLIGHTS_OPACITA_DESC = "Opacita Descending" +COM_HIGHLIGHTS_COLORE_SFONDO_BOTTONE_DESC = "Colore Sfondo Bottone Descending" +COM_HIGHLIGHTS_COLORE_TESTO_BOTTONE_DESC = "Colore Testo Bottone Descending" COM_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE_DESC = "Data Inizio Pubblicazione Descending" COM_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE_DESC = "Data Fine Pubblicazione Descending" COM_HIGHLIGHTS_NOME_DESC = "Nome Descending" @@ -102,11 +116,17 @@ COM_HIGHLIGHTS_SOTTOTITOLO_ASC = "Sottotitolo Ascending" COM_HIGHLIGHTS_DESCRIZIONE_ASC = "Descrizione Ascending" COM_HIGHLIGHTS_LINGUA_ASC = "Lingua Ascending" COM_HIGHLIGHTS_LINK_PULSANTE_ASC = "Link Pulsante Ascending" +COM_HIGHLIGHTS_LINK_PDF_ASC = "Link Pdf Ascending" COM_HIGHLIGHTS_TESTO_PULSANTE_ASC = "Testo Pulsante Ascending" COM_HIGHLIGHTS_DATA_ASC = "Data Ascending" -COM_HIGHLIGHTS_CLASSE_ASC = "Classe Ascending" COM_HIGHLIGHTS_IMMAGINE_MAIN_ASC = "Immagine Main Ascending" COM_HIGHLIGHTS_IMMAGINE_SECONDARIA_ASC = "Immagine Secondaria Ascending" +COM_HIGHLIGHTS_CLASSE_ASC = "Classe Ascending" +COM_HIGHLIGHTS_COLORE_TESTO_ASC = "Colore Testo Ascending" +COM_HIGHLIGHTS_COLORE_SFONDO_ASC = "Colore Sfondo Ascending" +COM_HIGHLIGHTS_OPACITA_ASC = "Opacita Ascending" +COM_HIGHLIGHTS_COLORE_SFONDO_BOTTONE_ASC = "Colore Sfondo Bottone Ascending" +COM_HIGHLIGHTS_COLORE_TESTO_BOTTONE_ASC = "Colore Testo Bottone Ascending" COM_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE_ASC = "Data Inizio Pubblicazione Ascending" COM_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE_ASC = "Data Fine Pubblicazione Ascending" COM_HIGHLIGHTS_NOME_ASC = "Nome Ascending" @@ -141,18 +161,32 @@ COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINGUA = "Lingua" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINGUA = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PULSANTE = "Link Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PULSANTE = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PDF = "Link Pdf" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PDF = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_TESTO_PULSANTE = "Testo Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_TESTO_PULSANTE = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA = "Data" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA = "" -COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE = "Classe" -COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_MAIN = "Immagine Main" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_MAIN = "" COM_HIGHLIGHTS_TAB_IMMAGINI = "Immagini" COM_HIGHLIGHTS_FIELDSET_IMMAGINI = "Immagini" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_SECONDARIA = "Immagine Secondaria" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_SECONDARIA = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE = "Classe" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE = "" +COM_HIGHLIGHTS_TAB_STILE = "Stile" +COM_HIGHLIGHTS_FIELDSET_STILE = "Stile" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO = "Colore Testo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO = "Colore Sfondo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_OPACITA = "Opacita" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_OPACITA = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO_BOTTONE = "Colore Sfondo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO_BOTTONE = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO_BOTTONE = "Colore Testo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO_BOTTONE = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE = "Data Inizio Pubblicazione" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE = "" COM_HIGHLIGHTS_TAB_PUBBLICAZIONE = "Pubblicazione" diff --git a/administrator/language/it-IT/com_highlights.ini b/administrator/language/it-IT/com_highlights.ini index dcb9d96d..b4cc69df 100644 --- a/administrator/language/it-IT/com_highlights.ini +++ b/administrator/language/it-IT/com_highlights.ini @@ -46,16 +46,24 @@ COM_HIGHLIGHTS_HIGHLIGHTS_CHECKED_OUT_TIME = "N/A" COM_HIGHLIGHTS_HIGHLIGHTS_CREATED_BY = "Created by" COM_HIGHLIGHTS_HIGHLIGHTS_MODIFIED_BY = "Modified by" COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA = "Etichetta" +COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA_FILTER = "- Select Etichetta -" +COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA_FILTER_DEFAULT_OPTION = "- Please select Etichetta" COM_HIGHLIGHTS_HIGHLIGHTS_TITOLO = "Titolo" COM_HIGHLIGHTS_HIGHLIGHTS_SOTTOTITOLO = "Sottotitolo" COM_HIGHLIGHTS_HIGHLIGHTS_DESCRIZIONE = "Descrizione" COM_HIGHLIGHTS_HIGHLIGHTS_LINGUA = "Lingua" COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PULSANTE = "Link Pulsante" +COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PDF = "Link Pdf" COM_HIGHLIGHTS_HIGHLIGHTS_TESTO_PULSANTE = "Testo Pulsante" COM_HIGHLIGHTS_HIGHLIGHTS_DATA = "Data" -COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE = "Classe" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_MAIN = "Immagine Main" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_SECONDARIA = "Immagine Secondaria" +COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE = "Classe" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO = "Colore Testo" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO = "Colore Sfondo" +COM_HIGHLIGHTS_HIGHLIGHTS_OPACITA = "Opacita" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO_BOTTONE = "Colore Sfondo Bottone" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO_BOTTONE = "Colore Testo Bottone" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE = "Data Inizio Pubblicazione" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE = "Data Fine Pubblicazione" COM_HIGHLIGHTS_TITLE_ETICHETTE = "Etichette" @@ -81,11 +89,17 @@ COM_HIGHLIGHTS_SOTTOTITOLO_DESC = "Sottotitolo Descending" COM_HIGHLIGHTS_DESCRIZIONE_DESC = "Descrizione Descending" COM_HIGHLIGHTS_LINGUA_DESC = "Lingua Descending" COM_HIGHLIGHTS_LINK_PULSANTE_DESC = "Link Pulsante Descending" +COM_HIGHLIGHTS_LINK_PDF_DESC = "Link Pdf Descending" COM_HIGHLIGHTS_TESTO_PULSANTE_DESC = "Testo Pulsante Descending" COM_HIGHLIGHTS_DATA_DESC = "Data Descending" -COM_HIGHLIGHTS_CLASSE_DESC = "Classe Descending" COM_HIGHLIGHTS_IMMAGINE_MAIN_DESC = "Immagine Main Descending" COM_HIGHLIGHTS_IMMAGINE_SECONDARIA_DESC = "Immagine Secondaria Descending" +COM_HIGHLIGHTS_CLASSE_DESC = "Classe Descending" +COM_HIGHLIGHTS_COLORE_TESTO_DESC = "Colore Testo Descending" +COM_HIGHLIGHTS_COLORE_SFONDO_DESC = "Colore Sfondo Descending" +COM_HIGHLIGHTS_OPACITA_DESC = "Opacita Descending" +COM_HIGHLIGHTS_COLORE_SFONDO_BOTTONE_DESC = "Colore Sfondo Bottone Descending" +COM_HIGHLIGHTS_COLORE_TESTO_BOTTONE_DESC = "Colore Testo Bottone Descending" COM_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE_DESC = "Data Inizio Pubblicazione Descending" COM_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE_DESC = "Data Fine Pubblicazione Descending" COM_HIGHLIGHTS_NOME_DESC = "Nome Descending" @@ -102,11 +116,17 @@ COM_HIGHLIGHTS_SOTTOTITOLO_ASC = "Sottotitolo Ascending" COM_HIGHLIGHTS_DESCRIZIONE_ASC = "Descrizione Ascending" COM_HIGHLIGHTS_LINGUA_ASC = "Lingua Ascending" COM_HIGHLIGHTS_LINK_PULSANTE_ASC = "Link Pulsante Ascending" +COM_HIGHLIGHTS_LINK_PDF_ASC = "Link Pdf Ascending" COM_HIGHLIGHTS_TESTO_PULSANTE_ASC = "Testo Pulsante Ascending" COM_HIGHLIGHTS_DATA_ASC = "Data Ascending" -COM_HIGHLIGHTS_CLASSE_ASC = "Classe Ascending" COM_HIGHLIGHTS_IMMAGINE_MAIN_ASC = "Immagine Main Ascending" COM_HIGHLIGHTS_IMMAGINE_SECONDARIA_ASC = "Immagine Secondaria Ascending" +COM_HIGHLIGHTS_CLASSE_ASC = "Classe Ascending" +COM_HIGHLIGHTS_COLORE_TESTO_ASC = "Colore Testo Ascending" +COM_HIGHLIGHTS_COLORE_SFONDO_ASC = "Colore Sfondo Ascending" +COM_HIGHLIGHTS_OPACITA_ASC = "Opacita Ascending" +COM_HIGHLIGHTS_COLORE_SFONDO_BOTTONE_ASC = "Colore Sfondo Bottone Ascending" +COM_HIGHLIGHTS_COLORE_TESTO_BOTTONE_ASC = "Colore Testo Bottone Ascending" COM_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE_ASC = "Data Inizio Pubblicazione Ascending" COM_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE_ASC = "Data Fine Pubblicazione Ascending" COM_HIGHLIGHTS_NOME_ASC = "Nome Ascending" @@ -141,18 +161,32 @@ COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINGUA = "Lingua" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINGUA = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PULSANTE = "Link Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PULSANTE = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PDF = "Link Pdf" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PDF = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_TESTO_PULSANTE = "Testo Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_TESTO_PULSANTE = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA = "Data" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA = "" -COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE = "Classe" -COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_MAIN = "Immagine Main" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_MAIN = "" COM_HIGHLIGHTS_TAB_IMMAGINI = "Immagini" COM_HIGHLIGHTS_FIELDSET_IMMAGINI = "Immagini" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_SECONDARIA = "Immagine Secondaria" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_SECONDARIA = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE = "Classe" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE = "" +COM_HIGHLIGHTS_TAB_STILE = "Stile" +COM_HIGHLIGHTS_FIELDSET_STILE = "Stile" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO = "Colore Testo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO = "Colore Sfondo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_OPACITA = "Opacita" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_OPACITA = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO_BOTTONE = "Colore Sfondo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO_BOTTONE = "" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO_BOTTONE = "Colore Testo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO_BOTTONE = "" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE = "Data Inizio Pubblicazione" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE = "" COM_HIGHLIGHTS_TAB_PUBBLICAZIONE = "Pubblicazione" diff --git a/administrator/logs/everything.php b/administrator/logs/everything.php index ed7642ea..e0647019 100644 --- a/administrator/logs/everything.php +++ b/administrator/logs/everything.php @@ -3134,3 +3134,735 @@ Content-Transfer-Encoding: 8bit #3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() #4 [ROOT]/index.php(32): require_once('[ROOT]/i...') #5 {main} +2025-01-03T06:59:47+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T07:02:56+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T07:06:09+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T07:07:15+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T07:11:03+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T07:12:54+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T07:16:38+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T11:49:00+00:00 INFO 172.21.0.6 task4 Esecuzione attività#04 'Delete Action Logs'. +2025-01-03T11:49:00+00:00 INFO 172.21.0.6 task4 Attività> Delete Logs after 15 days +2025-01-03T11:49:00+00:00 INFO 172.21.0.6 task4 Attività> Delete Logs end +2025-01-03T11:49:00+00:00 INFO 172.21.0.6 task4 Attività terminata con successo#04 in 0.01 (rete 0.01) secondi. +2025-01-03T11:49:11+00:00 WARNING 172.21.0.6 assets No asset found for com_modules.module.557, falling back to com_modules +2025-01-03T11:49:11+00:00 WARNING 172.21.0.6 assets No asset found for com_modules.module.557, falling back to com_modules +2025-01-03T11:49:12+00:00 INFO 172.21.0.6 task2 Esecuzione attività#02 'Session GC'. +2025-01-03T11:49:12+00:00 INFO 172.21.0.6 task2 Attività> SessionGC end +2025-01-03T11:49:12+00:00 INFO 172.21.0.6 task2 Attività terminata con successo#02 in 0.01 (rete 0.01) secondi. +2025-01-03T11:49:16+00:00 INFO 172.21.0.6 task3 Esecuzione attività#03 'Update Notification'. +2025-01-03T11:49:17+00:00 INFO 172.21.0.6 task3 Attività terminata con successo#03 in 1.28 (rete 1.28) secondi. +2025-01-03T11:49:17+00:00 INFO 172.21.0.6 updater Loading information from update site #3 with name "Accredited Joomla! Translations" and URL https://update.joomla.org/language/translationlist_5.xml took 0.08 seconds +2025-01-03T11:49:17+00:00 INFO 172.21.0.6 updater Loading information from update site #4 with name "Joomla! Update Component" and URL https://update.joomla.org/core/extensions/com_joomlaupdate.xml took 0.08 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #216 with name "Regular Labs - Conditional Content" and URL https://download.regularlabs.com/updates.xml?e=conditionalcontent&type=.xml took 0.28 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #220 with name "Regular Labs - Articles" and URL https://download.regularlabs.com/updates.xml?e=articlesfield&type=.xml took 0.20 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #223 with name "COM_PHOCADOWNLOAD" and URL https://raw.githubusercontent.com/PhocaCz/PhocaDownload/master/manifest.xml took 0.10 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #224 with name "COM_PHOCAGALLERY" and URL https://raw.githubusercontent.com/PhocaCz/PhocaGallery/master/manifest.xml took 0.08 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #226 with name "Tabulizer.com" and URL http://www.tabulizer.com/update/tabulizer-update.xml took 0.31 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #233 with name "Akeeba FEF" and URL http://cdn.akeebabackup.com/updates/fef.xml took 0.08 seconds +2025-01-03T11:49:18+00:00 INFO 172.21.0.6 updater Loading information from update site #238 with name "FOF 3.x" and URL http://cdn.akeebabackup.com/updates/fof3.xml took 0.06 seconds +2025-01-03T11:49:19+00:00 INFO 172.21.0.6 updater Loading information from update site #242 with name "JEM Update Site" and URL http://www.joomlaeventmanager.net/updatecheck/update_pkg_jem.xml took 0.12 seconds +2025-01-03T11:49:19+00:00 INFO 172.21.0.6 updater Loading information from update site #243 with name "JL Content Fields Filter" and URL https://joomline.net/update.html?extension_id=5.xml took 0.52 seconds +2025-01-03T11:49:19+00:00 INFO 172.21.0.6 updater Loading information from update site #285 with name "Akeeba FEF" and URL http://cdn.akeeba.com/updates/fef.xml took 0.08 seconds +2025-01-03T11:49:20+00:00 INFO 172.21.0.6 updater Loading information from update site #313 with name "Regular Labs Library" and URL https://download.regularlabs.com/updates.xml?e=library&type=.xml took 0.34 seconds +2025-01-03T11:49:20+00:00 INFO 172.21.0.6 updater Loading information from update site #347 with name "COM_PHOCAMAPS" and URL https://raw.githubusercontent.com/PhocaCz/PhocaMaps/master/manifest.xml took 0.07 seconds +2025-01-03T11:49:20+00:00 INFO 172.21.0.6 updater Loading information from update site #348 with name "PLG_CONTENT_PHOCAMAPS" and URL https://raw.githubusercontent.com/PhocaCz/PhocaMapsPlugin/master/manifest.xml took 0.08 seconds +2025-01-03T11:49:20+00:00 INFO 172.21.0.6 updater Loading information from update site #398 with name "plg_captcha_hcaptcha" and URL https://data2site.com/updates/hcaptcha took 0.29 seconds +2025-01-03T11:49:20+00:00 INFO 172.21.0.6 updater Loading information from update site #404 with name "OSMap Free" and URL https://deploy.ostraining.com/client/update/free/stable/com_osmap took 0.30 seconds +2025-01-03T11:49:21+00:00 INFO 172.21.0.6 updater Loading information from update site #406 with name "Joomlashack Extension Support" and URL https://deploy.ostraining.com/client/update/free/stable/plg_system_osmylicensesmanager took 0.17 seconds +2025-01-03T11:49:21+00:00 INFO 172.21.0.6 updater Loading information from update site #407 with name "Joomlashack Framework" and URL https://deploy.ostraining.com/client/update/free/stable/lib_allediaframework took 0.27 seconds +2025-01-03T11:49:21+00:00 INFO 172.21.0.6 updater Loading information from update site #408 with name "Search Update Site" and URL https://raw.githubusercontent.com/joomla-extensions/search/main/manifest.xml took 0.08 seconds +2025-01-03T11:49:21+00:00 INFO 172.21.0.6 updater Loading information from update site #409 with name "Regular Labs - Conditions" and URL https://download.regularlabs.com/updates.xml?e=conditions&type=.xml took 0.20 seconds +2025-01-03T11:49:21+00:00 INFO 172.21.0.6 updater Loading information from update site #410 with name "JEM Update Site" and URL https://www.joomlaeventmanager.net/updatecheck/update_pkg_jem.xml took 0.15 seconds +2025-01-03T11:49:22+00:00 INFO 172.21.0.6 updater Loading information from update site #411 with name "Multilanguages CK Update" and URL https://update.joomlack.fr/multilanguagesck_light_update.xml took 0.48 seconds +2025-01-03T11:49:22+00:00 INFO 172.21.0.6 updater Loading information from update site #413 with name "Advanced Custom Fields" and URL https://www.tassos.gr/updates/advanced-custom-fields-pro.xml took 0.13 seconds +2025-01-03T11:49:23+00:00 INFO 172.21.0.6 updater Loading information from update site #418 with name "com_highlights" and URL https://www.component-creator.com/index.php?task=builder.preupdatecheckhook&option=com_combuilder&component=NzY0NzgtMjEzOTAw took 0.65 seconds +2025-01-03T11:49:23+00:00 INFO 172.21.0.6 updater Loading information from update site #419 with name "com_highlights" and URL https://nocdn.component-creator.com/index.php?task=builder.preupdatecheckhook&option=com_combuilder&component=NzY0NzgtMjEzOTAw took 0.40 seconds +2025-01-03T11:49:34+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.6 Array ( [0] => 6 ) +2025-01-03T11:49:54+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.6 Array ( ) +2025-01-03T13:16:46+00:00 WARNING 172.21.0.6 assets No asset found for com_modules.module.557, falling back to com_modules +2025-01-03T13:16:46+00:00 WARNING 172.21.0.6 assets No asset found for com_modules.module.557, falling back to com_modules +2025-01-03T13:16:50+00:00 INFO 172.21.0.6 updater Loading information from update site #3 with name "Accredited Joomla! Translations" and URL https://update.joomla.org/language/translationlist_5.xml took 0.10 seconds +2025-01-03T13:16:51+00:00 INFO 172.21.0.6 updater Loading information from update site #4 with name "Joomla! Update Component" and URL https://update.joomla.org/core/extensions/com_joomlaupdate.xml took 0.09 seconds +2025-01-03T13:16:51+00:00 INFO 172.21.0.6 updater Loading information from update site #216 with name "Regular Labs - Conditional Content" and URL https://download.regularlabs.com/updates.xml?e=conditionalcontent&type=.xml took 0.29 seconds +2025-01-03T13:16:51+00:00 INFO 172.21.0.6 updater Loading information from update site #220 with name "Regular Labs - Articles" and URL https://download.regularlabs.com/updates.xml?e=articlesfield&type=.xml took 0.22 seconds +2025-01-03T13:16:51+00:00 INFO 172.21.0.6 updater Loading information from update site #223 with name "COM_PHOCADOWNLOAD" and URL https://raw.githubusercontent.com/PhocaCz/PhocaDownload/master/manifest.xml took 0.10 seconds +2025-01-03T13:16:51+00:00 INFO 172.21.0.6 updater Loading information from update site #224 with name "COM_PHOCAGALLERY" and URL https://raw.githubusercontent.com/PhocaCz/PhocaGallery/master/manifest.xml took 0.08 seconds +2025-01-03T13:16:52+00:00 INFO 172.21.0.6 updater Loading information from update site #226 with name "Tabulizer.com" and URL http://www.tabulizer.com/update/tabulizer-update.xml took 0.24 seconds +2025-01-03T13:16:52+00:00 INFO 172.21.0.6 updater Loading information from update site #233 with name "Akeeba FEF" and URL http://cdn.akeebabackup.com/updates/fef.xml took 0.08 seconds +2025-01-03T13:16:52+00:00 INFO 172.21.0.6 updater Loading information from update site #238 with name "FOF 3.x" and URL http://cdn.akeebabackup.com/updates/fof3.xml took 0.06 seconds +2025-01-03T13:16:52+00:00 INFO 172.21.0.6 updater Loading information from update site #242 with name "JEM Update Site" and URL http://www.joomlaeventmanager.net/updatecheck/update_pkg_jem.xml took 0.13 seconds +2025-01-03T13:16:52+00:00 INFO 172.21.0.6 updater Loading information from update site #243 with name "JL Content Fields Filter" and URL https://joomline.net/update.html?extension_id=5.xml took 0.44 seconds +2025-01-03T13:16:53+00:00 INFO 172.21.0.6 updater Loading information from update site #285 with name "Akeeba FEF" and URL http://cdn.akeeba.com/updates/fef.xml took 0.08 seconds +2025-01-03T13:16:53+00:00 INFO 172.21.0.6 updater Loading information from update site #313 with name "Regular Labs Library" and URL https://download.regularlabs.com/updates.xml?e=library&type=.xml took 0.22 seconds +2025-01-03T13:16:53+00:00 INFO 172.21.0.6 updater Loading information from update site #347 with name "COM_PHOCAMAPS" and URL https://raw.githubusercontent.com/PhocaCz/PhocaMaps/master/manifest.xml took 0.08 seconds +2025-01-03T13:16:53+00:00 INFO 172.21.0.6 updater Loading information from update site #348 with name "PLG_CONTENT_PHOCAMAPS" and URL https://raw.githubusercontent.com/PhocaCz/PhocaMapsPlugin/master/manifest.xml took 0.09 seconds +2025-01-03T13:16:53+00:00 INFO 172.21.0.6 updater Loading information from update site #398 with name "plg_captcha_hcaptcha" and URL https://data2site.com/updates/hcaptcha took 0.28 seconds +2025-01-03T13:16:54+00:00 INFO 172.21.0.6 updater Loading information from update site #404 with name "OSMap Free" and URL https://deploy.ostraining.com/client/update/free/stable/com_osmap took 0.36 seconds +2025-01-03T13:16:54+00:00 INFO 172.21.0.6 updater Loading information from update site #406 with name "Joomlashack Extension Support" and URL https://deploy.ostraining.com/client/update/free/stable/plg_system_osmylicensesmanager took 0.28 seconds +2025-01-03T13:16:54+00:00 INFO 172.21.0.6 updater Loading information from update site #407 with name "Joomlashack Framework" and URL https://deploy.ostraining.com/client/update/free/stable/lib_allediaframework took 0.19 seconds +2025-01-03T13:16:54+00:00 INFO 172.21.0.6 updater Loading information from update site #408 with name "Search Update Site" and URL https://raw.githubusercontent.com/joomla-extensions/search/main/manifest.xml took 0.08 seconds +2025-01-03T13:16:55+00:00 INFO 172.21.0.6 updater Loading information from update site #409 with name "Regular Labs - Conditions" and URL https://download.regularlabs.com/updates.xml?e=conditions&type=.xml took 0.21 seconds +2025-01-03T13:16:55+00:00 INFO 172.21.0.6 updater Loading information from update site #410 with name "JEM Update Site" and URL https://www.joomlaeventmanager.net/updatecheck/update_pkg_jem.xml took 0.13 seconds +2025-01-03T13:16:55+00:00 INFO 172.21.0.6 updater Loading information from update site #411 with name "Multilanguages CK Update" and URL https://update.joomlack.fr/multilanguagesck_light_update.xml took 0.44 seconds +2025-01-03T13:16:55+00:00 INFO 172.21.0.6 updater Loading information from update site #413 with name "Advanced Custom Fields" and URL https://www.tassos.gr/updates/advanced-custom-fields-pro.xml took 0.15 seconds +2025-01-03T13:16:56+00:00 INFO 172.21.0.6 updater Loading information from update site #418 with name "com_highlights" and URL https://www.component-creator.com/index.php?task=builder.preupdatecheckhook&option=com_combuilder&component=NzY0NzgtMjEzOTAw took 0.77 seconds +2025-01-03T13:16:57+00:00 INFO 172.21.0.6 updater Loading information from update site #419 with name "com_highlights" and URL https://nocdn.component-creator.com/index.php?task=builder.preupdatecheckhook&option=com_combuilder&component=NzY0NzgtMjEzOTAw took 0.45 seconds +2025-01-03T13:17:58+00:00 INFO 172.21.0.6 update Inizio degli aggiornamenti SQL. +2025-01-03T13:17:58+00:00 INFO 172.21.0.6 update La versione attuale del database (schema) è 1.0.0. +2025-01-03T13:17:58+00:00 INFO 172.21.0.6 update Fine degli aggiornamenti SQL. +2025-01-03T13:20:51+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.3 Array ( [0] => 3 ) +2025-01-03T13:22:55+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.3 Array ( ) +2025-01-03T13:23:02+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:24:20+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:26:05+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:26:30+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:26:31+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.5 Array ( [0] => 5 ) +2025-01-03T13:26:54+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:27:50+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.5 Array ( ) +2025-01-03T13:29:41+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:31:00+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:36:02+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:36:42+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:38:12+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:39:02+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:39:37+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:39:53+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:40:40+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:42:43+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:43:09+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:43:26+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:43:41+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:44:04+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:44:05+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:44:19+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:44:33+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:44:59+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:55:54+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:55:58+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:56:12+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:56:19+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:56:38+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:56:46+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:57:35+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:58:05+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:58:52+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:59:07+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:59:19+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:59:23+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T13:59:48+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:00:15+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:01:12+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:01:37+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:08:40+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:08:58+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:09:38+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:09:59+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:11:20+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:12:30+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:12:43+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:15:56+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:16:02+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:16:11+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:16:54+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:17:58+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:18:18+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:19:06+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:19:53+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:19:54+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:20:26+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:21:20+00:00 DEBUG 172.21.0.6 jem forced: 0, now: 1735914080, last update: 1735826968, running update: 0, delay: 1200, tz-offset: 0 +2025-01-03T14:21:20+00:00 DEBUG 172.21.0.6 jem do cleanup... +2025-01-03T14:21:20+00:00 DEBUG 172.21.0.6 jem finished. +2025-01-03T14:21:20+00:00 WARNING 172.21.0.6 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:21:22+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:21:31+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:21:34+00:00 WARNING 172.21.0.6 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:21:36+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:21:38+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:21:45+00:00 WARNING 172.21.0.6 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:21:46+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:21:50+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:22:45+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:23:13+00:00 WARNING 172.21.0.6 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:24:30+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:32:30+00:00 WARNING 172.20.0.1 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:32:32+00:00 WARNING 172.21.0.6 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:32:37+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:32:58+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:33:43+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:34:00+00:00 WARNING 172.20.0.1 assets No asset found for com_jem.category.2, falling back to com_jem +2025-01-03T14:34:07+00:00 CRITICAL 172.20.0.1 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:44:52+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:47:45+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T14:47:49+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T14:47:59+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T14:48:15+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T14:48:18+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T14:48:24+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T14:49:49+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:50:05+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:50:05+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:50:08+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:50:08+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:50:36+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:50:37+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:50:45+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:50:52+00:00 INFO 172.21.0.6 controller Releasing edit ID com_modules.edit.module.583 Array ( ) +2025-01-03T14:52:24+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:52:29+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T14:52:53+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:52:53+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:53:05+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:53:05+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:53:10+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:02:36+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:04:08+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:06:46+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:07:15+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:40:06+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:40:09+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:41:58+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:42:30+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:50:14+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type ParseError thrown with message "syntax error, unexpected token "echo"". Stack trace: #0 [ROOT]/libraries/src/Dispatcher/ModuleDispatcher.php(52): include() +#1 [ROOT]/libraries/src/Dispatcher/ModuleDispatcher.php(55): Joomla\CMS\Dispatcher\ModuleDispatcher::Joomla\CMS\Dispatcher\{closure}('[ROOT]/m...', NULL) +#2 [ROOT]/libraries/src/Helper/ModuleHelper.php(289): Joomla\CMS\Dispatcher\ModuleDispatcher->dispatch() +#3 [ROOT]/libraries/src/Helper/ModuleHelper.php(160): Joomla\CMS\Helper\ModuleHelper::renderRawModule(Object(stdClass), Object(Joomla\Registry\Registry), Array) +#4 [ROOT]/libraries/src/Document/Renderer/Html/ModuleRenderer.php(99): Joomla\CMS\Helper\ModuleHelper::renderModule(Object(stdClass), Array) +#5 [ROOT]/libraries/src/Document/Renderer/Html/ModulesRenderer.php(51): Joomla\CMS\Document\Renderer\Html\ModuleRenderer->render(Object(stdClass), Array, NULL) +#6 [ROOT]/libraries/src/Document/HtmlDocument.php(575): Joomla\CMS\Document\Renderer\Html\ModulesRenderer->render('above', Array, NULL) +#7 [ROOT]/libraries/src/Document/HtmlDocument.php(894): Joomla\CMS\Document\HtmlDocument->getBuffer('modules', 'above', Array) +#8 [ROOT]/libraries/src/Document/HtmlDocument.php(647): Joomla\CMS\Document\HtmlDocument->_renderTemplate() +#9 [ROOT]/libraries/src/Application/CMSApplication.php(1073): Joomla\CMS\Document\HtmlDocument->render(false, Array) +#10 [ROOT]/libraries/src/Application/SiteApplication.php(732): Joomla\CMS\Application\CMSApplication->render() +#11 [ROOT]/libraries/src/Application/CMSApplication.php(311): Joomla\CMS\Application\SiteApplication->render() +#12 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#13 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#14 {main} +2025-01-03T15:50:24+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:51:49+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:52:04+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:52:54+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:53:41+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:53:55+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:54:33+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:54:55+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T15:56:04+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T16:08:00+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T16:08:43+00:00 INFO 172.21.0.6 controller Releasing edit ID com_modules.edit.module.583 Array ( ) +2025-01-03T16:08:57+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T16:10:19+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T16:28:55+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T16:29:50+00:00 CRITICAL 172.21.0.6 error Uncaught Throwable of type Joomla\CMS\Router\Exception\RouteNotFoundException thrown with message "Pagina non trovata". Stack trace: #0 [ROOT]/libraries/src/Application/SiteApplication.php(754): Joomla\CMS\Router\Router->parse(Object(Joomla\CMS\Uri\Uri), true) +#1 [ROOT]/libraries/src/Application/SiteApplication.php(244): Joomla\CMS\Application\SiteApplication->route() +#2 [ROOT]/libraries/src/Application/CMSApplication.php(306): Joomla\CMS\Application\SiteApplication->doExecute() +#3 [ROOT]/includes/app.php(58): Joomla\CMS\Application\CMSApplication->execute() +#4 [ROOT]/index.php(32): require_once('[ROOT]/i...') +#5 {main} +2025-01-03T17:24:10+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T17:24:47+00:00 INFO 172.21.0.6 update Inizio degli aggiornamenti SQL. +2025-01-03T17:24:47+00:00 INFO 172.21.0.6 update La versione attuale del database (schema) è 1.0.0. +2025-01-03T17:24:47+00:00 INFO 172.21.0.6 update Fine degli aggiornamenti SQL. +2025-01-03T17:25:06+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T17:25:50+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T17:25:53+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) diff --git a/administrator/logs/jcontroller.log.php b/administrator/logs/jcontroller.log.php index c2c6171e..81b96704 100644 --- a/administrator/logs/jcontroller.log.php +++ b/administrator/logs/jcontroller.log.php @@ -361,3 +361,33 @@ 2025-01-02T17:19:17+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.5 Array ( [0] => 5 ) 2025-01-02T17:19:26+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.5 Array ( [0] => 5 ) 2025-01-02T17:30:58+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.5 Array ( ) +2025-01-03T11:49:34+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.6 Array ( [0] => 6 ) +2025-01-03T11:49:54+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.6 Array ( ) +2025-01-03T13:20:51+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.3 Array ( [0] => 3 ) +2025-01-03T13:22:55+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.3 Array ( ) +2025-01-03T13:26:31+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.5 Array ( [0] => 5 ) +2025-01-03T13:27:50+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.5 Array ( ) +2025-01-03T14:47:45+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T14:47:49+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T14:47:59+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T14:48:15+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T14:48:18+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T14:48:24+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T14:50:05+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:50:05+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:50:08+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:50:08+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:50:36+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:50:37+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:50:52+00:00 INFO 172.21.0.6 controller Releasing edit ID com_modules.edit.module.583 Array ( ) +2025-01-03T14:52:53+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:52:53+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T14:53:05+00:00 INFO 172.21.0.6 controller Holding edit ID com_modules.edit.module.583 Array ( [0] => 583 ) +2025-01-03T14:53:05+00:00 INFO 172.21.0.6 controller Checking edit ID com_modules.edit.module.583: 1 Array ( [0] => 583 ) +2025-01-03T16:08:43+00:00 INFO 172.21.0.6 controller Releasing edit ID com_modules.edit.module.583 Array ( ) +2025-01-03T16:08:57+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T16:10:19+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T17:24:10+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) +2025-01-03T17:25:06+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T17:25:50+00:00 INFO 172.21.0.6 controller Holding edit ID com_highlights.edit.highlight.8 Array ( [0] => 8 ) +2025-01-03T17:25:53+00:00 INFO 172.21.0.6 controller Releasing edit ID com_highlights.edit.highlight.8 Array ( ) diff --git a/administrator/logs/joomla_scheduler.php b/administrator/logs/joomla_scheduler.php index d29c6399..7f07ac6b 100644 --- a/administrator/logs/joomla_scheduler.php +++ b/administrator/logs/joomla_scheduler.php @@ -41,3 +41,12 @@ 2025-01-02 11:31:59 INFO Attività terminata con successo#02 in 0.01 (rete 0.01) secondi. 2025-01-02 11:32:09 INFO Esecuzione attività#03 'Update Notification'. 2025-01-02 11:32:09 INFO Attività terminata con successo#03 in 0.41 (rete 0.41) secondi. +2025-01-03 11:49:00 INFO Esecuzione attività#04 'Delete Action Logs'. +2025-01-03 11:49:00 INFO Attività> Delete Logs after 15 days +2025-01-03 11:49:00 INFO Attività> Delete Logs end +2025-01-03 11:49:00 INFO Attività terminata con successo#04 in 0.01 (rete 0.01) secondi. +2025-01-03 11:49:12 INFO Esecuzione attività#02 'Session GC'. +2025-01-03 11:49:12 INFO Attività> SessionGC end +2025-01-03 11:49:12 INFO Attività terminata con successo#02 in 0.01 (rete 0.01) secondi. +2025-01-03 11:49:16 INFO Esecuzione attività#03 'Update Notification'. +2025-01-03 11:49:17 INFO Attività terminata con successo#03 in 1.28 (rete 1.28) secondi. diff --git a/components/com_highlights/forms/filter_highlights.xml b/components/com_highlights/forms/filter_highlights.xml new file mode 100644 index 00000000..62e9e0ee --- /dev/null +++ b/components/com_highlights/forms/filter_highlights.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/components/com_highlights/forms/highlightform.xml b/components/com_highlights/forms/highlightform.xml index 9653e6ef..843c9837 100644 --- a/components/com_highlights/forms/highlightform.xml +++ b/components/com_highlights/forms/highlightform.xml @@ -15,13 +15,21 @@ - - + + + + + - + + + + + + diff --git a/components/com_highlights/src/Model/HighlightsModel.php b/components/com_highlights/src/Model/HighlightsModel.php index a91e651b..daa47166 100644 --- a/components/com_highlights/src/Model/HighlightsModel.php +++ b/components/com_highlights/src/Model/HighlightsModel.php @@ -53,11 +53,17 @@ class HighlightsModel extends ListModel 'descrizione', 'a.descrizione', 'lingua', 'a.lingua', 'link_pulsante', 'a.link_pulsante', + 'link_pdf', 'a.link_pdf', 'testo_pulsante', 'a.testo_pulsante', 'data', 'a.data', - 'classe', 'a.classe', 'immagine_main', 'a.immagine_main', 'immagine_secondaria', 'a.immagine_secondaria', + 'classe', 'a.classe', + 'colore_testo', 'a.colore_testo', + 'colore_sfondo', 'a.colore_sfondo', + 'opacita', 'a.opacita', + 'colore_sfondo_bottone', 'a.colore_sfondo_bottone', + 'colore_testo_bottone', 'a.colore_testo_bottone', 'data_inizio_pubblicazione', 'a.data_inizio_pubblicazione', 'data_fine_pubblicazione', 'a.data_fine_pubblicazione', ); @@ -186,6 +192,14 @@ class HighlightsModel extends ListModel } + // Filtering etichetta + $filter_etichetta = $this->state->get("filter.etichetta"); + + if ($filter_etichetta) + { + $query->where("a.`etichetta` = '".$db->escape($filter_etichetta)."'"); + } + // Add the list ordering clause. diff --git a/components/com_highlights/src/View/Highlights/HtmlView.php b/components/com_highlights/src/View/Highlights/HtmlView.php index 4539c042..43269354 100644 --- a/components/com_highlights/src/View/Highlights/HtmlView.php +++ b/components/com_highlights/src/View/Highlights/HtmlView.php @@ -48,7 +48,8 @@ class HtmlView extends BaseHtmlView $this->items = $this->get('Items'); $this->pagination = $this->get('Pagination'); $this->params = $app->getParams('com_highlights'); - + $this->filterForm = $this->get('FilterForm'); + $this->activeFilters = $this->get('ActiveFilters'); // Check for errors. if (count($errors = $this->get('Errors'))) diff --git a/components/com_highlights/tmpl/highlight/default.php b/components/com_highlights/tmpl/highlight/default.php index 47d19be6..5882bbae 100644 --- a/components/com_highlights/tmpl/highlight/default.php +++ b/components/com_highlights/tmpl/highlight/default.php @@ -65,6 +65,11 @@ if (!$canEdit && Factory::getApplication()->getIdentity()->authorise('core.edit. item->link_pulsante; ?> + + + item->link_pdf; ?> + + item->testo_pulsante; ?> @@ -80,11 +85,6 @@ if (!$canEdit && Factory::getApplication()->getIdentity()->authorise('core.edit. - - - item->classe; ?> - - item->immagine_main; ?> @@ -95,6 +95,36 @@ if (!$canEdit && Factory::getApplication()->getIdentity()->authorise('core.edit. item->immagine_secondaria; ?> + + + item->classe; ?> + + + + + item->colore_testo; ?> + + + + + item->colore_sfondo; ?> + + + + + item->opacita; ?> + + + + + item->colore_sfondo_bottone; ?> + + + + + item->colore_testo_bottone; ?> + + diff --git a/components/com_highlights/tmpl/highlightform/default.php b/components/com_highlights/tmpl/highlightform/default.php index 968ad034..e4c919ca 100644 --- a/components/com_highlights/tmpl/highlightform/default.php +++ b/components/com_highlights/tmpl/highlightform/default.php @@ -73,18 +73,32 @@ $canEdit = HighlightsHelper::canUserEdit($this->item, $user); form->renderField('link_pulsante'); ?> + form->renderField('link_pdf'); ?> + form->renderField('testo_pulsante'); ?> form->renderField('data'); ?> - form->renderField('classe'); ?> - form->renderField('immagine_main'); ?> form->renderField('immagine_secondaria'); ?> + + + form->renderField('classe'); ?> + + form->renderField('colore_testo'); ?> + + form->renderField('colore_sfondo'); ?> + + form->renderField('opacita'); ?> + + form->renderField('colore_sfondo_bottone'); ?> + + form->renderField('colore_testo_bottone'); ?> + form->renderField('data_inizio_pubblicazione'); ?> diff --git a/components/com_highlights/tmpl/highlights/default.php b/components/com_highlights/tmpl/highlights/default.php index 2f5ec677..cfb73e7a 100644 --- a/components/com_highlights/tmpl/highlights/default.php +++ b/components/com_highlights/tmpl/highlights/default.php @@ -44,7 +44,7 @@ $wa->useStyle('com_highlights.list');
- + filterForm)) { echo LayoutHelper::render('joomla.searchtools.default', array('view' => $this)); } ?>
@@ -106,13 +106,7 @@ $wa->useStyle('com_highlights.list');
- getIdentity()->authorise('core.manage', 'com_highlights.' . $item->id) || $item->checked_out == Factory::getApplication()->getIdentity()->id; ?> - checked_out > 0) : ?> - - uEditor, $item->checked_out_time, 'highlight.', false); ?> - - - escape($item->titolo); ?> + titolo; ?> etichetta; ?> diff --git a/db-latest.sql.zip b/db-latest.sql.zip index 85ab3d93..5e176c80 100644 Binary files a/db-latest.sql.zip and b/db-latest.sql.zip differ diff --git a/language/en-GB/com_highlights.ini b/language/en-GB/com_highlights.ini index 321028cb..739b3e05 100644 --- a/language/en-GB/com_highlights.ini +++ b/language/en-GB/com_highlights.ini @@ -45,6 +45,7 @@ COM_HIGHLIGHTS_HIGHLIGHTS_MODIFIED_BY="Modified by" COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA="Etichetta" COM_HIGHLIGHTS_ETICHETTA_DESC="Etichetta Descending" COM_HIGHLIGHTS_ETICHETTA_ASC="Etichetta Ascending" +COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA_FILTER="- Select Etichetta -" COM_HIGHLIGHTS_HIGHLIGHTS_TITOLO="Titolo" COM_HIGHLIGHTS_TITOLO_DESC="Titolo Descending" COM_HIGHLIGHTS_TITOLO_ASC="Titolo Ascending" @@ -52,11 +53,17 @@ COM_HIGHLIGHTS_HIGHLIGHTS_SOTTOTITOLO="Sottotitolo" COM_HIGHLIGHTS_HIGHLIGHTS_DESCRIZIONE="Descrizione" COM_HIGHLIGHTS_HIGHLIGHTS_LINGUA="Lingua" COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PULSANTE="Link Pulsante" +COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PDF="Link Pdf" COM_HIGHLIGHTS_HIGHLIGHTS_TESTO_PULSANTE="Testo Pulsante" COM_HIGHLIGHTS_HIGHLIGHTS_DATA="Data" -COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE="Classe" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_MAIN="Immagine Main" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_SECONDARIA="Immagine Secondaria" +COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE="Classe" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO="Colore Testo" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO="Colore Sfondo" +COM_HIGHLIGHTS_HIGHLIGHTS_OPACITA="Opacita" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO_BOTTONE="Colore Sfondo Bottone" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO_BOTTONE="Colore Testo Bottone" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE="Data Inizio Pubblicazione" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE="Data Fine Pubblicazione" @@ -90,18 +97,32 @@ COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINGUA="Lingua" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINGUA="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PULSANTE="Link Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PULSANTE="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PDF="Link Pdf" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PDF="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_TESTO_PULSANTE="Testo Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_TESTO_PULSANTE="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA="Data" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA="" -COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE="Classe" -COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_MAIN="Immagine Main" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_MAIN="" COM_HIGHLIGHTS_TAB_IMMAGINI="Immagini" COM_HIGHLIGHTS_FIELDSET_IMMAGINI="Immagini" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_SECONDARIA="Immagine Secondaria" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_SECONDARIA="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE="Classe" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE="" +COM_HIGHLIGHTS_TAB_STILE="Stile" +COM_HIGHLIGHTS_FIELDSET_STILE="Stile" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO="Colore Testo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO="Colore Sfondo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_OPACITA="Opacita" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_OPACITA="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO_BOTTONE="Colore Sfondo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO_BOTTONE="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO_BOTTONE="Colore Testo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO_BOTTONE="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE="Data Inizio Pubblicazione" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE="" COM_HIGHLIGHTS_TAB_PUBBLICAZIONE="Pubblicazione" diff --git a/language/en-GB/mod_highlights.ini b/language/en-GB/mod_highlights.ini index e0c6ca84..65fbde61 100644 --- a/language/en-GB/mod_highlights.ini +++ b/language/en-GB/mod_highlights.ini @@ -6,6 +6,7 @@ MOD_HIGHLIGHTS_ITEM="Item" MOD_HIGHLIGHTS_DIDATTICA="Didattica" MOD_HIGHLIGHTS_SLIDE="Slide" MOD_HIGHLIGHTS_COUNTDOWN="Countdown" +MOD_HIGHLIGHTS_CAROSELLO="Carosello" MOD_HIGHLIGHTS_CONTENT_TYPE_TAB_LBL="Content type" MOD_HIGHLIGHTS_CONTENT_TYPE_LBL="Content type" diff --git a/language/it-IT/com_highlights.ini b/language/it-IT/com_highlights.ini index 321028cb..739b3e05 100644 --- a/language/it-IT/com_highlights.ini +++ b/language/it-IT/com_highlights.ini @@ -45,6 +45,7 @@ COM_HIGHLIGHTS_HIGHLIGHTS_MODIFIED_BY="Modified by" COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA="Etichetta" COM_HIGHLIGHTS_ETICHETTA_DESC="Etichetta Descending" COM_HIGHLIGHTS_ETICHETTA_ASC="Etichetta Ascending" +COM_HIGHLIGHTS_HIGHLIGHTS_ETICHETTA_FILTER="- Select Etichetta -" COM_HIGHLIGHTS_HIGHLIGHTS_TITOLO="Titolo" COM_HIGHLIGHTS_TITOLO_DESC="Titolo Descending" COM_HIGHLIGHTS_TITOLO_ASC="Titolo Ascending" @@ -52,11 +53,17 @@ COM_HIGHLIGHTS_HIGHLIGHTS_SOTTOTITOLO="Sottotitolo" COM_HIGHLIGHTS_HIGHLIGHTS_DESCRIZIONE="Descrizione" COM_HIGHLIGHTS_HIGHLIGHTS_LINGUA="Lingua" COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PULSANTE="Link Pulsante" +COM_HIGHLIGHTS_HIGHLIGHTS_LINK_PDF="Link Pdf" COM_HIGHLIGHTS_HIGHLIGHTS_TESTO_PULSANTE="Testo Pulsante" COM_HIGHLIGHTS_HIGHLIGHTS_DATA="Data" -COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE="Classe" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_MAIN="Immagine Main" COM_HIGHLIGHTS_HIGHLIGHTS_IMMAGINE_SECONDARIA="Immagine Secondaria" +COM_HIGHLIGHTS_HIGHLIGHTS_CLASSE="Classe" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO="Colore Testo" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO="Colore Sfondo" +COM_HIGHLIGHTS_HIGHLIGHTS_OPACITA="Opacita" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_SFONDO_BOTTONE="Colore Sfondo Bottone" +COM_HIGHLIGHTS_HIGHLIGHTS_COLORE_TESTO_BOTTONE="Colore Testo Bottone" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_INIZIO_PUBBLICAZIONE="Data Inizio Pubblicazione" COM_HIGHLIGHTS_HIGHLIGHTS_DATA_FINE_PUBBLICAZIONE="Data Fine Pubblicazione" @@ -90,18 +97,32 @@ COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINGUA="Lingua" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINGUA="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PULSANTE="Link Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PULSANTE="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_LINK_PDF="Link Pdf" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_LINK_PDF="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_TESTO_PULSANTE="Testo Pulsante" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_TESTO_PULSANTE="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA="Data" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA="" -COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE="Classe" -COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_MAIN="Immagine Main" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_MAIN="" COM_HIGHLIGHTS_TAB_IMMAGINI="Immagini" COM_HIGHLIGHTS_FIELDSET_IMMAGINI="Immagini" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_IMMAGINE_SECONDARIA="Immagine Secondaria" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_IMMAGINE_SECONDARIA="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_CLASSE="Classe" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_CLASSE="" +COM_HIGHLIGHTS_TAB_STILE="Stile" +COM_HIGHLIGHTS_FIELDSET_STILE="Stile" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO="Colore Testo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO="Colore Sfondo" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_OPACITA="Opacita" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_OPACITA="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_SFONDO_BOTTONE="Colore Sfondo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_SFONDO_BOTTONE="" +COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_COLORE_TESTO_BOTTONE="Colore Testo Bottone" +COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_COLORE_TESTO_BOTTONE="" COM_HIGHLIGHTS_FORM_LBL_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE="Data Inizio Pubblicazione" COM_HIGHLIGHTS_FORM_DESC_HIGHLIGHT_DATA_INIZIO_PUBBLICAZIONE="" COM_HIGHLIGHTS_TAB_PUBBLICAZIONE="Pubblicazione" diff --git a/media/templates/site/joomla-italia-theme/css/pcrt-jit.css b/media/templates/site/joomla-italia-theme/css/pcrt-jit.css index 70554103..a70a3361 100644 --- a/media/templates/site/joomla-italia-theme/css/pcrt-jit.css +++ b/media/templates/site/joomla-italia-theme/css/pcrt-jit.css @@ -1571,21 +1571,49 @@ a.cardblu:hover{ .caption-slide{ width: 100%; max-width: 100%; + min-height: 280px; } + .wrap-slide { width: 100%; - top:unset; + top:20em; left: unset; transform: unset; position: relative; } - .caption-slide{ - background: #EBF5FD; - height: 226px; + + .larghezza50 .row50slide{ + position: absolute; + top: 0; + left: 0; + width: 100%; + } .caption-slide a{ color:#003882; } + + .swiper-content.larghezza50 .caption-slide{ + background-color: #000; + } + + .swiper-content.larghezza100::after { + display: none; + } + + .swiper-content.larghezza100 .wrap-slide { + top: 0; + } + + .swiper-content.larghezza100 .wrap-slide .caption-slide{ + background-color: #000; + } + + .img-caption{ + top: -118px; + position: absolute; + } + } .mod-breadcrumbs.breadcrumb{ @@ -1908,7 +1936,7 @@ text-decoration: none; align-items: center; color: #000; font-family: "Titillium Web"; - font-size: 30px; + font-size: 3rem; font-style: normal; font-weight: 600; line-height: normal; @@ -1957,4 +1985,182 @@ text-decoration: none; .jem-list-row .fa {color:#C3334B} .jem-event-info-small .fa {color:#6f6f6f} .jem-event-title h4 {font-size: 1.1rem;} -.jem-event-date {color:#7a7a7a} \ No newline at end of file +.jem-event-date {color:#7a7a7a} + + + +.countdown { + min-height: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + +} + +.flip-clock { + text-align: center; + perspective: 400px; + margin: 20px auto; +} + +.flip-clock *, +.flip-clock *:before, +.flip-clock *:after { + box-sizing: border-box; +} + +.flip-clock__piece { + display: inline-block; + margin: 0 5px; +} + +.flip-clock__slot { + font-size: 1rem; +} + +.cardcontatore { + display: block; + position: relative; + padding-bottom: 0.72em; + font-size: 3rem; + line-height: 0.95; +} + +.cardcontatore__top, +.cardcontatore__bottom, +.cardcontatore__back::before, +.cardcontatore__back::after { + display: block; + height: 0.72em; + color: #ccc; + background: #222; + padding: 0.15em; + border-radius: 0.15em 0.15em 0 0; + backface-visibility: hidden; + transform-style: preserve-3d; + width: 1.8em; + transform: translateZ(0); +} + +.cardcontatore__bottom { + color: #FFF; + position: absolute; + top: 50%; + left: 0; + border-top: solid 1px #000; + background: #393939; + border-radius: 0 0 0.15em 0.15em; + pointer-events: none; + overflow: hidden; +} + +.cardcontatore__bottom::after { + display: block; + margin-top: -0.72em; +} + +.cardcontatore__back::before, +.cardcontatore__bottom::after { + content: attr(data-value); +} + +.cardcontatore__back { + position: absolute; + top: 0; + height: 100%; + left: 0%; + pointer-events: none; +} + +.cardcontatore__back::before { + position: relative; + z-index: -1; + overflow: hidden; +} + +.flip .cardcontatore__back::before { + -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35); + animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + transform-origin: center bottom; +} + +.flip .cardcontatore__back .cardcontatore__bottom { + transform-origin: center top; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1); + animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1); +} + +@-webkit-keyframes flipTop { + 0% { + transform: rotateX(0deg); + z-index: 2; + } + 0%, + 99% { + opacity: 0.99; + } + 100% { + transform: rotateX(-90deg); + opacity: 0; + } +} + +@keyframes flipTop { + 0% { + transform: rotateX(0deg); + z-index: 2; + } + 0%, + 99% { + opacity: 0.99; + } + 100% { + transform: rotateX(-90deg); + opacity: 0; + } +} + +@-webkit-keyframes flipBottom { + 0%, + 50% { + z-index: -1; + transform: rotateX(90deg); + opacity: 0; + } + 51% { + opacity: 0.99; + } + 100% { + opacity: 0.99; + transform: rotateX(0deg); + z-index: 5; + } +} + +@keyframes flipBottom { + 0%, + 50% { + z-index: -1; + transform: rotateX(90deg); + opacity: 0; + } + + 51% { + opacity: 0.99; + } + 100% { + opacity: 0.99; + transform: rotateX(0deg); + z-index: 5; + } + } + + .contatore .sottotitolo{ + font-size: 1.2rem; + font-weight: 600; + } \ No newline at end of file diff --git a/media/templates/site/joomla-italia-theme/css/pcrt-main.css b/media/templates/site/joomla-italia-theme/css/pcrt-main.css index b18a8e22..6f8f6028 100644 --- a/media/templates/site/joomla-italia-theme/css/pcrt-main.css +++ b/media/templates/site/joomla-italia-theme/css/pcrt-main.css @@ -354,6 +354,10 @@ ul.menucerca li{ .section-hero-left .decoration-02 { display: none; } + + .it-brand-wrapper a img{ + width: 160px; + } } diff --git a/media/templates/site/joomla-italia-theme/js/countdown.css b/media/templates/site/joomla-italia-theme/js/countdown.css new file mode 100755 index 00000000..47c97706 --- /dev/null +++ b/media/templates/site/joomla-italia-theme/js/countdown.css @@ -0,0 +1,155 @@ +html { + height: 100%; +} +body { + min-height: 100%; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + background: #EEE; +} +.flip-clock { + text-align: center; + perspective: 400px; + margin: 20px auto; +} +.flip-clock *, +.flip-clock *:before, +.flip-clock *:after { + box-sizing: border-box; +} +.flip-clock__piece { + display: inline-block; + margin: 0 5px; +} +.flip-clock__slot { + font-size: 2vw; +} +.card { + display: block; + position: relative; + padding-bottom: 0.72em; + font-size: 9vw; + line-height: 0.95; +} +.card__top, +.card__bottom, +.card__back::before, +.card__back::after { + display: block; + height: 0.72em; + color: #ccc; + background: #222; + padding: 0.25em 0.25em; + border-radius: 0.15em 0.15em 0 0; + backface-visiblity: hidden; + transform-style: preserve-3d; + width: 1.8em; + transform: translateZ(0); +} +.card__bottom { + color: #FFF; + position: absolute; + top: 50%; + left: 0; + border-top: solid 1px #000; + background: #393939; + border-radius: 0 0 0.15em 0.15em; + pointer-events: none; + overflow: hidden; +} +.card__bottom::after { + display: block; + margin-top: -0.72em; +} +.card__back::before, +.card__bottom::after { + content: attr(data-value); +} +.card__back { + position: absolute; + top: 0; + height: 100%; + left: 0%; + pointer-events: none; +} +.card__back::before { + position: relative; + z-index: -1; + overflow: hidden; +} +.flip .card__back::before { + -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35); + animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35); + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + transform-origin: center bottom; +} +.flip .card__back .card__bottom { + transform-origin: center top; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1); + animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1); +} +@-webkit-keyframes flipTop { + 0% { + transform: rotateX(0deg); + z-index: 2; + } + 0%, + 99% { + opacity: 0.99; + } + 100% { + transform: rotateX(-90deg); + opacity: 0; + } +} +@keyframes flipTop { + 0% { + transform: rotateX(0deg); + z-index: 2; + } + 0%, + 99% { + opacity: 0.99; + } + 100% { + transform: rotateX(-90deg); + opacity: 0; + } +} +@-webkit-keyframes flipBottom { + 0%, + 50% { + z-index: -1; + transform: rotateX(90deg); + opacity: 0; + } + 51% { + opacity: 0.99; + } + 100% { + opacity: 0.99; + transform: rotateX(0deg); + z-index: 5; + } +} +@keyframes flipBottom { + 0%, + 50% { + z-index: -1; + transform: rotateX(90deg); + opacity: 0; + } + 51% { + opacity: 0.99; + } + 100% { + opacity: 0.99; + transform: rotateX(0deg); + z-index: 5; + } +} \ No newline at end of file diff --git a/media/templates/site/joomla-italia-theme/js/countdown.js b/media/templates/site/joomla-italia-theme/js/countdown.js new file mode 100755 index 00000000..26042373 --- /dev/null +++ b/media/templates/site/joomla-italia-theme/js/countdown.js @@ -0,0 +1,113 @@ +console.clear(); + + +function CountdownTracker(label, value){ + + var el = document.createElement('span'); + + el.className = 'flip-clock__piece'; + el.innerHTML = '' + + '' + label + ''; + + this.el = el; + + var top = el.querySelector('.card__top'), + bottom = el.querySelector('.card__bottom'), + back = el.querySelector('.card__back'), + backBottom = el.querySelector('.card__back .card__bottom'); + + this.update = function(val){ + val = ( '0' + val ).slice(-2); + if ( val !== this.currentValue ) { + + if ( this.currentValue >= 0 ) { + back.setAttribute('data-value', this.currentValue); + bottom.setAttribute('data-value', this.currentValue); + } + this.currentValue = val; + top.innerText = this.currentValue; + backBottom.setAttribute('data-value', this.currentValue); + + this.el.classList.remove('flip'); + void this.el.offsetWidth; + this.el.classList.add('flip'); + } + } + + this.update(value); +} + +// Calculation adapted from https://www.sitepoint.com/build-javascript-countdown-timer-no-dependencies/ + +function getTimeRemaining(endtime) { + var t = Date.parse(endtime) - Date.parse(new Date()); + return { + 'Total': t, + 'Days': Math.floor(t / (1000 * 60 * 60 * 24)), + 'Hours': Math.floor((t / (1000 * 60 * 60)) % 24), + 'Minutes': Math.floor((t / 1000 / 60) % 60), + 'Seconds': Math.floor((t / 1000) % 60) + }; +} + +function getTime() { + var t = new Date(); + return { + 'Total': t, + 'Hours': t.getHours() % 12, + 'Minutes': t.getMinutes(), + 'Seconds': t.getSeconds() + }; +} + +function Clock(countdown,callback) { + + countdown = countdown ? new Date(Date.parse(countdown)) : false; + callback = callback || function(){}; + + var updateFn = countdown ? getTimeRemaining : getTime; + + this.el = document.createElement('div'); + this.el.className = 'flip-clock'; + + var trackers = {}, + t = updateFn(countdown), + key, timeinterval; + + for ( key in t ){ + if ( key === 'Total' ) { continue; } + trackers[key] = new CountdownTracker(key, t[key]); + this.el.appendChild(trackers[key].el); + } + + var i = 0; + function updateClock() { + timeinterval = requestAnimationFrame(updateClock); + + // throttle so it's not constantly updating the time. + if ( i++ % 10 ) { return; } + + var t = updateFn(countdown); + if ( t.Total < 0 ) { + cancelAnimationFrame(timeinterval); + for ( key in trackers ){ + trackers[key].update( 0 ); + } + callback(); + return; + } + + for ( key in trackers ){ + trackers[key].update( t[key] ); + } + } + + setTimeout(updateClock,500); +} + +var deadline = new Date(Date.parse(new Date()) + 12 * 24 * 60 * 60 * 1000); +var c = new Clock(deadline, function(){ alert('countdown complete') }); +document.body.appendChild(c.el); + +var clock = new Clock(); +document.body.appendChild(clock.el); \ No newline at end of file diff --git a/modules/mod_highlights/mod_highlights.xml b/modules/mod_highlights/mod_highlights.xml index 91f81adf..7c86b875 100644 --- a/modules/mod_highlights/mod_highlights.xml +++ b/modules/mod_highlights/mod_highlights.xml @@ -10,7 +10,7 @@ CVS: 1.0.0 MOD_HIGHLIGHTS_DESCRIPTION Pcrt\Module\Highlights - + mod_highlights.php index.html @@ -23,32 +23,33 @@ joomla.asset.json - - en-GB/mod_highlights.ini - en-GB/mod_highlights.sys.ini - it-IT/mod_highlights.ini - it-IT/mod_highlights.sys.ini + + en-GB/mod_highlights.ini + en-GB/mod_highlights.sys.ini + it-IT/mod_highlights.ini + it-IT/mod_highlights.sys.ini -
- + +
-
@@ -56,49 +57,13 @@ name="html_content" type="editor" filter="safehtml" label="MOD_HIGHLIGHTS_HTML_LBL" description="MOD_HIGHLIGHTS_HTML_DESC" /> -
-
--> + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + - - - - - - - - - - + name="ordering" + type="list" + label="Criterio di ordinamento" + description="Scegli il criterio con cui ordinare gli elementi" + class="form-select" + default="id" + > + + + + + + + + + + + - -
+
- https://www.component-creator.com/index.php?task=builder.preupdatecheckhook&option=com_combuilder&component=NzY0NzgtMjEzOTAw + + https://www.component-creator.com/index.php?task=builder.preupdatecheckhook&option=com_combuilder&component=NzY0NzgtMjEzOTAw - + \ No newline at end of file diff --git a/modules/mod_highlights/src/Helper/HighlightsHelper.php b/modules/mod_highlights/src/Helper/HighlightsHelper.php index d9c97fbd..2571b56e 100644 --- a/modules/mod_highlights/src/Helper/HighlightsHelper.php +++ b/modules/mod_highlights/src/Helper/HighlightsHelper.php @@ -66,6 +66,9 @@ Class HighlightsHelper // Se la lingua è valida, filtra anche per lingua $query->where( $db->quoteName('lingua') . ' LIKE ' . $db->quote($lingua) + ) + ->orWhere( + $db->quoteName('lingua') . ' LIKE ' . $db->quote("*") ); } diff --git a/modules/mod_highlights/tmpl/carosello.php b/modules/mod_highlights/tmpl/carosello.php new file mode 100644 index 00000000..34eaca74 --- /dev/null +++ b/modules/mod_highlights/tmpl/carosello.php @@ -0,0 +1,52 @@ + + * @copyright 2024 Eddy Prosperi + * @license GNU General Public License versione 2 o successiva; vedi LICENSE.txt + */ +defined('_JEXEC') or die; + +use Pcrt\Module\Highlights\Site\Helper\HighlightsHelper; + +$elements = HighlightsHelper::getList($params); + +//Come accedere alle variabili generali: +$opacita = $params->get('opacita', []); +$sfondo = $params->get('sfondo', []); + +?> + + +
+
+
+ +
+ +
+ +
+ +
+
+
+
+ \ No newline at end of file diff --git a/modules/mod_highlights/tmpl/countdown.php b/modules/mod_highlights/tmpl/countdown.php index 9faa2504..34eaca74 100644 --- a/modules/mod_highlights/tmpl/countdown.php +++ b/modules/mod_highlights/tmpl/countdown.php @@ -14,10 +14,6 @@ use Pcrt\Module\Highlights\Site\Helper\HighlightsHelper; $elements = HighlightsHelper::getList($params); -$tableField = explode(':', $params->get('field')); -$table_name = !empty($tableField[0]) ? $tableField[0] : ''; -$field_name = !empty($tableField[1]) ? $tableField[1] : ''; - //Come accedere alle variabili generali: $opacita = $params->get('opacita', []); $sfondo = $params->get('sfondo', []); diff --git a/modules/mod_highlights/tmpl/didattica.php b/modules/mod_highlights/tmpl/didattica.php index 9faa2504..34eaca74 100644 --- a/modules/mod_highlights/tmpl/didattica.php +++ b/modules/mod_highlights/tmpl/didattica.php @@ -14,10 +14,6 @@ use Pcrt\Module\Highlights\Site\Helper\HighlightsHelper; $elements = HighlightsHelper::getList($params); -$tableField = explode(':', $params->get('field')); -$table_name = !empty($tableField[0]) ? $tableField[0] : ''; -$field_name = !empty($tableField[1]) ? $tableField[1] : ''; - //Come accedere alle variabili generali: $opacita = $params->get('opacita', []); $sfondo = $params->get('sfondo', []); diff --git a/modules/mod_highlights/tmpl/slide.php b/modules/mod_highlights/tmpl/slide.php index 9faa2504..34eaca74 100644 --- a/modules/mod_highlights/tmpl/slide.php +++ b/modules/mod_highlights/tmpl/slide.php @@ -14,10 +14,6 @@ use Pcrt\Module\Highlights\Site\Helper\HighlightsHelper; $elements = HighlightsHelper::getList($params); -$tableField = explode(':', $params->get('field')); -$table_name = !empty($tableField[0]) ? $tableField[0] : ''; -$field_name = !empty($tableField[1]) ? $tableField[1] : ''; - //Come accedere alle variabili generali: $opacita = $params->get('opacita', []); $sfondo = $params->get('sfondo', []); diff --git a/plugins/finder/highlightshighlights/highlightshighlights.xml b/plugins/finder/highlightshighlights/highlightshighlights.xml index 3eeed556..8c069ea0 100644 --- a/plugins/finder/highlightshighlights/highlightshighlights.xml +++ b/plugins/finder/highlightshighlights/highlightshighlights.xml @@ -2,7 +2,7 @@ plg_finder_highlightshighlights Eddy Prosperi - 2024-12-31 + 2025-01-03 2024 Eddy Prosperi GNU General Public License versione 2 o successiva; vedi LICENSE.txt eddy.prosperi@protocollicreativi.it diff --git a/templates/joomla-italia-theme/html/mod_highlights/countdown.php b/templates/joomla-italia-theme/html/mod_highlights/countdown.php index 9faa2504..84514bb6 100644 --- a/templates/joomla-italia-theme/html/mod_highlights/countdown.php +++ b/templates/joomla-italia-theme/html/mod_highlights/countdown.php @@ -22,35 +22,148 @@ $field_name = !empty($tableField[1]) ? $tableField[1] : ''; $opacita = $params->get('opacita', []); $sfondo = $params->get('sfondo', []); + ?> -
-
-
- -
- + + +
+ $element) : ?> +
+
+
+
titolo; ?>
+ sottotitolo)) : ?> +

sottotitolo; ?>

+ + descrizione)) : ?> +

descrizione; ?>

+ + link_pulsante)) : ?> + testo_pulsante; ?> +
- -
- +
+
-
+ + + + + +
\ No newline at end of file diff --git a/templates/joomla-italia-theme/html/mod_highlights/slide.php b/templates/joomla-italia-theme/html/mod_highlights/slide.php index 22a08aff..4403361b 100644 --- a/templates/joomla-italia-theme/html/mod_highlights/slide.php +++ b/templates/joomla-italia-theme/html/mod_highlights/slide.php @@ -79,7 +79,7 @@ var swiper = new Swiper(".sliderfull'. $module->id . '", {
-
+