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 10269 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 10269 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 10269 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)                
Матрицы для ноутбуков - Страница 1386

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

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

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-24U для ноутбука
Матрица Lenovo THINKPAD EDGE E320 1298-A44 для ноутбука
#290339 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E320 1298-A44 для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0492-43A для ноутбука
#290400 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0492-43A для ноутбука
Матрица Lenovo THINKPAD EDGE E30 0492 CTO для ноутбука
#290678 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E30 0492 CTO для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-2HS для ноутбука
#291031 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-2HS для ноутбука
Матрица Lenovo THINKPAD EDGE E335 3355-5YG для ноутбука
#292697 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E335 3355-5YG для ноутбука
Матрица Lenovo THINKPAD EDGE E30 0197-4KC для ноутбука
#292783 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E30 0197-4KC для ноутбука
Матрица Lenovo THINKPAD EDGE E30 0250-2HC для ноутбука
#292851 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E30 0250-2HC для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0492-3TT для ноутбука
#293278 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0492-3TT для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-53J для ноутбука
#293853 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-53J для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-5KJ для ноутбука
#294682 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-5KJ для ноутбука
Матрица Lenovo THINKPAD EDGE E330 3354-AVG для ноутбука
#295883 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E330 3354-AVG для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0196-2QC для ноутбука
#295912 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0196-2QC для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0217-39M для ноутбука
#296795 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0217-39M для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0492-3YG для ноутбука
#296959 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0492-3YG для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-8CF для ноутбука
#297256 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-8CF для ноутбука
Матрица Lenovo THINKPAD EDGE E330 3354-CQG для ноутбука
#297347 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE E330 3354-CQG для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-5PJ для ноутбука
#297460 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-5PJ для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0197-36V для ноутбука
#297495 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0197-36V для ноутбука
Матрица Lenovo THINKPAD EDGE 13 0196-38V для ноутбука
#297865 В наличии

1275 грн

Матрица Lenovo THINKPAD EDGE 13 0196-38V для ноутбука
{"errno":1114,"error":"The table 'sessions' is full","query":"replace into sessions values ('h6ccopnojf8n7oqd9365h1sg46', '1752083420', '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.77\\\",\\\"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.77","HTTP_REFERER":null,"REQUEST_URI":"\/ru\/matricy-dla-noutbukov\/c-11069220.html?page=1386"} 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}()