Jump to content

giovanniciquera

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • First Name
    giovanni
  • Last Name
    ciquera

giovanniciquera's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Yes, agile prestashop multiple seller/vendor module
  2. Hi, when a customer make a order, in the back end (tab orders) this order appears duplicate. How can i fix it? thank you
  3. non funziona nemmeno con una versione vecchia di prestashop. Ecco l'errore: PrestaShopDatabaseException]Table 'prestashop.ps_shop_url' doesn't exist SELECT s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main FROM ps_shop_url su LEFT JOIN ps_shop s ON (s.id_shop = su.id_shop) WHERE (su.domain = '127.0.0.1' OR su.domain_ssl = '127.0.0.1') AND s.active = 1 AND s.deleted = 0 ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC
  4. Hi, i have the same error during installing prestashop 1.6.1.3 on xampp and windows10. This is the error that shows me (ps_mod_dev= true) : PrestaShopDatabaseException] Table 'prestashop.ps_shop_url' doesn't exist SELECT s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main FROM ps_shop_url su LEFT JOIN ps_shop s ON (s.id_shop = su.id_shop) WHERE (su.domain = '127.0.0.1' OR su.domain_ssl = '127.0.0.1') AND s.active = 1 AND s.deleted = 0 ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC t line 791 in file classes/db/Db.php 786. if ($webservice_call && $errno) { 787. $dbg = debug_backtrace(); 788. WebserviceRequest::getInstance()->setError(500, ' '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97); 789. } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) { 790. if ($sql) { 791. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>'); 792. } 793. 794. throw new PrestaShopDatabaseException($this->getMsgError()); 795. } 796. } DbCore->displayError - [line 425 - classes/db/Db.php] - [1 Arguments] DbCore->query - [line 643 - classes/db/Db.php] - [1 Arguments] DbCore->executeS - [line 334 - classes/shop/Shop.php] - [1 Arguments] ShopCore::initialize - [line 114 - config/config.inc.php] require - [line 27 - index.php] - [1 Arguments]
  5. Hi, I have the same error during installation of prestashop v.1.6.1.3 on xampp and windows 10. Solutions?
  6. chiaramente è prestashop v.1.6.1.3, inoltre l'error log di apache mi dice:HP Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\--\--\classes\shop\Shop.php on line 337
  7. Salve, cerco d'installare prestashop ver.1.6.0.14 su windows in locale (xampp) ma l'installazione si blocca al 12% prima della creazione delle tabelle nel database. Penso sia un problema con windows10 visto che fino a che utilizzavo windows7 il problema non sussisteva. Soluzioni? Grazie anticipatamente
  8. Fatal error: Call to undefined method Module::getBatchMode() in /home/wfhgdhzt/public_html/classes/Tag.php on line 137 This error appears in back office products/ car parts filter (module) when i add items and save.
  9. Salve ho questo errore su prestashop una volta che entro nella home del front end: Unknown column '' in 'order clause' SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`, m.`name` AS manufacturer_name, p.`id_manufacturer` as id_manufacturer, MAX(image_shop.`id_image`) id_image, il.`legend`, ps.`quantity` AS sales, t.`rate`, pl.`meta_keywords`, pl.`meta_title`, pl.`meta_description`, DATEDIFF(p.`date_add`, DATE_SUB(NOW(), INTERVAL 299999 DAY)) > 0 AS new, MAX(product_attribute_shop.minimal_quantity) AS product_attribute_minimal_quantity FROM `ps_product_sale` ps LEFT JOIN `ps_product` p ON ps.`id_product` = p.`id_product` LEFT JOIN ps_product_shop product_shop ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_product_attribute` pa ON (p.`id_product` = pa.`id_product`) LEFT JOIN ps_product_attribute_shop product_attribute_shop ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1 AND product_attribute_shop.`default_on` = 1) LEFT JOIN ps_stock_available stock ON (stock.id_product = p.id_product AND stock.id_product_attribute = IFNULL(`product_attribute_shop`.id_product_attribute, 0) AND stock.id_shop = 1 AND stock.id_shop_group = 0 ) LEFT JOIN `ps_product_lang` pl ON p.`id_product` = pl.`id_product` AND pl.`id_lang` = 2 AND pl.id_shop = 1 LEFT JOIN `ps_image` i ON (i.`id_product` = p.`id_product`) LEFT JOIN ps_image_shop image_shop ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1 AND image_shop.cover=1) LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 2) LEFT JOIN `ps_manufacturer` m ON (m.`id_manufacturer` = p.`id_manufacturer`) LEFT JOIN `ps_tax_rule` tr ON (product_shop.`id_tax_rules_group` = tr.`id_tax_rules_group`) AND tr.`id_country` = 10 AND tr.`id_state` = 0 LEFT JOIN `ps_tax` t ON (t.`id_tax` = tr.`id_tax`) JOIN `ps_category_product` cp ON (cp.`id_product` = p.`id_product`) JOIN `ps_category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` = 1) WHERE product_shop.`active` = 1 AND p.`visibility` != 'none' GROUP BY product_shop.id_product ORDER BY `` DESC LIMIT 0, 24 at line 646 in file classes/db/Db.php 641. WebserviceRequest::getInstance()->setError(500, ' '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97); 642. } 643. elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) 644. { 645. if ($sql) 646. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>'); 647. throw new PrestaShopDatabaseException($this->getMsgError()); 648. } 649. } 650. 651. /** DbCore->displayError - [line 340 - classes/db/Db.php] - [1 Arguments] DbCore->query - [line 516 - classes/db/Db.php] - [1 Arguments] DbCore->executeS - [line 123 - classes/ProductSale.php] - [1 Arguments] ProductSaleCore::getBestSales - [line 425 - modules/ptsblockproducttabs/ptsblockproducttabs.php] - [3 Arguments] PtsBlockProductTabs->hookRightColumn - [line 368 - modules/ptsblockproducttabs/ptsblockproducttabs.php] - [1 Arguments] PtsBlockProductTabs->hookDisplayHome - [line 510 - classes/Hook.php] - [1 Arguments] HookCore::exec - [line 40 - controllers/front/IndexController.php] - [1 Arguments] IndexControllerCore->initContent - [line 180 - classes/controller/Controller.php] ControllerCore->run - [line 373 - classes/Dispatcher.php] DispatcherCore->dispatch - [line 28 - index.php] Possibile causa? Soluzione? Grazie
×
×
  • Create New...