Trade1 Posted January 25, 2013 Share Posted January 25, 2013 (edited) hola a todos de nuevo. necesito vuestra ayuda con el problema que tengo al poner una imagen a al subcategoria se cambia la pagina y salta el error indicado abajo, (adjunto foto). Gracias. [PrestaShopException] Property Category->date_add is not valid 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; Edited January 25, 2013 by Trade1 (see edit history) Link to comment Share on other sites More sharing options...
nadie Posted January 25, 2013 Share Posted January 25, 2013 Revisa esto: Este problema lo tuve yo cuando intentaba añadir imagenes a categorias y revisando la tabla ps_category me dí cuenta que en la columna date_add estaban con el siguiente valor "0000-00-00 00:00:00". La solución sería hacer el siguiente UPDATE: UPDATE ps_category SET date_add = sysdate() WHERE id_category > 2; A mi me funcionó asi, ya me contaras. Nota: mi identificador de tablas es "ps_" revisa antes de nada cual es el tuyo. Un saludo. Fuente: http://www.prestashop.com/forums/index.php?/topic/215759-problema-meta-keywords-solucionado/page__view__findpost__p__1065713 Link to comment Share on other sites More sharing options...
Trade1 Posted January 25, 2013 Author Share Posted January 25, 2013 Efectivamente ira eso añadir fecha. Muchas gracias NADIE, Que no te aburres de ayudar Link to comment Share on other sites More sharing options...
nadie Posted January 25, 2013 Share Posted January 25, 2013 Efectivamente ira eso añadir fecha. Muchas gracias NADIE, Que no te aburres de ayudar Un placer ayudarte y servirte! Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso. Link to comment Share on other sites More sharing options...
michelink69 Posted April 2, 2013 Share Posted April 2, 2013 Un placer ayudarte y servirte! Un saludo y recuerda que estaremos en el foro, para guiarte por este mundo oscuro y tenebroso. Ahora esto no funciona para 1.5.4 sigue dando error Link to comment Share on other sites More sharing options...
Recommended Posts