Vgs Posted May 25, 2015 Share Posted May 25, 2015 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. Link to comment Share on other sites More sharing options...
shacker Posted May 25, 2015 Share Posted May 25, 2015 es las categorias del cms. Intenta desinstalar los modulos cms e isntalarlos de nuevo a ver si se crean corerctamente Link to comment Share on other sites More sharing options...
Vgs Posted May 25, 2015 Author Share Posted May 25, 2015 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 More sharing options...
shacker Posted May 25, 2015 Share Posted May 25, 2015 tienes actualizados los modulos a la ultima version? Link to comment Share on other sites More sharing options...
Vgs Posted May 25, 2015 Author Share Posted May 25, 2015 tienes actualizados los modulos a la ultima version? Si. todos estan actualizados. Link to comment Share on other sites More sharing options...
shacker Posted May 25, 2015 Share Posted May 25, 2015 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 Link to comment Share on other sites More sharing options...
Vgs Posted May 26, 2015 Author Share Posted May 26, 2015 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 More sharing options...
shacker Posted May 26, 2015 Share Posted May 26, 2015 cambia esta if (!defined('_PS_MODE_DEV_')) define('_PS_MODE_DEV_', false); por if (!defined('_PS_MODE_DEV_')) define('_PS_MODE_DEV_', true); Link to comment Share on other sites More sharing options...
Vgs Posted May 26, 2015 Author Share Posted May 26, 2015 Ok, este fue el error que me dio. Link to comment Share on other sites More sharing options...
shacker Posted May 26, 2015 Share Posted May 26, 2015 ok, te falta la tabla ps cms category. Sabes como crearla desde phpmyadmin? Link to comment Share on other sites More sharing options...
Vgs Posted May 26, 2015 Author Share Posted May 26, 2015 No, pero puedo aprender. Dime como? Link to comment Share on other sites More sharing options...
shacker Posted June 1, 2015 Share Posted June 1, 2015 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now