Jump to content

RISOLTO: An error occurred while updating object. product ()


Mauro Soligo

Recommended Posts

Ciao a tutti, era un po' che mi scontravo con uno strano problema, quando andavo a modificare un prodotto manualmente in BackOffice ( di solito esporto da Danea e mi pareva funzionasse regolarmente ) nel momento in cui salvavo mi ritornava un errore, la frase in inglese è:

 

"An error occurred while updating object. product ()"

 

 

La frase in italiano purtroppo ora non la ricordo esattamente e avendo risolto il problema non so come postarla, cmq era del tipo :

"è avvenuto un errore aggiornando il prodotto product ()"

 

Oggi mi sono messo a cercare nei forum inglesi e ho trovato la soluzione qui:

 

http://www.prestashop.com/forums/topic/213042-upgrade-to-1530-problems/page__st__20

 

Leggere fino alla fine perchè il primo SQL non mi aveva risolto il problema...

 

Per i pigri, la soluzione che ho usato con successo ( prestashop 1.5.4.1 ) è il seguente SQL:

 

alter table ps_product add column redirect_type enum ('404','301','302') charset 'utf8' not null;

alter table ps_product add column id_product_redirected int(10) unsigned not null default 0;

 

alter table ps_product_shop add column redirect_type enum ('404','301','302') charset 'utf8' not null;

alter table ps_product_shop add column id_product_redirected int(10) unsigned not null default 0;

 

Ciao

Mauro

Link to comment
Share on other sites

Salve a tutti, sono giorni che divento pazzo per questo errore che mi appare una volta che inserisco degli ordini in modo manuale ma non riesco a capire da che cosa sia dovuto:

 

[PrestaShopException]

 

Property OrderDetail->id_warehouse is empty

at line 837 in file classes/ObjectModel.php

 

831.

832. $message = $this->validateField($field, $this->$field);

833. if ($message !== true)

834. {

835. if ($die)

836. throw new PrestaShopException($message);

837. return $error_return ? $message : false;

838. }

839. }

840.

841. return true;

 

per favore potete aiutarmi? grazie!!

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...