[PrestaShopException]

Link to database cannot be established: SQLSTATE[HY000] [2002] Connection refused
at line 136 in file classes/db/DbPDO.php

131.     public function connect()
132.     {
133.         try {
134.             $this->link = $this->getPDO($this->server, $this->user, $this->password, $this->database, 5);
135.         } catch (PDOException $e) {
136.             throw new PrestaShopException('Link to database cannot be established: ' . $e->getMessage());
137.         }
138. 
139.         $this->link->exec('SET SESSION sql_mode = \'\'');
140. 
141.         return $this->link;
ZAPATO DE MUJER XTI 143380 - 14338002 - Zapaterías RIN
Haga clic para más productos.
No se encontraron productos.

[PrestaShopException]

Link to database cannot be established: SQLSTATE[HY000] [2002] Connection refused
at line 136 in file classes/db/DbPDO.php

131.     public function connect()
132.     {
133.         try {
134.             $this->link = $this->getPDO($this->server, $this->user, $this->password, $this->database, 5);
135.         } catch (PDOException $e) {
136.             throw new PrestaShopException('Link to database cannot be established: ' . $e->getMessage());
137.         }
138. 
139.         $this->link->exec('SET SESSION sql_mode = \'\'');
140. 
141.         return $this->link;
  • DbPDOCore->connect - [line 330 - classes/db/Db.php]
    325.         if (!defined('_PS_DEBUG_SQL_')) {
    326.             define('_PS_DEBUG_SQL_', false);
    327.         }
    328. 
    329.         if ($connect) {
    330.             $this->connect();
    331.         }
    332.     }
    333. 
    334.     /**
    335.      * Disable the use of the cache.
    
  • DbCore->__construct - [line 241 - classes/db/Db.php]
    236.             $class = Db::getClass();
    237.             self::$instance[$id_server] = new $class(
    238.                 self::$_servers[$id_server]['server'],
    239.                 self::$_servers[$id_server]['user'],
    240.                 self::$_servers[$id_server]['password'],
    241.                 self::$_servers[$id_server]['database']
    242.             );
    243.         }
    244. 
    245.         return self::$instance[$id_server];
    246.     }
    
  • DbCore::getInstance - [line 47 - config/alias.php]
    42.  * @param bool $htmlOK Does data contain HTML code ? (optional)
    43.  * @return string Sanitized data
    44.  */
    45. function pSQL($string, $htmlOK = false)
    46. {
    47.     return Db::getInstance()->escape($string, $htmlOK);
    48. }
    49. 
    50. function bqSQL($string)
    51. {
    52.     return str_replace('`', '\`', pSQL($string));
    
  • pSQL - [line 1345 - classes/shop/Shop.php]
    1340.     private static function findShopByHost($host)
    1341.     {
    1342.         $sql = 'SELECT s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
    1343.                     FROM ' . _DB_PREFIX_ . 'shop_url su
    1344.                     LEFT JOIN ' . _DB_PREFIX_ . 'shop s ON (s.id_shop = su.id_shop)
    1345.                     WHERE (su.domain = \'' . pSQL($host) . '\' OR su.domain_ssl = \'' . pSQL($host) . '\')
    1346.                         AND s.active = 1
    1347.                         AND s.deleted = 0
    1348.                     ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC';
    1349. 
    1350.         $result = Db::getInstance()->executeS($sql);
    
  • ShopCore::findShopByHost - [line 341 - classes/shop/Shop.php]
    336.             $found_uri = '';
    337.             $is_main_uri = false;
    338.             $host = Tools::getHttpHost(false, false, true);
    339.             $request_uri = rawurldecode($_SERVER['REQUEST_URI']);
    340. 
    341.             $result = self::findShopByHost($host);
    342. 
    343.             // If could not find a matching, try with port
    344.             if (empty($result)) {
    345.                 $host = Tools::getHttpHost(false, false, false);
    346.                 $result = self::findShopByHost($host);
    
  • ShopCore::initialize - [line 128 - config/config.inc.php]
    123. 
    124. $context = Context::getContext();
    125. 
    126. /* Initialize the current Shop */
    127. try {
    128.     $context->shop = Shop::initialize();
    129. } catch (PrestaShopException $e) {
    130.     $e->displayMessage();
    131. }
    132. define('_THEME_NAME_', $context->shop->theme->getName());
    133. define('_PARENT_THEME_NAME_', $context->shop->theme->get('parent') ?: '');
    
  • require - [line 27 - index.php] - [1 Arguments]
    22.  * @author    PrestaShop SA and Contributors <contact@prestashop.com>
    23.  * @copyright Since 2007 PrestaShop SA and Contributors
    24.  * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
    25.  */
    26. 
    27. require dirname(__FILE__).'/config/config.inc.php';
    28. Dispatcher::getInstance()->dispatch();
    Argument [0]
    /var/www/vhosts/zapateriasrin.com/httpdocs/config/config.inc.php
    

[PrestaShopException]

Link to database cannot be established: SQLSTATE[HY000] [2002] Connection refused
at line 136 in file classes/db/DbPDO.php

131.     public function connect()
132.     {
133.         try {
134.             $this->link = $this->getPDO($this->server, $this->user, $this->password, $this->database, 5);
135.         } catch (PDOException $e) {
136.             throw new PrestaShopException('Link to database cannot be established: ' . $e->getMessage());
137.         }
138. 
139.         $this->link->exec('SET SESSION sql_mode = \'\'');
140. 
141.         return $this->link;
  • DbPDOCore->connect - [line 330 - classes/db/Db.php]
    325.         if (!defined('_PS_DEBUG_SQL_')) {
    326.             define('_PS_DEBUG_SQL_', false);
    327.         }
    328. 
    329.         if ($connect) {
    330.             $this->connect();
    331.         }
    332.     }
    333. 
    334.     /**
    335.      * Disable the use of the cache.
    
  • DbCore->__construct - [line 241 - classes/db/Db.php]
    236.             $class = Db::getClass();
    237.             self::$instance[$id_server] = new $class(
    238.                 self::$_servers[$id_server]['server'],
    239.                 self::$_servers[$id_server]['user'],
    240.                 self::$_servers[$id_server]['password'],
    241.                 self::$_servers[$id_server]['database']
    242.             );
    243.         }
    244. 
    245.         return self::$instance[$id_server];
    246.     }
    
  • DbCore::getInstance - [line 47 - config/alias.php]
    42.  * @param bool $htmlOK Does data contain HTML code ? (optional)
    43.  * @return string Sanitized data
    44.  */
    45. function pSQL($string, $htmlOK = false)
    46. {
    47.     return Db::getInstance()->escape($string, $htmlOK);
    48. }
    49. 
    50. function bqSQL($string)
    51. {
    52.     return str_replace('`', '\`', pSQL($string));
    
  • pSQL - [line 1345 - classes/shop/Shop.php]
    1340.     private static function findShopByHost($host)
    1341.     {
    1342.         $sql = 'SELECT s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
    1343.                     FROM ' . _DB_PREFIX_ . 'shop_url su
    1344.                     LEFT JOIN ' . _DB_PREFIX_ . 'shop s ON (s.id_shop = su.id_shop)
    1345.                     WHERE (su.domain = \'' . pSQL($host) . '\' OR su.domain_ssl = \'' . pSQL($host) . '\')
    1346.                         AND s.active = 1
    1347.                         AND s.deleted = 0
    1348.                     ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC';
    1349. 
    1350.         $result = Db::getInstance()->executeS($sql);
    
  • ShopCore::findShopByHost - [line 341 - classes/shop/Shop.php]
    336.             $found_uri = '';
    337.             $is_main_uri = false;
    338.             $host = Tools::getHttpHost(false, false, true);
    339.             $request_uri = rawurldecode($_SERVER['REQUEST_URI']);
    340. 
    341.             $result = self::findShopByHost($host);
    342. 
    343.             // If could not find a matching, try with port
    344.             if (empty($result)) {
    345.                 $host = Tools::getHttpHost(false, false, false);
    346.                 $result = self::findShopByHost($host);
    
  • ShopCore::initialize - [line 128 - config/config.inc.php]
    123. 
    124. $context = Context::getContext();
    125. 
    126. /* Initialize the current Shop */
    127. try {
    128.     $context->shop = Shop::initialize();
    129. } catch (PrestaShopException $e) {
    130.     $e->displayMessage();
    131. }
    132. define('_THEME_NAME_', $context->shop->theme->getName());
    133. define('_PARENT_THEME_NAME_', $context->shop->theme->get('parent') ?: '');
    
  • require - [line 27 - index.php] - [1 Arguments]
    22.  * @author    PrestaShop SA and Contributors <contact@prestashop.com>
    23.  * @copyright Since 2007 PrestaShop SA and Contributors
    24.  * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
    25.  */
    26. 
    27. require dirname(__FILE__).'/config/config.inc.php';
    28. Dispatcher::getInstance()->dispatch();
    Argument [0]
    /var/www/vhosts/zapateriasrin.com/httpdocs/config/config.inc.php
    
ENVÍO GRATUITO EN PEDIDOS SUPERIORES A 30€
BLACK FRIDAY

ZAPATO DE MUJER XTI 143380

Ref:
1433800237
Marca:
49,95 €
Colores:
ZAPATO DE MUJER XTI 143380

[PrestaShopException]

Link to database cannot be established: SQLSTATE[HY000] [2002] Connection refused
at line 136 in file classes/db/DbPDO.php

131.     public function connect()
132.     {
133.         try {
134.             $this->link = $this->getPDO($this->server, $this->user, $this->password, $this->database, 5);
135.         } catch (PDOException $e) {
136.             throw new PrestaShopException('Link to database cannot be established: ' . $e->getMessage());
137.         }
138. 
139.         $this->link->exec('SET SESSION sql_mode = \'\'');
140. 
141.         return $this->link;
  • DbPDOCore->connect - [line 330 - classes/db/Db.php]
    325.         if (!defined('_PS_DEBUG_SQL_')) {
    326.             define('_PS_DEBUG_SQL_', false);
    327.         }
    328. 
    329.         if ($connect) {
    330.             $this->connect();
    331.         }
    332.     }
    333. 
    334.     /**
    335.      * Disable the use of the cache.
    
  • DbCore->__construct - [line 241 - classes/db/Db.php]
    236.             $class = Db::getClass();
    237.             self::$instance[$id_server] = new $class(
    238.                 self::$_servers[$id_server]['server'],
    239.                 self::$_servers[$id_server]['user'],
    240.                 self::$_servers[$id_server]['password'],
    241.                 self::$_servers[$id_server]['database']
    242.             );
    243.         }
    244. 
    245.         return self::$instance[$id_server];
    246.     }
    
  • DbCore::getInstance - [line 47 - config/alias.php]
    42.  * @param bool $htmlOK Does data contain HTML code ? (optional)
    43.  * @return string Sanitized data
    44.  */
    45. function pSQL($string, $htmlOK = false)
    46. {
    47.     return Db::getInstance()->escape($string, $htmlOK);
    48. }
    49. 
    50. function bqSQL($string)
    51. {
    52.     return str_replace('`', '\`', pSQL($string));
    
  • pSQL - [line 1345 - classes/shop/Shop.php]
    1340.     private static function findShopByHost($host)
    1341.     {
    1342.         $sql = 'SELECT s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
    1343.                     FROM ' . _DB_PREFIX_ . 'shop_url su
    1344.                     LEFT JOIN ' . _DB_PREFIX_ . 'shop s ON (s.id_shop = su.id_shop)
    1345.                     WHERE (su.domain = \'' . pSQL($host) . '\' OR su.domain_ssl = \'' . pSQL($host) . '\')
    1346.                         AND s.active = 1
    1347.                         AND s.deleted = 0
    1348.                     ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC';
    1349. 
    1350.         $result = Db::getInstance()->executeS($sql);
    
  • ShopCore::findShopByHost - [line 341 - classes/shop/Shop.php]
    336.             $found_uri = '';
    337.             $is_main_uri = false;
    338.             $host = Tools::getHttpHost(false, false, true);
    339.             $request_uri = rawurldecode($_SERVER['REQUEST_URI']);
    340. 
    341.             $result = self::findShopByHost($host);
    342. 
    343.             // If could not find a matching, try with port
    344.             if (empty($result)) {
    345.                 $host = Tools::getHttpHost(false, false, false);
    346.                 $result = self::findShopByHost($host);
    
  • ShopCore::initialize - [line 128 - config/config.inc.php]
    123. 
    124. $context = Context::getContext();
    125. 
    126. /* Initialize the current Shop */
    127. try {
    128.     $context->shop = Shop::initialize();
    129. } catch (PrestaShopException $e) {
    130.     $e->displayMessage();
    131. }
    132. define('_THEME_NAME_', $context->shop->theme->getName());
    133. define('_PARENT_THEME_NAME_', $context->shop->theme->get('parent') ?: '');
    
  • require - [line 27 - index.php] - [1 Arguments]
    22.  * @author    PrestaShop SA and Contributors <contact@prestashop.com>
    23.  * @copyright Since 2007 PrestaShop SA and Contributors
    24.  * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
    25.  */
    26. 
    27. require dirname(__FILE__).'/config/config.inc.php';
    28. Dispatcher::getInstance()->dispatch();
    Argument [0]
    /var/www/vhosts/zapateriasrin.com/httpdocs/config/config.inc.php
    
">
Selecciona tu talla:
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
Descripción
Zapatilla de mujer, de la marca Xti. Fabricada en tejido elástico. Cierre cordonera. Tirador en la parte trasera para facilitar la puesta. Suela de goma antideslizante. Con plantilla extraíble. Este modelo ha obtenido el certificado vegano por la organización mundial PETA (Organización de los derechos de los animales).
Lee masShow less
Detalles del producto
1433800237

Ficha técnica

Color
Negro
Temporadas
I24
Envíos y devoluciones
También te podrían gustar
ZAPATO DE MUJER TDS 120033 ZAPATO DE MUJER TDS 120033
NOVEDAD
37 36 38 39 40 41 35
Teddy Smith
59,95 €
ZAPATO DE MUJER TDS PLANO CON CORDONES 120033
Deportivas Mujer 68490 Deportivas Mujer 68490
36 37 38 39 40 41
MARIA MARE
55,95 €
Deportivas Mujer 68490 Deportivas Mujer 68490
36 37 38 39 40 41
MARIA MARE
55,95 €
Más productos de la misma marca
BOTA DE MUJER XTI 143000 BOTA DE MUJER XTI 143000
NOVEDAD
37 36 38 39 40 41 35
XTI
69,95 €
BOTA DE MUJER XTI CON TACON Y CREMALLERA 143000
BOTA DE MUJER XTI 142937 BOTA DE MUJER XTI 142937
NOVEDAD
37 36 38 39 40 41 35
XTI
69,95 €
BOTA MOTERA PLANA DE MUJER XTI CON CREMALLERA 142937
ZAPATO DE MUJER XTI 143380
49,95 €
Añadir a mi cesta

[PrestaShopException]

Link to database cannot be established: SQLSTATE[HY000] [2002] Connection refused
at line 136 in file classes/db/DbPDO.php

131.     public function connect()
132.     {
133.         try {
134.             $this->link = $this->getPDO($this->server, $this->user, $this->password, $this->database, 5);
135.         } catch (PDOException $e) {
136.             throw new PrestaShopException('Link to database cannot be established: ' . $e->getMessage());
137.         }
138. 
139.         $this->link->exec('SET SESSION sql_mode = \'\'');
140. 
141.         return $this->link;

Menú

Crear una cuenta gratuita para guardar tus favoritos.

Registrarse