ErrorException

HTTP 500 Whoops, looks like something went wrong.

filesize(): stat failed for /home/solomono/web/solomono.net/sites/motofix.com.ua/storage/cache/other/71e762b81494dfb4b482322c260e091e_tep_get_all_sql_products_ids

Exception

ErrorException

  1.      * @param string $path
  2.      * @return int
  3.      */
  4.     public function size($path)
  5.     {
  6.         return filesize($path);
  7.     }
  8.     public function humanFilesize($bytes$decimals 2)
  9.     {
  10.         $sz 'BKMGTP';
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.      * @param string $path
  2.      * @return int
  3.      */
  4.     public function size($path)
  5.     {
  6.         return filesize($path);
  7.     }
  8.     public function humanFilesize($bytes$decimals 2)
  9.     {
  10.         $sz 'BKMGTP';
  1.         $handle fopen($path'rb');
  2.         if ($handle) {
  3.             //  try {
  4.             if (flock($handleLOCK_SH)) {
  5.                 clearstatcache(true$path);
  6.                 $contents fread($handle$this->size($path) ?: 1);
  7.                 flock($handleLOCK_UN);
  8.             }
  9.             //  } finally {
  10.             //      fclose($handle);
  11.             //  }
  1.      * @throws Exception
  2.      */
  3.     public function get(string $pathbool $lock false)
  4.     {
  5.         if ($this->isFile($path)) {
  6.             return $lock $this->sharedGet($path) : file_get_contents($path);
  7.         }
  8.         throw new Exception("File does not exist at path {$path}");
  9.     }
  10.     /**
  1.         // If the file doesn't exist, we obviously cannot return the cache so we will
  2.         // just return null. Otherwise, we'll get the contents of the file and get
  3.         // the expiration UNIX timestamps from the start of the file's contents.
  4.         try {
  5.             $expire substr(
  6.                 $contents $this->files->get($pathtrue),
  7.                 0,
  8.                 10
  9.             );
  10.         } catch (Exception $e) {
  11.             return $this->emptyPayload();
  1.      * Retrieve an item from the cache by key.
  2.      * @param string|array $key
  3.      */
  4.     public function get($key)
  5.     {
  6.         return $this->getPayload($key)['data'] ?? null;
  7.     }
  8.     /**
  9.      * Store an item in the cache for a given number of seconds.
  10.      * @param string $key
  1.     {
  2.         if (is_array($key)) {
  3.             return $this->many($key);
  4.         }
  5.         $value $this->store->get($this->itemKey($key));
  6.         // If we could not find the cache value, we will fire the missed event and get
  7.         // the default value for this cache value. This default could be a callback
  8.         // so we will execute the value function which will resolve it if needed.
  9.         if (is_null($value)) {
  1.      * @param Closure $callback
  2.      * @return mixed
  3.      */
  4.     public function remember($key$ttlClosure $callback)
  5.     {
  6.         $value $this->get($key);
  7.         // If the item exists in the cache we will just return this immediately and if
  8.         // not we will execute the given Closure and cache the result of that for a
  9.         // given number of seconds so it's available for all subsequent requests.
  10.         if (!is_null($value)) {
  1.         try {
  2.             if ($isCacheEnabled) {
  3.                 return self::getRepository()
  4.                     ->remember(
  5.                         $key,
  6.                         $ttl,
  7.                         $closure
  8.                     );
  9.             } else {
  10.                 return $closure();
  1.         md5($listing_sql) . '_' __METHOD__,
  2.         fn() => array_column(
  3.             tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC),
  4.             'products_id'
  5.         )
  6.     );
  7. }
  8. function tep_get_query_products_info($listing_sql)
  9. {
  10.     global $languages_id$customer_price$listing_add_fields$spec_array$all_pids;
  1. function tep_get_query_products_info($listing_sql)
  2. {
  3.     global $languages_id$customer_price$listing_add_fields$spec_array$all_pids;
  4.     $all_pids tep_get_all_sql_products_ids($listing_sql);
  5.     if (!empty($all_pids)) {
  6.         $specials getSpecials($all_pids);
  7.         $specialPrices = [];
  8.         foreach ($specials as $special) {
tep_get_query_products_info() in /mnt/test_sites/sites_new/motofix.com.ua/index.php (line 406)
  1.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  2.         $where_attr = !empty($manFilter) ? str_replace($manFilter''$where_filters) : $where_filters;
  3.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  4.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];
  5.         $listing_sql tep_get_query_products_info($listing_sql);
  6.         // define how much products to show on page
  7.         if (!empty($_GET['row_by_page'])) {
  8.             if ($_GET['row_by_page'] == 'all') {
  9.                 $row_by_page 1000;
  10.             } elseif ((int)$_GET['row_by_page'] != 0) {

Stack Trace

ErrorException
ErrorException:
filesize(): stat failed for /home/solomono/web/solomono.net/sites/motofix.com.ua/storage/cache/other/71e762b81494dfb4b482322c260e091e_tep_get_all_sql_products_ids

  at /mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Filesystem/Filesystem.php:339
  at Bootstrap\HandleExceptions->handleError()
     (/mnt/test_sites/sites_new/motofix.com.ua/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at filesize()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Filesystem/Filesystem.php:339)
  at App\Classes\Filesystem\Filesystem->size()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Filesystem/Filesystem.php:55)
  at App\Classes\Filesystem\Filesystem->sharedGet()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Filesystem/Filesystem.php:38)
  at App\Classes\Filesystem\Filesystem->get()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Cache/Store/FileStore.php:185)
  at App\Classes\Cache\Store\FileStore->getPayload()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Cache/Store/FileStore.php:48)
  at App\Classes\Cache\Store\FileStore->get()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Cache/Repository.php:65)
  at App\Classes\Cache\Repository->get()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Cache/Repository.php:319)
  at App\Classes\Cache\Repository->remember()
     (/mnt/test_sites/sites_new/motofix.com.ua/app/Classes/Cache/Helpers/FileCacheHelper.php:185)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/mnt/test_sites/sites_new/motofix.com.ua/includes/functions/general.php:41)
  at tep_get_all_sql_products_ids()
     (/mnt/test_sites/sites_new/motofix.com.ua/includes/functions/general.php:48)
  at tep_get_query_products_info()
     (/mnt/test_sites/sites_new/motofix.com.ua/index.php:406)                
Все для мото - Страница 133

Все для мото - Страница 133

На страницу:
Сортировка:
Шорты защитные (подростковые) M, чёрные, мото ЕКІПІРУВАННЯ, YQ-355116
#YQ-355116 В наличии

676 грн

Шорты защитные (подростковые) M, чёрные, мото ЕКІПІРУВАННЯ, YQ-355116
Цвет:
Черный
Шпаклёвка со стекловолокном зелёная "GLASS", 250g, МОТОХІМІЯ, YQ-304735
#YQ-304735 В наличии

236 грн

Шпаклёвка со стекловолокном зелёная "GLASS", 250g, МОТОХІМІЯ, YQ-304735