Jump to content

Error al finalizar el pedido de la tienda. Pagina en blanco.


Recommended Posts

Hola a todos.

Trabajando en un principio con la version 1.5.3.1 y despues de muchos quebraderos de cabeza a la hora de importar a traves de CSV las categorias y las imagenes en el fichero de productos, decidi pasar a una version anterior para ver si se corregia este problema, raro pero efectivo.

Decidi instalar en otro directorio otra tienda simultanea con la version 1.5.2 y probar a importar los productos y que las imagenes y categorias salieran bien, y con esta version anterior si lo hace debidamente.

 

Bien pues ya visto que podia importar todo mi catalogo que traspasaba de una oscommerce y sin problemas a la hora de importar productos ya que eran casi unos 600 y no me veia metiendolos nuevamente a mano.

 

Intente realizar una compra para ir ajustando cosas.

y cual es mi sorpresa que despues de dar un usuario de alta y realizar una compra, resulta que cuando quiero finalizar la compra es decir confirmar el carrito en vez de salirme el resumen o la pagina con los datos para el pago, transporte etc etc, me lleva a una pagina en blanco y no muestra nada.

me lleva al siguiente enlace y no muestra nada. y claro no hay pedido pendiente ni nada de nada.

 

www.dominio.es/index.php?controller=order-opc

 

no entiendo que hay mal y como no puede funcionar esto recien instalado.

 

como daba error en la 1.5.3.1, tambien decidi probar en la 1.5.2 y pasa exactamente lo mismo.

 

Llevo muchas horas buscando en san google, y no he conseguido localizar la solucion.

Alguien puede guiarme y darme la solucion para poder poner la tienda en marcha...

 

Muchas gracias anticipadas y disculpad por el toston. Pero ando un poco quemado con la puesta en marcha en este sistema por que no hago mas que encontrarme problemas y pocos resultados.

 

un saludo.

Link to comment
Share on other sites

--------------------------------------------------------

Referente a la pagina en blanco, habilita el debug de errores.

 

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

 

Referente a las importaciones en Prestashop 1.5.3.1 en la version de desarrollo, en principio el problema esta corregido el problema, descargando este fichero:

 

https://github.com/P...tController.php y sustituyendolo por el tuyo que lo encontraras en: /controllers/admin/

 

------------------------------------------------------------------------------------------------

Link to comment
Share on other sites

Gracias por el aporte.

Lo he probado, y debe de haber algun otro fallo en ese fichero.

al margen de que no hay cosas traducidas que en principio es igual.

de 3 productos solamente importa 1 bien con imagen el primero producto.

y a demas no te aparece la imagen en la parte de administracion de los productos.

y cuando le das regenerar miniaturas casca un error en rojo diciendo.

 

Original image is missing or empty (/home/xxxxxx/domains/dominio.es/public_html/img/p/3/3.jpg)

Original image is missing or empty (/home/xxxxxx/domains/dominio.es/public_html/img/p/4/4.jpg)

Original image is missing or empty (/home/xxxxxx/domains/dominio.es/public_html/img/p/5/5.jpg)

 

no obstante muchas gracias por el aporte aunque trabajare con la 1.5.2 que lo hace bien, aunque falle en otras cosas, que ire viendo.

 

Pero lo que mas me preocupa es lo de la pagina en blanco cuando finalizas el carrito que en ninguna de las dos versiones funciona y me parece rarisimo.

algo he de hacer mal, o no tener configurado bien.

 

Un saludote y gracias por la ayuda.

Link to comment
Share on other sites

Pero lo que mas me preocupa es lo de la pagina en blanco cuando finalizas el carrito que en ninguna de las dos versiones funciona y me parece rarisimo.

algo he de hacer mal, o no tener configurado bien.

 

Un saludote y gracias por la ayuda.

 

Referente a la plantalla en blanco, habilita el debug de errores.

 

¿Has habilitado el debug de errores? ¿SI o NO?

 

Al usar en la versión 1.5.2 de Prestashop para activar el display_errors, tienes que ir al fichero:

 

/config/config.inc.php

 

