Back to top

Autore Topic: [RISOLTO]Problema componente TAGS  (Letto 1668 volte)

Offline pupito

  • Appassionato
  • ***
  • Post: 310
    • Mostra profilo
[RISOLTO]Problema componente TAGS
« il: 30 Set 2014, 08:11:55 »
Ciao, quando tento di salvare un nuovo tag con il componente tags mi riporta un errore. Vedi immagine. Utilizzo joomla 3.3.4, template t3 blank. Si può risolvere?

[allegato eliminato automaticamente dopo un anno]
« Ultima modifica: 18 Ott 2014, 20:39:55 da pupito »

Offline ItalPascal

  • Appassionato
  • ***
  • Post: 457
    • Mostra profilo
Re:Problema componente TAGS
« Risposta #1 il: 16 Ott 2014, 15:45:39 »
Ciao, io ho le stesso problema con Purity. Ho controllato su Global Configuration ma sembra che vada tutto bene.


Ancora nulla di nuovo ?
« Ultima modifica: 16 Ott 2014, 15:55:14 da ItalPascal »
Se vuoi prenderti del tempo per "rilassare" corpo e mente visita www.marilontani.com

Offline ItalPascal

  • Appassionato
  • ***
  • Post: 457
    • Mostra profilo
Re:Problema componente TAGS
« Risposta #2 il: 18 Ott 2014, 10:53:38 »
Pupito io ho risolto il problema.

Probabilmente anche tu hai cancellato il tag "Joomla".

Sono andato sul database e selezionando abcd3_tags ho visto che non era presente nulla.

Quindi sono andato a vedere una tabella in locale kjhng_tags

Ho visto dalla tabella user il mio ID e poi ho fatto modifica. ( ho messo in grassetto per farti vedere dove si trova )

facendo esporta dal db buono e SOLO della tabella TAG si ottiene :

Struttura della tabella `abcd3_tags`
--

CREATE TABLE `abcd3_tags` (
`id` int(10) unsigned NOT NULL,
  `parent_id` int(10) unsigned NOT NULL DEFAULT '0',
  `lft` int(11) NOT NULL DEFAULT '0',
  `rgt` int(11) NOT NULL DEFAULT '0',
  `level` int(10) unsigned NOT NULL DEFAULT '0',
  `path` varchar(255) NOT NULL DEFAULT '',
  `title` varchar(255) NOT NULL,
  `alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `note` varchar(255) NOT NULL DEFAULT '',
  `description` mediumtext NOT NULL,
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access` int(10) unsigned NOT NULL DEFAULT '0',
  `params` text NOT NULL,
  `metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.',
  `metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.',
  `metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.',
  `created_user_id` int(10) unsigned NOT NULL DEFAULT '0',
  `created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by_alias` varchar(255) NOT NULL DEFAULT '',
  `modified_user_id` int(10) unsigned NOT NULL DEFAULT '0',
  `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `images` text NOT NULL,
  `urls` text NOT NULL,
  `hits` int(10) unsigned NOT NULL DEFAULT '0',
  `language` char(7) NOT NULL,
  `version` int(10) unsigned NOT NULL DEFAULT '1',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dump dei dati per la tabella `abcd3_tags`
--

INSERT INTO `abcd3_tags` (`id`, `parent_id`, `lft`, `rgt`, `level`, `path`, `title`, `alias`, `note`, `description`, `published`, `checked_out`, `checked_out_time`, `access`, `params`, `metadesc`, `metakey`, `metadata`, `created_user_id`, `created_time`, `created_by_alias`, `modified_user_id`, `modified_time`, `images`, `urls`, `hits`, `language`, `version`, `publish_up`, `publish_down`) VALUES
(1, 0, 0, 1, 0, '', 'ROOT', 'root', '', '', 1, 0, '0000-00-00 00:00:00', 1, '', '', '', '', 42, '2011-01-01 00:00:01', '', 0, '0000-00-00 00:00:00', '', '', 0, '*', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00'),
(2, 1, 1, 2, 1, 'joomla', 'Joomla', 'joomla', '', '', 1, 0, '0000-00-00 00:00:00', 1, '{"tag_layout":"","tag_link_class":"label label-info","image_intro":"","float_intro":"","image_intro_alt":"","image_intro_caption":"","image_fulltext":"","float_fulltext":"","image_fulltext_alt":"","image_fulltext_caption":""}', '', '', '{"author":"","robots":""}', 42, '2013-11-16 00:00:00', '', 0, '0000-00-00 00:00:00', '', '', 0, '*', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00');

--
-- Indexes for dumped tables
--
--
-- Indexes for table `abcd3_tags`
--
ALTER TABLE `abcd3_tags`
 ADD PRIMARY KEY (`id`), ADD KEY `tag_idx` (`published`,`access`), ADD KEY `idx_access` (`access`), ADD KEY `idx_checkout` (`checked_out`), ADD KEY `idx_path` (`path`), ADD KEY `idx_left_right` (`lft`,`rgt`), ADD KEY `idx_alias` (`alias`), ADD KEY `idx_language` (`language`);

--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `abcd3_tags`
--
ALTER TABLE `abcd3_tags`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
_____________
Devi eliminare la tabella in questione ( io ho fatto prima un bel "esporta db"  ;)

Apri il DB con phpMyAdmin, seleziona DB e apri cartella Query, lanci e tutto torna al suo posto.


Spero possa aiutarti.
« Ultima modifica: 18 Ott 2014, 11:18:35 da ItalPascal »
Se vuoi prenderti del tempo per "rilassare" corpo e mente visita www.marilontani.com

Offline pupito

  • Appassionato
  • ***
  • Post: 310
    • Mostra profilo
Re:Problema componente TAGS
« Risposta #3 il: 18 Ott 2014, 16:52:12 »
grazie per l'informazione. Io non ho cancellato il tag joomla ma ho installato tutto tramite quickstart purity iii.
Non riuscendo a risolvere  ho optato per altro template. Vediamo se qualcuno con lo stesso problema riesce a risolvere con il tuo suggerimento.

Offline ItalPascal

  • Appassionato
  • ***
  • Post: 457
    • Mostra profilo
Re:Problema componente TAGS
« Risposta #4 il: 18 Ott 2014, 18:01:37 »
Ok, però se io avevo il tuo stesso problema e ho risolto non credi che dovresti inserire RISOLTO nel tuo messaggio ?



Se vuoi prenderti del tempo per "rilassare" corpo e mente visita www.marilontani.com

Offline pupito

  • Appassionato
  • ***
  • Post: 310
    • Mostra profilo
Re:[RISOLTO]Problema componente TAGS
« Risposta #5 il: 18 Ott 2014, 20:41:00 »
sulla fiducia anche se non ho avuto modo di provarlo...ti ringrazio

 



Web Design Bolzano Kreatif