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/ltscreen/web/ltscreen.com/public_html/index.php (line 355)
  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/ltscreen/web/ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140
  at Bootstrap\HandleExceptions->handleError()
     (/home/ltscreen/web/ltscreen.com/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at file_put_contents()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:140)
  at App\Classes\Filesystem\Filesystem->put()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:71)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:64)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:138)
  at App\Classes\Cache\Store\FileStore->forever()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Repository.php:301)
  at App\Classes\Cache\Repository->forever()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Repository.php:160)
  at App\Classes\Cache\Repository->put()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Repository.php:328)
  at App\Classes\Cache\Repository->remember()
     (/home/ltscreen/web/ltscreen.com/public_html/app/Classes/Cache/Helpers/FileCacheHelper.php:282)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:355)                
file_put_contents(): Only -1 of 9799 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 9799 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/ltscreen/web/ltscreen.com/public_html/index.php (line 355)
  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 9799 bytes written, possibly out of free disk space

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

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

На страницу:
Сортировка:
Матрица IBM-Lenovo FRU 42T0796 для ноутбука
#658110 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0796 для ноутбука
Матрица IBM-Lenovo FRU 42T0794 для ноутбука
#658113 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0794 для ноутбука
Матрица IBM-Lenovo FRU 42T0516 для ноутбука
#658114 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0516 для ноутбука
Матрица IBM-Lenovo FRU 42T0318 для ноутбука
#658115 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0318 для ноутбука
Матрица IBM-Lenovo FRU 42T0575 для ноутбука
#658117 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0575 для ноутбука
Матрица IBM-Lenovo FRU 13N7018 для ноутбука
#658118 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 13N7018 для ноутбука
Матрица IBM-Lenovo FRU 42T0546 для ноутбука
#658120 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0546 для ноутбука
Матрица IBM-Lenovo FRU 42T0317 для ноутбука
#658125 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0317 для ноутбука
Матрица IBM-Lenovo FRU 13N7013 для ноутбука
#658128 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 13N7013 для ноутбука
Матрица IBM-Lenovo FRU 13N7143 для ноутбука
#658129 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 13N7143 для ноутбука
Матрица IBM-Lenovo FRU 42T0794 для ноутбука
#658145 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0794 для ноутбука
Матрица IBM-Lenovo FRU 42T0516 для ноутбука
#658146 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0516 для ноутбука
Матрица IBM-Lenovo FRU 42T0318 для ноутбука
#658147 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0318 для ноутбука
Матрица IBM-Lenovo FRU 42T0575 для ноутбука
#658149 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0575 для ноутбука
Матрица IBM-Lenovo FRU 13N7018 для ноутбука
#658150 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 13N7018 для ноутбука
Матрица IBM-Lenovo FRU 42T0546 для ноутбука
#658152 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0546 для ноутбука
Матрица IBM-Lenovo FRU 42T0317 для ноутбука
#658157 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 42T0317 для ноутбука
Матрица IBM-Lenovo FRU 13N7013 для ноутбука
#658160 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 13N7013 для ноутбука
Матрица IBM-Lenovo FRU 13N7143 для ноутбука
#658161 Нет в наличии

1975 грн

Матрица IBM-Lenovo FRU 13N7143 для ноутбука
Матрица Lenovo FRU 42T0640 для ноутбука
#658453 Нет в наличии

1975 грн

Матрица Lenovo FRU 42T0640 для ноутбука