Buscar esto:

 

@ini_set('display_errors', 'off');

 

Y dejalo asi:

 

@ini_set('display_errors', 'on');

 

De esta manera depende una pantalla en blanco, te deberia salir un error mas descriptivo.

 

----

A partir de la 1.5.3, se activa en el /config/defines.inc.php

 

Cambiando esto:

 

define('_PS_MODE_DEV_', false);

 

por esto:

 

define('_PS_MODE_DEV_', true);

Link to comment
Share on other sites

Hola y gracias por responder.

En la version 1.5.3.1 tengo esa linea que me dices pero es una condicion.

digamos que no es la linea de ejecucion o almenos lo entiendo asi.

te pongo el fichero para que me digas...

 

<?php

/*

* 2007-2012 PrestaShop

*

* NOTICE OF LICENSE

*

* This source file is subject to the Open Software License (OSL 3.0)

* that is bundled with this package in the file LICENSE.txt.

* It is also available through the world-wide-web at this URL:

* http://opensource.org/licenses/osl-3.0.php

* If you did not receive a copy of the license and are unable to

* obtain it through the world-wide-web, please send an email

* to [email protected] so we can send you a copy immediately.

*

* DISCLAIMER

*

* Do not edit or add to this file if you wish to upgrade PrestaShop to newer

* versions in the future. If you wish to customize PrestaShop for your

* needs please refer to http://www.prestashop.com for more information.

*

* @author PrestaShop SA <[email protected]>

* @copyright 2007-2012 PrestaShop SA

* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)

* International Registered Trademark & Property of PrestaShop SA

*/

 

/* Debug only */

define('_PS_MODE_DEV_', false);

if (_PS_MODE_DEV_)

{

@ini_set('display_errors', 'on');

define('_PS_DEBUG_SQL_', true);

/* Compatibility warning */

define('_PS_DISPLAY_COMPATIBILITY_WARNING_', true);

}

else

{

@ini_set('display_errors', 'off');

define('_PS_DEBUG_SQL_', false);

/* Compatibility warning */

define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);

}

 

define('_PS_DEBUG_PROFILING_', false);

define('_PS_MODE_DEMO_', false);

 

$currentDir = dirname(__FILE__);

 

if (!defined('PHP_VERSION_ID'))

{

$version = explode('.', PHP_VERSION);

define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2]));

}

 

/* Directories */

define('_PS_ROOT_DIR_', realpath($currentDir.'/..'));

define('_PS_CLASS_DIR_', _PS_ROOT_DIR_.'/classes/');

define('_PS_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/');

define('_PS_FRONT_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/front/');

define('_PS_ADMIN_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/admin/');

define('_PS_OVERRIDE_DIR_', _PS_ROOT_DIR_.'/override/');

define('_PS_TRANSLATIONS_DIR_', _PS_ROOT_DIR_.'/translations/');

define('_PS_DOWNLOAD_DIR_', _PS_ROOT_DIR_.'/download/');

define('_PS_MAIL_DIR_', _PS_ROOT_DIR_.'/mails/');

define('_PS_PDF_DIR_', _PS_ROOT_DIR_.'/pdf/');

define('_PS_ALL_THEMES_DIR_', _PS_ROOT_DIR_.'/themes/');

define('_PS_IMG_DIR_', _PS_ROOT_DIR_.'/img/');

if (!defined('_PS_MODULE_DIR_'))

define('_PS_MODULE_DIR_', _PS_ROOT_DIR_.'/modules/');

define('_PS_CAT_IMG_DIR_', _PS_IMG_DIR_.'c/');

define('_PS_STORE_IMG_DIR_', _PS_IMG_DIR_.'st/');

define('_PS_PROD_IMG_DIR_', _PS_IMG_DIR_.'p/');

define('_PS_SCENE_IMG_DIR_', _PS_IMG_DIR_.'scenes/');

define('_PS_SCENE_THUMB_IMG_DIR_', _PS_IMG_DIR_.'scenes/thumbs/');

define('_PS_MANU_IMG_DIR_', _PS_IMG_DIR_.'m/');

