linosegundo Posted May 7, 2013 Share Posted May 7, 2013 (edited) bueno tal y como dice alli consegui el modulo CLOUDCACHE y le di activar y configurar para ver como funcionana y en parametros avanzados/ rendimiento descative donde dice puede ser activado unicamente por el debugging . cache y de alli empeso el drama intente descativar el modulo pero no lo permite me meti por FTP y borre el modulo y aun aparece en modulos desde el administrador active forzar compilacion pero nada mi pagina no abre solo salen estos codigos y la administracion si abre /** @var _isActive Flag to know if the module is active or note */ public static $_isActive = -1; /** @var _isActive Flag to know if the module is active or note */ public static $_isActive = -1; public function addCSS($css_uri, $css_media_type = 'all') { if (self::_isActive()) { if (!is_array($css_uri)) $css_uri = array($css_uri); $new_uri = array(); foreach ($css_uri as $uri) if ($uri && !preg_match('/^http(s?):\/\//', $uri) && preg_match('#.css$#', $uri)) { $proto = 'http://'; $uri = Tools::getMediaServer($uri, $proto).$uri; // Pass as reference, do not move $proto $new_uri[] = $proto.$uri; } else $new_uri[] = $uri; return parent::addCSS($new_uri, $css_media_type); } return parent::addCSS($css_uri, $css_media_type); } public function addJS($js_uri) { if (self::_isActive()) { if (!is_array($js_uri)) $js_uri = array($js_uri); foreach ($js_uri as &$uri) if ($uri && !preg_match('/^http(s?):\/\//', $uri)) { $proto = 'http://'; $uri = Tools::getMediaServer($uri, $proto).$uri; $uri = $proto.$uri; } } return parent::addJS($js_uri); } private static function _isActive() { if (self::$_isActive == -1) { // This override is part of the cloudcache module, so the cloudcache.php file exists require_once(dirname(__FILE__).'/../../../modules/cloudcache/cloudcache.php'); $module = new CloudCache(); self::$_isActive = $module->active; } return self::$_isActive && Configuration::get('CLOUDCACHE_API_ACTIVE'); } // Override for 1.5 public function init() { if (parent::$initialized) return; $ret = parent::init(); if (!self::_isActive()) return $ret; $assign_array = array( 'img_ps_dir' => _PS_IMG_, 'img_cat_dir' => _THEME_CAT_DIR_, 'img_lang_dir' => _THEME_LANG_DIR_, 'img_prod_dir' => _THEME_PROD_DIR_, 'img_manu_dir' => _THEME_MANU_DIR_, 'img_sup_dir' => _THEME_SUP_DIR_, 'img_ship_dir' => _THEME_SHIP_DIR_, 'img_store_dir' => _THEME_STORE_DIR_, 'img_col_dir' => _THEME_COL_DIR_, 'img_dir' => _THEME_IMG_DIR_, 'css_dir' => _THEME_CSS_DIR_, 'js_dir' => _THEME_JS_DIR_, 'pic_dir' => _THEME_PROD_PIC_DIR_ ); /* // Add the images directory for mobile */ /* if ($this->context->getMobileDevice() != false) */ /* $assign_array['img_mobile_dir'] = _THEME_MOBILE_IMG_DIR_; */ /* // Add the CSS directory for mobile */ /* if ($this->context->getMobileDevice() != false) */ /* $assign_array['css_mobile_dir'] = _THEME_MOBILE_CSS_DIR_; */ $httHost = Tools::getHttpHost(); $protocol_content = ((isset($this->ssl) && $this->ssl && Configuration::get('PS_SSL_ENABLED')) || Tools::usingSecureMode()) ? 'https://' : 'http://'; foreach ($assign_array as $assignKey => $assignValue) if (substr($assignValue, 0, 1) == '/' || $protocol_content == 'https://') $this->context->smarty->assign($assignKey, $protocol_content.Tools::getMediaServer($assignValue).$assignValue); else $this->context->smarty->assign($assignKey, $assignValue); return $ret; } public function addCSS($css_uri, $css_media_type = 'all') { if (self::_isActive()) { if (!is_array($css_uri)) $css_uri = array($css_uri); $new_uri = array(); foreach ($css_uri as $uri) if ($uri && !preg_match('/^http(s?):\/\//', $uri) && preg_match('#.css$#', $uri)) { $proto = 'http://'; $uri = Tools::getMediaServer($uri, $proto).$uri; // Pass as reference, do not move $proto $new_uri[] = $proto.$uri; } else $new_uri[] = $uri; return parent::addCSS($new_uri, $css_media_type); } return parent::addCSS($css_uri, $css_media_type); } public function addJS($js_uri) { if (self::_isActive()) { if (!is_array($js_uri)) $js_uri = array($js_uri); foreach ($js_uri as &$uri) if ($uri && !preg_match('/^http(s?):\/\//', $uri)) { $proto = 'http://'; $uri = Tools::getMediaServer($uri, $proto).$uri; $uri = $proto.$uri; } } return parent::addJS($js_uri); } private static function _isActive() { if (self::$_isActive == -1) { // This override is part of the cloudcache module, so the cloudcache.php file exists require_once(dirname(__FILE__).'/../../../modules/cloudcache/cloudcache.php'); $module = new CloudCache(); self::$_isActive = $module->active; } return self::$_isActive && Configuration::get('CLOUDCACHE_API_ACTIVE'); } // Override for 1.5 public function init() { if (parent::$initialized) return; $ret = parent::init(); if (!self::_isActive()) return $ret; $assign_array = array( 'img_ps_dir' => _PS_IMG_, 'img_cat_dir' => _THEME_CAT_DIR_, 'img_lang_dir' => _THEME_LANG_DIR_, 'img_prod_dir' => _THEME_PROD_DIR_, 'img_manu_dir' => _THEME_MANU_DIR_, 'img_sup_dir' => _THEME_SUP_DIR_, 'img_ship_dir' => _THEME_SHIP_DIR_, 'img_store_dir' => _THEME_STORE_DIR_, 'img_col_dir' => _THEME_COL_DIR_, 'img_dir' => _THEME_IMG_DIR_, 'css_dir' => _THEME_CSS_DIR_, 'js_dir' => _THEME_JS_DIR_, 'pic_dir' => _THEME_PROD_PIC_DIR_ ); /* // Add the images directory for mobile */ /* if ($this->context->getMobileDevice() != false) */ /* $assign_array['img_mobile_dir'] = _THEME_MOBILE_IMG_DIR_; */ /* // Add the CSS directory for mobile */ /* if ($this->context->getMobileDevice() != false) */ /* $assign_array['css_mobile_dir'] = _THEME_MOBILE_CSS_DIR_; */ $httHost = Tools::getHttpHost(); $protocol_content = ((isset($this->ssl) && $this->ssl && Configuration::get('PS_SSL_ENABLED')) || Tools::usingSecureMode()) ? 'https://' : 'http://'; foreach ($assign_array as $assignKey => $assignValue) if (substr($assignValue, 0, 1) == '/' || $protocol_content == 'https://') $this->context->smarty->assign($assignKey, $protocol_content.Tools::getMediaServer($assignValue).$assignValue); else $this->context->smarty->assign($assignKey, $assignValue); return $ret; }[/b] [b] este es mi web http://kingdomofgoddard.com/ y es prestashop 1.5.4 espero me puedan ayudar a resolver este error gracias de antemano Edited May 7, 2013 by linosegundo (see edit history) Link to comment Share on other sites More sharing options...
joseantgv Posted May 7, 2013 Share Posted May 7, 2013 Renombra el fichero FrontController.php de la carpeta override\classes\controller\ Link to comment Share on other sites More sharing options...
linosegundo Posted May 7, 2013 Author Share Posted May 7, 2013 gracias por responder y disculpa que sea novato pero cuando lo renombre es por otro nombre? cualquier nombre o uno en especial? Link to comment Share on other sites More sharing options...
joseantgv Posted May 7, 2013 Share Posted May 7, 2013 Cualquier otro nombre, para que no lo incluya. Realmente lo podrías borrar, supongo que ningún otro módulo lo está utilizando... Link to comment Share on other sites More sharing options...
linosegundo Posted May 7, 2013 Author Share Posted May 7, 2013 ya lo borre pero ahora la web se queda en blanco https://kingdomofgoddard.com/es/ no se si solo me sale a mi por los cache Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted May 7, 2013 Share Posted May 7, 2013 ya lo borre pero ahora la web se queda en blanco https://kingdomofgoddard.com/es/ no se si solo me sale a mi por los cache habilita el reporte de errores: http://www.prestashop.com/forums/index.php?/topic/232477-%c2%bfque-hacer-cuando-se-queda-la-pantalla-en-blanco-en-prestashop/ Link to comment Share on other sites More sharing options...
linosegundo Posted May 7, 2013 Author Share Posted May 7, 2013 eso sirve igual para la version 1.5.4? Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted May 7, 2013 Share Posted May 7, 2013 eso sirve igual para la version 1.5.4? Si. Link to comment Share on other sites More sharing options...
linosegundo Posted May 7, 2013 Author Share Posted May 7, 2013 gracias me salio que faltaba el modulo CLOUDCACHE como habia hecho una copia antes de borrarlo lo volvi a subir y ahora todo perfecto de verdad gracias Rubalcaba me has salvado una vida seguire viendo como aumento la velocidad de la web que esta muy lenta Link to comment Share on other sites More sharing options...
Recommended Posts