Your file /var/www/html/cache/class_index.php is corrupted. Please remove this file, a new one will be regenerated automatically
at line 155 in file classes/Autoload.php
149. while (!$integrity_is_ok);
150.
151. if (!$integrity_is_ok)
152. {
153. file_put_contents($filename, '<?php return array(); ?>');
154. throw new PrestaShopException('Your file '.$filename.' is corrupted. Please remove this file, a new one will be regenerated automatically');
155. }
156. }
157.
158. $this->index = $classes;
159. }
82.
83. // regenerate the class index if the requested class is not found in the index or if the requested file doesn't exists
84. if (!isset($this->index[$classname])
85. || ($this->index[$classname] && !is_file($this->root_dir.$this->index[$classname]))
86. || (isset($this->index[$classname.'Core']) && $this->index[$classname.'Core'] && !is_file($this->root_dir.$this->index[$classname.'Core'])))
87. $this->generateIndex();
88.
89. // If $classname has not core suffix (E.g. Shop, Product)
90. if (substr($classname, -4) != 'Core')
91. {
92. // If requested class does not exist, load associated core class
Argument [0] CheckYourDataWSHelper
Argument [0] CheckYourDataWSHelper
23. /**
24. * Module instanciate
25. */
26. public function __construct()
27. {
28. if (! class_exists('CheckYourDataWSHelper')) {
29. include_once dirname(__FILE__).'/wshelper.inc.php';
30. }
31. // trackers
32. if (! class_exists('CheckYourDataGAnalytics')) {
33. include_once dirname(__FILE__).'/trackers/ganalytics.inc.php';
Argument [0] CheckYourDataWSHelper
849. if (Tools::file_exists_cache(_PS_MODULE_DIR_.$module_name.'/'.$module_name.'.php'))
850. {
851. include_once(_PS_MODULE_DIR_.$module_name.'/'.$module_name.'.php');
852.
853. if (class_exists($module_name, false))
854. return self::$_INSTANCE[$module_name] = new $module_name;
855. }
856. return false;
857. }
858. return self::$_INSTANCE[$module_name];
859. }
390. foreach ($module_list as $array)
391. {
392. // Check errors
393. if ($id_module && $id_module != $array['id_module'])
394. continue;
395. if (!($moduleInstance = Module::getInstanceByName($array['module'])))
396. continue;
397.
398. // Check permissions
399. $exceptions = $moduleInstance->getExceptions($array['id_hook']);
400. if (in_array(Dispatcher::getInstance()->getController(), $exceptions))
Argument [0] checkyourdata
443. // These hooks aren't used for the mobile theme.
444. // Needed hooks are called in the tpl files.
445. if (!isset($this->context->cart))
446. $this->context->cart = new Cart();
447. $this->context->smarty->assign(array(
448. 'HOOK_HEADER' => Hook::exec('displayHeader'),
449. 'HOOK_TOP' => Hook::exec('displayTop'),
450. 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''),
451. 'HOOK_RIGHT_COLUMN' => ($this->display_column_right ? Hook::exec('displayRightColumn', array('cart' => $this->context->cart)) : ''),
452. ));
453. }
Argument [0] displayHeader
81. $this->errors[] = Tools::displayError('You do not have access to this category.');
82. }
83.
84. public function initContent()
85. {
86. parent::initContent();
87.
88. if (isset($this->context->cookie->id_compare))
89. $this->context->smarty->assign('compareProducts', CompareProduct::getCompareProducts((int)$this->context->cookie->id_compare));
90.
91. $this->productSort(); // Product sort must be called before assignProductList()
162.
163. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className)))
164. $this->initHeader();
165.
166. if ($this->viewAccess())
167. $this->initContent();
168. else
169. $this->errors[] = Tools::displayError('Access denied.');
170.
171. if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className)))
172. $this->initFooter();
343. // Execute hook dispatcher
344. if (isset($params_hook_action_dispatcher))
345. Hook::exec('actionDispatcher', $params_hook_action_dispatcher);
346.
347. // Running controller
348. $controller->run();
349. }
350. catch (PrestaShopException $e)
351. {
352. $e->displayMessage();
353. }
23. * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
24. * International Registered Trademark & Property of PrestaShop SA
25. */
26.
27. require(dirname(__FILE__).'/config/config.inc.php');
28. Dispatcher::getInstance()->dispatch();
29.