define('_PS_SHIP_IMG_DIR_', _PS_IMG_DIR_.'s/');

define('_PS_SUPP_IMG_DIR_', _PS_IMG_DIR_.'su/');

define('_PS_COL_IMG_DIR_', _PS_IMG_DIR_.'co/');

define('_PS_TMP_IMG_DIR_', _PS_IMG_DIR_.'tmp/');

define('_PS_UPLOAD_DIR_', _PS_ROOT_DIR_.'/upload/');

define('_PS_TOOL_DIR_', _PS_ROOT_DIR_.'/tools/');

define('_PS_GEOIP_DIR_', _PS_TOOL_DIR_.'geoip/');

define('_PS_SWIFT_DIR_', _PS_TOOL_DIR_.'swift/');

define('_PS_GENDERS_DIR_', _PS_IMG_DIR_.'genders/');

define('_PS_FPDF_PATH_', _PS_TOOL_DIR_.'fpdf/'); // @deprecated will be removed in 1.6

define('_PS_TCPDF_PATH_', _PS_TOOL_DIR_.'tcpdf/');

define('_PS_TAASC_PATH_', _PS_TOOL_DIR_.'taasc/');

define('_PS_PEAR_XML_PARSER_PATH_', _PS_TOOL_DIR_.'pear_xml_parser/');

define('_PS_CACHE_DIR_', _PS_ROOT_DIR_.'/cache/');

/* BO THEMES */

if (defined('_PS_ADMIN_DIR_'))

define('_PS_BO_ALL_THEMES_DIR_', _PS_ADMIN_DIR_.'/themes/');

 

/* settings php */

define('_PS_TRANS_PATTERN_', '(.*[^\\\\])');

define('_PS_MIN_TIME_GENERATE_PASSWD_', '360');

if (!defined('_PS_MAGIC_QUOTES_GPC_'))

define('_PS_MAGIC_QUOTES_GPC_', get_magic_quotes_gpc());

 

define('_CAN_LOAD_FILES_', 1);

 

/* Order states

Order states has been moved in config.inc.php file for backward compatibility reasons */

 

/* Tax behavior */

define('PS_PRODUCT_TAX', 0);

define('PS_STATE_TAX', 1);

define('PS_BOTH_TAX', 2);

 

define('_PS_PRICE_DISPLAY_PRECISION_', 2);

define('PS_TAX_EXC', 1);

define('PS_TAX_INC', 0);

 

define('PS_ORDER_PROCESS_STANDARD', 0);

define('PS_ORDER_PROCESS_OPC', 1);

 

define('PS_ROUND_UP', 0);

define('PS_ROUND_DOWN', 1);

define('PS_ROUND_HALF', 2);

 

/* Registration behavior */

define('PS_REGISTRATION_PROCESS_STANDARD', 0);

define('PS_REGISTRATION_PROCESS_AIO', 1);

 

/* Carrier::getCarriers() filter */

// these defines are DEPRECATED since 1.4.5 version

define('PS_CARRIERS_ONLY', 1);

define('CARRIERS_MODULE', 2);

define('CARRIERS_MODULE_NEED_RANGE', 3);

define('PS_CARRIERS_AND_CARRIER_MODULES_NEED_RANGE', 4);

define('ALL_CARRIERS', 5);

 

/* SQL Replication management */

define('_PS_USE_SQL_SLAVE_', 0);

 

/* PS Technical configuration */

define('_PS_ADMIN_PROFILE_', 1);

 

/* Stock Movement */

define('_STOCK_MOVEMENT_ORDER_REASON_', 3);

define('_STOCK_MOVEMENT_MISSING_REASON_', 4);

 

/**

* @deprecated 1.5.0.1

* @see const PS_CUSTOMER_GROUP

*/

define('_PS_DEFAULT_CUSTOMER_GROUP_', 3);

 

define('_PS_CACHEFS_DIRECTORY_', _PS_ROOT_DIR_.'/cache/cachefs/');

 

/* Geolocation */

define('_PS_GEOLOCATION_NO_CATALOG_', 0);

