Jump to content

Recommended Posts

Hola a todos, 

Cuando intento ingresar a CMS me dice lo siguiente "Category cannot be loaded".

Pero en catálogo, puedo ver todos mis productos y categorias sin problema. 

 

Alguna idea de como poder acceder al modulo de CMS o solucionar este error.

 

Muchisimas gracias.

post-559407-0-41734700-1432566416_thumb.jpg

Link to comment
Share on other sites

es las categorias del cms. Intenta desinstalar los modulos cms e isntalarlos de nuevo a ver si se crean corerctamente

Hola Shacker. No, ya lo intente y nada. No funciono.

Link to comment
Share on other sites

ok, edita el archivo defines.inc.php, que esta en config.

ponle display_errors en true, para mostrar errores, y dime si te aparee algun error al hacer lo de la scategorias

 

 

Hola, disculpa pero no se mucho al respecto. En cual linea debo agregar esto? En la que dice (_PS_MODE_DEV_ === true) o define('_PS_DEBUG_SQL_', true);

 

/* Debug only */
if (!defined('_PS_MODE_DEV_'))
define('_PS_MODE_DEV_', false);
/* Compatibility warning */
define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);
if (_PS_MODE_DEV_ === true)
{
@ini_set('display_errors', 'on');
@error_reporting(E_ALL | E_STRICT);
define('_PS_DEBUG_SQL_', true);
Link to comment
Share on other sites

ok, primero debes acceder al panel de control de tu hosting, y buscar las bases de datos, y el acceso al phpmyadmin, que te permite ejecutar consultas.

 

una vez ahi, seleccionas tu base de datos, y seleccionas la opcion ejecutar SQL y pones este codigo

 

CREATE TABLE `ps_cms_category_shop` (
`id_cms_category` int(10) unsigned NOT NULL AUTO_INCREMENT,
`id_shop` INT(11) UNSIGNED NOT NULL ,
PRIMARY KEY (`id_cms_category`, `id_shop`),
KEY `id_shop` (`id_shop`)
) ENGINE=ENGINE_TYPE  DEFAULT CHARSET=utf8;
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...