ErrorException

HTTP 500 Whoops, looks like something went wrong.

file_put_contents(): Only -1 of 69 bytes written, possibly out of free disk space

Exception

ErrorException

  1.      * @param bool $lock
  2.      * @return int
  3.      */
  4.     public function put(string $path$contents$lock false)
  5.     {
  6.         return file_put_contents($path$contents$lock LOCK_EX 0);
  7.     }
  8.     /**
  9.      * Write the contents of a file, replacing it atomically if it already exists.
  10.      * @param string $path
  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 bool $lock
  2.      * @return int
  3.      */
  4.     public function put(string $path$contents$lock false)
  5.     {
  6.         return file_put_contents($path$contents$lock LOCK_EX 0);
  7.     }
  8.     /**
  9.      * Write the contents of a file, replacing it atomically if it already exists.
  10.      * @param string $path
  1.         }
  2.         $result $this->files->put(
  3.             $path,
  4.             $this->expiration($seconds) . serialize($value),
  5.             true
  6.         );
  7.         if ($result !== false && $result 0) {
  8.             $this->ensureFileHasCorrectPermissions($path);
  1.         //save list of keys to paths
  2.         if ($key !== 'ALL_KEYS' && empty($seconds)) {
  3.             $allKeys $this->get('ALL_KEYS') ?: [];
  4.             if (!isset($allKeys[$key])) {
  5.                 $allKeys[$key] = 1;
  6.                 $this->put('ALL_KEYS'$allKeys0);
  7.             }
  8.         }
  9.         $result $this->files->put(
  10.             $path,
  1.      * @param mixed $value
  2.      * @return bool
  3.      */
  4.     public function forever($key$value): bool
  5.     {
  6.         return $this->put($key$value0);
  7.     }
  8.     /**
  9.      * Remove an item from the cache.
  10.      * @param string $key
  1.      * @param mixed $value
  2.      * @return bool
  3.      */
  4.     public function forever($key$value)
  5.     {
  6.         $result $this->store->forever($this->itemKey($key), $value);
  7.         if ($result) {
  8.             event(new CacheWritten($key$value));
  9.         }
  1.         if (is_array($key)) {
  2.             return $this->putMany($key$value);
  3.         }
  4.         if ($ttl === null) {
  5.             return $this->forever($key$value);
  6.         }
  7.         $seconds $this->getSeconds($ttl);
  8.         if ($seconds <= 0) {
  1.         // given number of seconds so it's available for all subsequent requests.
  2.         if (!is_null($value)) {
  3.             return $value;
  4.         }
  5.         $this->put($key$value $callback(), $ttl);
  6.         return $value;
  7.     }
  8.     /**
  1.     public static function remember(string $key, \Closure $closure$ttl 60 5)
  2.     {
  3.         try {
  4.             return self::getRepository()
  5.                 ->remember(
  6.                     $key,
  7.                     $ttl,
  8.                     $closure
  9.                 );
  10.         } catch (\Exception $exception) {
  11.             Log::critical($exception->getMessage(), [
FileCacheHelper::remember() in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/index.php (line 349)
  1.             $listingProducts tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC) ?: [];
  2.         } else {
  3.             $listingProducts FileCacheHelper::remember(
  4.                 FileCacheHelper::PRODUCTS_KEY '_' md5($listing_sql),
  5.                 fn() => tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  6.                 null
  7.             );
  8.         }
  9.         //salemaker: get salemaker prices only for products from current page (uses only one sql-query)
  10.         $salemakers_array get_salemakers($listingProducts);

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 69 bytes written, possibly out of free disk space

  at /home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140
  at Bootstrap\HandleExceptions->handleError()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at file_put_contents()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140)
  at App\Classes\Filesystem\Filesystem->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:71)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:64)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:138)
  at App\Classes\Cache\Store\FileStore->forever()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:301)
  at App\Classes\Cache\Repository->forever()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:160)
  at App\Classes\Cache\Repository->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:328)
  at App\Classes\Cache\Repository->remember()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Helpers/FileCacheHelper.php:282)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/index.php:349)                
file_put_contents(): Only -1 of 10243 bytes written, possibly out of free disk space (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

file_put_contents(): Only -1 of 10243 bytes written, possibly out of free disk space

Exception

ErrorException

  1.      * @param bool $lock
  2.      * @return int
  3.      */
  4.     public function put(string $path$contents$lock false)
  5.     {
  6.         return file_put_contents($path$contents$lock LOCK_EX 0);
  7.     }
  8.     /**
  9.      * Write the contents of a file, replacing it atomically if it already exists.
  10.      * @param string $path
  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 bool $lock
  2.      * @return int
  3.      */
  4.     public function put(string $path$contents$lock false)
  5.     {
  6.         return file_put_contents($path$contents$lock LOCK_EX 0);
  7.     }
  8.     /**
  9.      * Write the contents of a file, replacing it atomically if it already exists.
  10.      * @param string $path
  1.         }
  2.         $result $this->files->put(
  3.             $path,
  4.             $this->expiration($seconds) . serialize($value),
  5.             true
  6.         );
  7.         if ($result !== false && $result 0) {
  8.             $this->ensureFileHasCorrectPermissions($path);
  1.      * @param mixed $value
  2.      * @return bool
  3.      */
  4.     public function forever($key$value): bool
  5.     {
  6.         return $this->put($key$value0);
  7.     }
  8.     /**
  9.      * Remove an item from the cache.
  10.      * @param string $key
  1.      * @param mixed $value
  2.      * @return bool
  3.      */
  4.     public function forever($key$value)
  5.     {
  6.         $result $this->store->forever($this->itemKey($key), $value);
  7.         if ($result) {
  8.             event(new CacheWritten($key$value));
  9.         }
  1.         if (is_array($key)) {
  2.             return $this->putMany($key$value);
  3.         }
  4.         if ($ttl === null) {
  5.             return $this->forever($key$value);
  6.         }
  7.         $seconds $this->getSeconds($ttl);
  8.         if ($seconds <= 0) {
  1.         // given number of seconds so it's available for all subsequent requests.
  2.         if (!is_null($value)) {
  3.             return $value;
  4.         }
  5.         $this->put($key$value $callback(), $ttl);
  6.         return $value;
  7.     }
  8.     /**
  1.     public static function remember(string $key, \Closure $closure$ttl 60 5)
  2.     {
  3.         try {
  4.             return self::getRepository()
  5.                 ->remember(
  6.                     $key,
  7.                     $ttl,
  8.                     $closure
  9.                 );
  10.         } catch (\Exception $exception) {
  11.             Log::critical($exception->getMessage(), [
FileCacheHelper::remember() in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/index.php (line 349)
  1.             $listingProducts tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC) ?: [];
  2.         } else {
  3.             $listingProducts FileCacheHelper::remember(
  4.                 FileCacheHelper::PRODUCTS_KEY '_' md5($listing_sql),
  5.                 fn() => tep_db_query($listing_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  6.                 null
  7.             );
  8.         }
  9.         //salemaker: get salemaker prices only for products from current page (uses only one sql-query)
  10.         $salemakers_array get_salemakers($listingProducts);

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 10243 bytes written, possibly out of free disk space

  at /home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140
  at Bootstrap\HandleExceptions->handleError()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at file_put_contents()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140)
  at App\Classes\Filesystem\Filesystem->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:71)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:138)
  at App\Classes\Cache\Store\FileStore->forever()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:301)
  at App\Classes\Cache\Repository->forever()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:160)
  at App\Classes\Cache\Repository->put()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:328)
  at App\Classes\Cache\Repository->remember()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Helpers/FileCacheHelper.php:282)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/index.php:349)                
Матрицы для ноутбуков - Страница 1390

Матрицы для ноутбуков - Страница 1390

На страницу:
Сортировка:
Матрица Lenovo THINKPAD EDGE 13 0197-3QB для ноутбука
#322287 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-3QB для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-3UC для ноутбука
#322617 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-3UC для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0196-4AT для ноутбука
#323164 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0196-4AT для ноутбука
Матрица Lenovo IDEAPAD Z380 2129 для ноутбука
#323728 В наличии

1275 грн

Матрица Lenovo IDEAPAD Z380 2129 для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0217-22G для ноутбука
#324234 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0217-22G для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0492-52U для ноутбука
#324517 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0492-52U для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-X02 для ноутбука
#324737 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-X02 для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0217-37M для ноутбука
#324853 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0217-37M для ноутбука
Матрица Lenovo THINKPAD X1 1292 SERIES для ноутбука
#325027 В наличии

1275 грн

Матрица Lenovo THINKPAD X1 1292 SERIES для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0221-A12 для ноутбука
#325053 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0221-A12 для ноутбука
Матрица Lenovo THINKPAD EDGE E320 1298-RL1 для ноутбука
#326267 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E320 1298-RL1 для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-RY4 для ноутбука
#326404 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-RY4 для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-XF8 для ноутбука
#327487 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-XF8 для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-59J для ноутбука
#327749 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-59J для ноутбука
Матрица Lenovo THINKPAD EDGE E330 3354-BNG для ноутбука
#327968 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E330 3354-BNG для ноутбука
Матрица Lenovo THINKPAD EDGE E330 3354-BKG для ноутбука
#328010 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E330 3354-BKG для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0221-26A для ноутбука
#328047 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0221-26A для ноутбука
Матрица Lenovo THINKPAD EDGE E320 1298-4YM для ноутбука
#328225 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E320 1298-4YM для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0492-2JT для ноутбука
#328292 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0492-2JT для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0492-RZ3 для ноутбука
#328672 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0492-RZ3 для ноутбука
{"errno":1114,"error":"The table 'sessions' is full","query":"replace into sessions values ('g53m9jmv99k1b132jerf41kf64', '1752076696', 'cart|O:12:\\\"shoppingCart\\\":4:{s:8:\\\"contents\\\";a:0:{}s:5:\\\"total\\\";i:0;s:6:\\\"weight\\\";i:0;s:13:\\\"pruduct_total\\\";i:0;}language|s:7:\\\"russian\\\";language_short|s:2:\\\"ru\\\";languages_id|s:1:\\\"3\\\";currency|s:3:\\\"UAH\\\";wishList|O:8:\\\"wishlist\\\":0:{}compares|N;geopluginJSONE|s:318:\\\"{\\\"ip\\\":\\\"216.73.216.57\\\",\\\"city\\\":\\\"Los Angeles\\\",\\\"region\\\":null,\\\"areaCode\\\":null,\\\"dmaCode\\\":null,\\\"countryCode\\\":\\\"US\\\",\\\"countryName\\\":\\\"United States of America\\\",\\\"continentCode\\\":\\\"US\\\",\\\"latitude\\\":\\\"34.05223\\\",\\\"longitude\\\":\\\"-118.24368\\\",\\\"currencyCode\\\":\\\"USD\\\",\\\"languages\\\":[\\\"EN\\\",\\\"CA\\\",\\\"MX\\\",\\\"CU\\\"],\\\"currencySymbol\\\":null,\\\"currencyConverter\\\":null}\\\";')","SERVER_NAME":"dev.ltscreen.com","REMOTE_ADDR":"216.73.216.57","HTTP_REFERER":null,"REQUEST_URI":"\/ru\/matricy-dla-noutbukov\/c-11069220.html?page=1390"} Unknown: Cannot call session save handler in a recursive manner (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

Unknown: Cannot call session save handler in a recursive manner

Exception

ErrorException

in /Unknown (line 1)
  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}()

Stack Trace

ErrorException
ErrorException:
Unknown: Cannot call session save handler in a recursive manner

  
  at Bootstrap\HandleExceptions->handleError()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()                
Unknown: Failed to write session data using user defined save handler. (session.save_path: /home/dev_ltscreen/tmp) (500 Whoops, looks like something went wrong.)

ErrorException

HTTP 500 Whoops, looks like something went wrong.

Unknown: Failed to write session data using user defined save handler. (session.save_path: /home/dev_ltscreen/tmp)

Exception

ErrorException

in /Unknown (line 1)
  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}()

Stack Trace

ErrorException
ErrorException:
Unknown: Failed to write session data using user defined save handler. (session.save_path: /home/dev_ltscreen/tmp)

  
  at Bootstrap\HandleExceptions->handleError()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()