define('_PS_GEOLOCATION_NO_ORDER_', 1);

 

define('MIN_PASSWD_LENGTH', 8);

 

define('_PS_SMARTY_NO_COMPILE_', 0);

define('_PS_SMARTY_CHECK_COMPILE_', 1);

define('_PS_SMARTY_FORCE_COMPILE_', 2);

 

define('_PS_SMARTY_CONSOLE_CLOSE_', 0);

define('_PS_SMARTY_CONSOLE_OPEN_BY_URL_', 1);

define('_PS_SMARTY_CONSOLE_OPEN_', 2);

 

define('_PS_JQUERY_VERSION_', '1.7.2');

-----------------------------------------------

 

Sin embargo en la 1.5.2 si lo encontre bien.

 

/* Debug only */

@ini_set('display_errors', 'on');

define('_PS_DEBUG_SQL_', false);

 

voy a probarlo en la 5.2 y a ver si me da alguna indicacion de los errores.

y te cuento.

Muchas gracias.

Link to comment
Share on other sites

Hola y gracias por responder.

En la version 1.5.3.1 tengo esa linea que me dices pero es una condicion.

digamos que no es la linea de ejecucion o almenos lo entiendo asi.

te pongo el fichero para que me digas...

 

<?php

/*

* 2007-2012 PrestaShop

*

* NOTICE OF LICENSE

*

* This source file is subject to the Open Software License (OSL 3.0)

* that is bundled with this package in the file LICENSE.txt.

* It is also available through the world-wide-web at this URL:

* http://opensource.or...ses/osl-3.0.php

* If you did not receive a copy of the license and are unable to

* obtain it through the world-wide-web, please send an email

* to [email protected] so we can send you a copy immediately.

*

* DISCLAIMER

*

* Do not edit or add to this file if you wish to upgrade PrestaShop to newer

* versions in the future. If you wish to customize PrestaShop for your

* needs please refer to http://www.prestashop.com for more information.

*

* @author PrestaShop SA <[email protected]>

* @copyright 2007-2012 PrestaShop SA

* @license http://opensource.or...ses/osl-3.0.php Open Software License (OSL 3.0)

* International Registered Trademark & Property of PrestaShop SA

*/

 

/* Debug only */

define('_PS_MODE_DEV_', false);

if (_PS_MODE_DEV_)

{

@ini_set('display_errors', 'on');

define('_PS_DEBUG_SQL_', true);

/* Compatibility warning */

define('_PS_DISPLAY_COMPATIBILITY_WARNING_', true);

}

else

{

@ini_set('display_errors', 'off');

define('_PS_DEBUG_SQL_', false);

/* Compatibility warning */

define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);

}

 

define('_PS_DEBUG_PROFILING_', false);

define('_PS_MODE_DEMO_', false);

 

$currentDir = dirname(__FILE__);

 

if (!defined('PHP_VERSION_ID'))

{

$version = explode('.', PHP_VERSION);

define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2]));

}

 

/* Directories */

define('_PS_ROOT_DIR_', realpath($currentDir.'/..'));

define('_PS_CLASS_DIR_', _PS_ROOT_DIR_.'/classes/');

define('_PS_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/');

define('_PS_FRONT_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/front/');

define('_PS_ADMIN_CONTROLLER_DIR_', _PS_ROOT_DIR_.'/controllers/admin/');

define('_PS_OVERRIDE_DIR_', _PS_ROOT_DIR_.'/override/');

define('_PS_TRANSLATIONS_DIR_', _PS_ROOT_DIR_.'/translations/');

define('_PS_DOWNLOAD_DIR_', _PS_ROOT_DIR_.'/download/');

define('_PS_MAIL_DIR_', _PS_ROOT_DIR_.'/mails/');

define('_PS_PDF_DIR_', _PS_ROOT_DIR_.'/pdf/');

define('_PS_ALL_THEMES_DIR_', _PS_ROOT_DIR_.'/themes/');

define('_PS_IMG_DIR_', _PS_ROOT_DIR_.'/img/');

if (!defined('_PS_MODULE_DIR_'))

