lunos Posted November 4, 2015 Share Posted November 4, 2015 Hello, after i did the upgrade to 1.6.1 from 1.6.0.9 the product list is not to see anymore. I found out that it has something to do with the classes/PrestaShopAutoload.php file. If i replace it with the old one the products show up. And this are the lines: line 64 before: $file = _PS_ROOT_DIR_.PrestaShopAutoload::INDEX_FILE; after upgrade: $file = $this->normalizeDirectory(_PS_ROOT_DIR_).PrestaShopAutoload::INDEX_FILE; line 157 before: $filename = _PS_ROOT_DIR_.PrestaShopAutoload::INDEX_FILE; after upgrade: $filename = $this->normalizeDirectory(_PS_ROOT_DIR_).PrestaShopAutoload::INDEX_FILE; line 182 before: $root_dir = $host_mode ? _PS_ROOT_DIR_ : $this->root_dir; after upgrade: $root_dir = $host_mode ? $this->normalizeDirectory(_PS_ROOT_DIR_) : $this->root_dir; Maybe somebody know more about Thanks Link to comment Share on other sites More sharing options...
Recommended Posts