Jump to content

Recommended Posts

Ciao a tutti,

ho riscontrato un problema con il blocco tags, quando vado qui:
Back Office >> Catalog >> Tags
mi compare la seguente scritta:

Query SQL errata.

Ho provato ad inserire un tag e mi compare questo:

1 errore
Si è verificato un errore nella creazione dell'oggetto tag (Table 'MIOSITO.ps_tag' doesn't exist)

e non mi dà la possibilità di inserire i tags.
La versione di prestashop è 1.2.5.0

Grazie in anticipo.

Link to comment
Share on other sites

Per qualche motivo ti manca (si è cancellata?) la tabella tags....

....installa in locale una ps 125 e poi importati la tabella tags nel db online.

oppure digita questo in mysqladmin....
entri nel tuo db,
premi su sql :

CREATE TABLE `PREFIX_product_tag` (
 `id_product` int(10) unsigned NOT NULL,
 `id_tag` int(10) unsigned NOT NULL,
 PRIMARY KEY  (`id_product`,`id_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;



ovviamente sostituisci PREFIX con il tuo prefisso (ps)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...