define('_PS_MODULE_DIR_', _PS_ROOT_DIR_.'/modules/');

define('_PS_CAT_IMG_DIR_', _PS_IMG_DIR_.'c/');

define('_PS_STORE_IMG_DIR_', _PS_IMG_DIR_.'st/');

define('_PS_PROD_IMG_DIR_', _PS_IMG_DIR_.'p/');

define('_PS_SCENE_IMG_DIR_', _PS_IMG_DIR_.'scenes/');

define('_PS_SCENE_THUMB_IMG_DIR_', _PS_IMG_DIR_.'scenes/thumbs/');

define('_PS_MANU_IMG_DIR_', _PS_IMG_DIR_.'m/');

define('_PS_SHIP_IMG_DIR_', _PS_IMG_DIR_.'s/');

define('_PS_SUPP_IMG_DIR_', _PS_IMG_DIR_.'su/');

define('_PS_COL_IMG_DIR_', _PS_IMG_DIR_.'co/');

define('_PS_TMP_IMG_DIR_', _PS_IMG_DIR_.'tmp/');

define('_PS_UPLOAD_DIR_', _PS_ROOT_DIR_.'/upload/');

define('_PS_TOOL_DIR_', _PS_ROOT_DIR_.'/tools/');

define('_PS_GEOIP_DIR_', _PS_TOOL_DIR_.'geoip/');

define('_PS_SWIFT_DIR_', _PS_TOOL_DIR_.'swift/');

define('_PS_GENDERS_DIR_', _PS_IMG_DIR_.'genders/');

define('_PS_FPDF_PATH_', _PS_TOOL_DIR_.'fpdf/'); // @deprecated will be removed in 1.6

define('_PS_TCPDF_PATH_', _PS_TOOL_DIR_.'tcpdf/');

define('_PS_TAASC_PATH_', _PS_TOOL_DIR_.'taasc/');

define('_PS_PEAR_XML_PARSER_PATH_', _PS_TOOL_DIR_.'pear_xml_parser/');

define('_PS_CACHE_DIR_', _PS_ROOT_DIR_.'/cache/');

/* BO THEMES */

if (defined('_PS_ADMIN_DIR_'))

define('_PS_BO_ALL_THEMES_DIR_', _PS_ADMIN_DIR_.'/themes/');

 

/* settings php */

define('_PS_TRANS_PATTERN_', '(.*[^\\\\])');

define('_PS_MIN_TIME_GENERATE_PASSWD_', '360');

if (!defined('_PS_MAGIC_QUOTES_GPC_'))

define('_PS_MAGIC_QUOTES_GPC_', get_magic_quotes_gpc());

 

define('_CAN_LOAD_FILES_', 1);

 

/* Order states

Order states has been moved in config.inc.php file for backward compatibility reasons */

 

/* Tax behavior */

define('PS_PRODUCT_TAX', 0);

define('PS_STATE_TAX', 1);

define('PS_BOTH_TAX', 2);

 

define('_PS_PRICE_DISPLAY_PRECISION_', 2);

define('PS_TAX_EXC', 1);

define('PS_TAX_INC', 0);

 

define('PS_ORDER_PROCESS_STANDARD', 0);

define('PS_ORDER_PROCESS_OPC', 1);

 

define('PS_ROUND_UP', 0);

define('PS_ROUND_DOWN', 1);

define('PS_ROUND_HALF', 2);

 

/* Registration behavior */

define('PS_REGISTRATION_PROCESS_STANDARD', 0);

define('PS_REGISTRATION_PROCESS_AIO', 1);

 

/* Carrier::getCarriers() filter */

// these defines are DEPRECATED since 1.4.5 version

define('PS_CARRIERS_ONLY', 1);

define('CARRIERS_MODULE', 2);

define('CARRIERS_MODULE_NEED_RANGE', 3);

define('PS_CARRIERS_AND_CARRIER_MODULES_NEED_RANGE', 4);

define('ALL_CARRIERS', 5);

 

/* SQL Replication management */

define('_PS_USE_SQL_SLAVE_', 0);

 

/* PS Technical configuration */

