Jump to content

aispopar

Members
  • Posts

    8
  • Joined

  • Last visited

aispopar's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Buenas noches a todos, les cuento el problema que estoy teniendo el cual no puedo solucionar. Mi tienda ( 1.6.1.9) está en pleno desarrollo, la cual entro en etapa de "traducción". El problema surge por ejemplo al momento de editar un producto o duplicarlo. Al seleccionar guardar o duplicar, el backoffice se queda completamente en blanco, si vuelvo para atrás el cambio realizado fue efectivizado, pero me es sumamente molesto que el backoffice no pueda redirigir automáticamente y me deje en una pantalla blanca. Ya probé entrando en modo debug mediante la modificación del archivo define.inc.php, pero la pantalla sigue apareciendo en blanco. Gracias por su tiempo.
  2. Buenos días quería saber si existe algún modulo u opción para Prestashop en donde el cliente puede setear en la página del producto y esta le muestre distintos precios dependiendo de la forma de pago. Por ejempo: http://www.falabella.com.ar/falabella-ar/product/1933002/-212-Vip-Rose-EDP-80-ml?color=&passedNavAction= Muchisimas gracias!
  3. Hello people, my site is broken i dont know what happend. ERROR: This page contains the following errors: error on line 60 at column 29: EntityRef: expecting ';' Below is a rendering of the page up to the first error. the site link is http://wancomputers.com.ar/home.php please help me! Thanks, really thanks.
  4. Hello people, my site is broken i dont know what happend. ERROR: This page contains the following errors: error on line 60 at column 29: EntityRef: expecting ';' Below is a rendering of the page up to the first error. the site link is http://wancomputers.com.ar/home.php please help me! Thanks, really thanks.
  5. Buenos días comunidad estoy teniendo un problema con mi sitio WEB, no se toco absolutamente nada del mismo pero automaticamente dejo de funcionar mostrado el siguiente error: This page contains the following errors: error on line 60 at column 29: EntityRef: expecting ';' Below is a rendering of the page up to the first error. les dejo el link al sitio http://wancomputers.com.ar/home.php me seria de gran ayuda una guía o ayuda. Muchisimas gracias
  6. Que tal les comento el problema que estoy teniendo. Estoy terminando de desarrollar un sitio bastante grande para un local, el problema que tengo es que al modificar un precio en el Backoffice este no se ve reflejado en el Sitio es decir en el Front, si aprieto F5 el nuevo precio aparece, pero no puedo andar obligando a que los futuros clientes esten todo el tiempo apretando F5 mas alla de que algunos usuarios verian un precio y otros otro precio, no se si es algo con el smarty o que pero e probado miles de cosas y realmente necesito que los precios se actualicen constantemente, ya que el rubro al cual pertenece el negocio cambia los precios todo el tiempo. Si tienen algun tip para ayudarme se los voy a agradecer. Muchisimas gracias!
  7. I have de same proble please help me, the example line is if ($this->id_employee AND Validate::isUnsignedId($this->id_employee) AND Employee::checkPassword(intval($this->id_employee), $this->passwd) AND (!isset($this->_content['remote_addr']) OR $this->_content['remote_addr'] == ip2long(Tools::getRemoteAddr()))) but my line is a little diferent like this if ($this->id_employee AND Validate::isUnsignedId($this->id_employee) AND Employee::checkPassword(intval($this->id_employee), $this->passwd) AND (!isset($this->_content['remote_addr']) OR $this->_content['remote_addr'] == ip2long($_SERVER['REMOTE_ADDR']))) I'm from argentina please help my code, How should be? function __set($key, $value) { if (is_array($value)) die(Tools::displayError()); if (preg_match('/¤|\|/', $key) OR preg_match('/¤|\|/', $value)) throw new Exception('Forbidden chars in cookie'); $this->_content[$key] = $value; $this->write(); } /** * Magic method wich delete data into _content array * * @param $key key wanted */ function __unset($key) { unset($this->_content[$key]); $this->write(); } /** * Check customer informations saved into cookie and return customer validity * * @return boolean customer validity */ function isLogged() { /* Customer is valid only if it can be load and if cookie password is the same as database one */ if ($this->logged == 1 AND $this->id_customer AND Validate::isUnsignedId($this->id_customer) AND Customer::checkPassword(intval($this->id_customer), $this->passwd)) return true; return false; } /** * Check employee informations saved into cookie and return employee validity * * @return boolean employee validity */ function isLoggedBack() { /* Employee is valid only if it can be load and if cookie password is the same as database one */ if ($this->id_employee AND Validate::isUnsignedId($this->id_employee) AND Employee::checkPassword(intval($this->id_employee), $this->passwd) AND (!isset($this->_content['remote_addr']) OR $this->_content['remote_addr'] == ip2long($_SERVER['REMOTE_ADDR']))) return true; return false; } /** * Delete cookie */ function logout() { $this->_content = array(); $this->_setcookie(); unset($_COOKIE[$this->_name]); }
×
×
  • Create New...