define('_PS_ADMIN_PROFILE_', 1);

 

/* Stock Movement */

define('_STOCK_MOVEMENT_ORDER_REASON_', 3);

define('_STOCK_MOVEMENT_MISSING_REASON_', 4);

 

/**

* @deprecated 1.5.0.1

* @see const PS_CUSTOMER_GROUP

*/

define('_PS_DEFAULT_CUSTOMER_GROUP_', 3);

 

define('_PS_CACHEFS_DIRECTORY_', _PS_ROOT_DIR_.'/cache/cachefs/');

 

/* Geolocation */

define('_PS_GEOLOCATION_NO_CATALOG_', 0);

define('_PS_GEOLOCATION_NO_ORDER_', 1);

 

define('MIN_PASSWD_LENGTH', 8);

 

define('_PS_SMARTY_NO_COMPILE_', 0);

define('_PS_SMARTY_CHECK_COMPILE_', 1);

define('_PS_SMARTY_FORCE_COMPILE_', 2);

 

define('_PS_SMARTY_CONSOLE_CLOSE_', 0);

define('_PS_SMARTY_CONSOLE_OPEN_BY_URL_', 1);

define('_PS_SMARTY_CONSOLE_OPEN_', 2);

 

define('_PS_JQUERY_VERSION_', '1.7.2');

 

 

 

Esto:

 

define('_PS_MODE_DEV_', false);

 

Dejalo asi:

 

define('_PS_MODE_DEV_', true);

Link to comment
Share on other sites

ya me dio el error cuando quise finalizar el carrito de la compra.

en la version 1.5.2.0

 

el error que da es este:

 

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 52291 bytes) in /home/metrocua/domains/grupometrocuadrado.es/public_html/tienda/tools/smarty/sysplugins/smarty_internal_template.php on line 400

 

 

habia leido algo de este error por internet y era que en vez de usar smarty3 usaramos el 2 o algo asi.

o eliminando una serie de lineas en un fichero se solucionaba creo.

ya me diras..

Mientras sigo mi investigacion por internet.

Gracias.

Link to comment
Share on other sites

ya me dio el error cuando quise finalizar el carrito de la compra.

en la version 1.5.2.0

 

el error que da es este:

 

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 52291 bytes) in /home/metrocua/domains/grupometrocuadrado.es/public_html/tienda/tools/smarty/sysplugins/smarty_internal_template.php on line 400

 

 

Prueba añadir esto:

 

@ini_set('memory_limit', '128M');

 

en el fichero:

 

/config/config.inc.php

  • Like 1
Link to comment
Share on other sites

Bieeeeeeeeeeeeeeeeeeeeeeeeennnnnn¡¡¡¡¡¡

Perfecto, ahora si me sale el resumen cuando quiero finalizar el pedido.

muchas gracias por la ayuda.

 

ahora a seguir metiendo datos e ir probando si sale algun fallo mas para ir corrigiendo.

 

Te quedo muy agradecido por toda la ayuda que me has prestado.

 

A raiz de esto, estoy haciendo la prueba en un web temporal antes de traspasarla a la web operativa y cerrar la oscommerce.

 

Esto por que es debido.

la instalacion la realize desde el panel de control de mi sitio web en el apartado de aplicaciones.

 

que es mejor a la hora de hacer la instalacion, hacerlo desde hay o bajar el fichero desde la web original de prestashop para evitar estos problemas.

 

si hubiera bajado el fichero de la web habria tenido este u otros problemas..

 

o es un bug de la aplicacion.

 

Gracias por todo.

un saludo.

Link to comment
Share on other sites

  • 2 months later...

hola Nadie. Veo que controlas muchísimo. Por favor, a ver si me puedes echar una mano en este mundo del prestashop, que ando perdido. Te lo agradecería muchísimo.

Tenía la tienda online de ropa www.kaluka.es con la versión 1.5.2 y con el 1-Click upgrade he pasado al 1.5.4, y me sale el front office totalmente en blanco con este mensaje:

Fatal error: Cannot redeclare class ImageCore in /htdocs/public/www/classes/Image.php on line 694 .

Para tu info, tenía un theme de pago de prestashop, modificado para mi tienda, que se llama alysum

He realizado las modificaciones que comentas más arriba, y sigue saliendo en blanco la página. Estoy totalmente perdido... por favor, ayúdame. muchísimas gracias.

Desde /config/defines.inc.php he hecho estos 2 cambios (en rojo):

 

{

@ini_set('display_errors', 'on');

define('_PS_DEBUG_SQL_', true);

/* Compatibility warning */

define('_PS_DISPLAY_COMPATIBILITY_WARNING_', true);

}

else

{

@ini_set('display_errors', 'on');

define('_PS_DEBUG_SQL_', true);

/* Compatibility warning */

define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);

}

Link to comment
Share on other sites

  • 2 weeks later...

Hola, yo tambien tengo ese problema, y es debido al tema, bueno mas bien al modulo top mega menu, si lo quitas, ya se soluciona el problema.

 

¿Que problema tienes? (Aqui se mencionan varios)

 

¿Que tiene que ver el error al finalizar el pedido con el top menu?

 

Segun leo aqui al usuario inicial, al aumentar el memory_limit se le soluciono el problema.

 

¿O te refieres al mensaje del ultimo usuario?

Edited by Rubalcaba (see edit history)
Link to comment
Share on other sites

¿Que problema tienes? (Aqui se mencionan varios)

 

¿Que tiene que ver el error al finalizar el pedido con el top menu?

 

Segun leo aqui al usuario inicial, al aumentar el memory_limit se le soluciono el problema.

 

¿O te refieres al mensaje del ultimo usuario?

 

Si si, me refiero al ultimo usuario. Puesto que yo estoy en la misma situacion.

Link to comment
Share on other sites

  • 2 weeks later...

Pues yo tengo el fallo mas parecido al del primero. Pero no se si lo mio se soluciona con la linea que hay que modificar ya que mi fallo lo da cuando entras a ver los detalles de algun producto.

 

Mi version: 1.5.3.1

 

Fatal error: Uncaught exception 'SmartyException' with message 'Unable to load template file './page-title.tpl' in 'C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda/themes/default/product.tpl'' in C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda\tools\smarty\sysplugins\smarty_internal_templatebase.php:127 Stack trace: #0 C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda\tools\smarty\sysplugins\smarty_internal_template.php(285): Smarty_Internal_TemplateBase->fetch(NULL, NULL, NULL, NULL, false, false, true) #1 C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda\cache\smarty\compile\df06d64a749cfa3d61ea1cbdb7672126be0ad63c.file.product.tpl.php(53): Smarty_Internal_Template->getSubTemplate('./page-title.tp...', NULL, NULL, NULL, NULL, Array, 0) #2 C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda\tools\smarty\sysplugins\smarty_internal_templatebase.php(180): content_5177fe93f370a7_26780291(Object(Smarty_Internal_Template)) #3 C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda\classes\controller\FrontControll in C:\HostingSpaces\SOLINFCO\solinfco.es\wwwroot\tienda\tools\smarty\sysplugins\smarty_internal_templatebase.php on line 127

 

¿Vosotros veis que puedo hacer? es que no queria dar mas la brasa.

 

thanks

Edited by DavOfe (see edit history)
Link to comment
Share on other sites

  • 1 month later...

El amigo Shacker nos dejo este módulo que edita el archivo settings.inc.php para activar los errores de depuración.

 

También puede establecer el límite de memoria que da muchos errores en PHP. Recuerda que puedes modificar la mano settings.inc.php de archivo. Este módulo es sólo facilitar el trabajo

 

 

 

link

 

 

http://catalogo-onli...04-depurar.htmlshacker

Link to comment
Share on other sites

Pues yo tb necesito ayudar por favor, en una de mis tiendas cuando finalizo el pedido me sale esto:

Fatal error: Undefined class constant 'TEMPLATE_INVOICE' in /usr/home/ecosillas/www/classes/PaymentModule.php on line 615

 

Jorrr... como puedo solucionarlo y por que me sale esto?

Gracias

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...