ErrorException

HTTP 500 Whoops, looks like something went wrong.

file_put_contents(): Only -1 of 73 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. }
  2. function tep_get_all_pids_price_exclude($listing_sql$excluded_statement)
  3. {
  4.     $cleared_listing_sql str_replace($excluded_statement''$listing_sql);
  5.     return tep_get_all_pids($cleared_listing_sql);
  6. }
  7. /**
  8.  * get count of comments
  9.  */
tep_get_all_pids_price_exclude() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 326)
  1.         $listing_sql .= " limit 0, " $lastProductNumberForPagination;
  2.           
  3.         $listing_sql_raw $listing_sql;
  4.       //  debug($listing_sql);
  5.         // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  6.         $pids_price_filter_excluded tep_get_all_pids_price_exclude($listing_sql$price_filter_statement);
  7.                    
  8.         $pids_filter_excluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_filters));
  9.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  10.         $where_attr str_replace($manFilter''$where_filters);      

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 73 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:130)
  at tep_get_all_pids_price_exclude()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:326)                
file_put_contents(): Only -1 of 376132 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 376132 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. }
  2. function tep_get_all_pids_price_exclude($listing_sql$excluded_statement)
  3. {
  4.     $cleared_listing_sql str_replace($excluded_statement''$listing_sql);
  5.     return tep_get_all_pids($cleared_listing_sql);
  6. }
  7. /**
  8.  * get count of comments
  9.  */
tep_get_all_pids_price_exclude() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 326)
  1.         $listing_sql .= " limit 0, " $lastProductNumberForPagination;
  2.           
  3.         $listing_sql_raw $listing_sql;
  4.       //  debug($listing_sql);
  5.         // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  6.         $pids_price_filter_excluded tep_get_all_pids_price_exclude($listing_sql$price_filter_statement);
  7.                    
  8.         $pids_filter_excluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_filters));
  9.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  10.         $where_attr str_replace($manFilter''$where_filters);      

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 376132 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:130)
  at tep_get_all_pids_price_exclude()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:326)                
file_put_contents(): Only -1 of 73 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 73 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. }
  2. function tep_get_all_pids_price_exclude($listing_sql$excluded_statement)
  3. {
  4.     $cleared_listing_sql str_replace($excluded_statement''$listing_sql);
  5.     return tep_get_all_pids($cleared_listing_sql);
  6. }
  7. /**
  8.  * get count of comments
  9.  */
tep_get_all_pids_price_exclude() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 328)
  1.         $listing_sql_raw $listing_sql;
  2.       //  debug($listing_sql);
  3.         // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  4.         $pids_price_filter_excluded tep_get_all_pids_price_exclude($listing_sql$price_filter_statement);
  5.                    
  6.         $pids_filter_excluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_filters));
  7.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  8.         $where_attr str_replace($manFilter''$where_filters);      
  9.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  10.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 73 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:130)
  at tep_get_all_pids_price_exclude()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:328)                
file_put_contents(): Only -1 of 376132 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 376132 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. }
  2. function tep_get_all_pids_price_exclude($listing_sql$excluded_statement)
  3. {
  4.     $cleared_listing_sql str_replace($excluded_statement''$listing_sql);
  5.     return tep_get_all_pids($cleared_listing_sql);
  6. }
  7. /**
  8.  * get count of comments
  9.  */
tep_get_all_pids_price_exclude() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 328)
  1.         $listing_sql_raw $listing_sql;
  2.       //  debug($listing_sql);
  3.         // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  4.         $pids_price_filter_excluded tep_get_all_pids_price_exclude($listing_sql$price_filter_statement);
  5.                    
  6.         $pids_filter_excluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_filters));
  7.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  8.         $where_attr str_replace($manFilter''$where_filters);      
  9.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  10.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 376132 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:130)
  at tep_get_all_pids_price_exclude()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:328)                
file_put_contents(): Only -1 of 73 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 73 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. }
  2. function tep_get_all_pids_price_exclude($listing_sql$excluded_statement)
  3. {
  4.     $cleared_listing_sql str_replace($excluded_statement''$listing_sql);
  5.     return tep_get_all_pids($cleared_listing_sql);
  6. }
  7. /**
  8.  * get count of comments
  9.  */
tep_get_all_pids_price_exclude() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 332)
  1.                    
  2.         $pids_filter_excluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_filters));
  3.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  4.         $where_attr str_replace($manFilter''$where_filters);      
  5.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  6.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];
  7.         
  8.         $listing_sql tep_get_query_products_info($listing_sql$row_by_page);

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 73 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:130)
  at tep_get_all_pids_price_exclude()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:332)                
file_put_contents(): Only -1 of 376132 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 376132 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. }
  2. function tep_get_all_pids_price_exclude($listing_sql$excluded_statement)
  3. {
  4.     $cleared_listing_sql str_replace($excluded_statement''$listing_sql);
  5.     return tep_get_all_pids($cleared_listing_sql);
  6. }
  7. /**
  8.  * get count of comments
  9.  */
tep_get_all_pids_price_exclude() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 332)
  1.                    
  2.         $pids_filter_excluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_filters));
  3.         $pids_filter_excluded $pids_filter_excluded ?: [0];
  4.         $where_attr str_replace($manFilter''$where_filters);      
  5.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  6.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];
  7.         
  8.         $listing_sql tep_get_query_products_info($listing_sql$row_by_page);

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 376132 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:130)
  at tep_get_all_pids_price_exclude()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:332)                
file_put_contents(): Only -1 of 73 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 73 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. function tep_get_query_products_info($listing_sql$row_by_page 20)
  2. {
  3.     global $languages_id$customer_price$listing_add_fields$spec_array$all_pids$sort_sql;
  4.     $all_pids tep_get_all_pids($listing_sql);
  5.     if (is_array($all_pids) and !empty($all_pids)) {
  6.         if (count($all_pids) > $row_by_page) {
  7.             $page getPage();
  8.             $start = ($page 1) * $row_by_page;
tep_get_query_products_info() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 337)
  1.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  2.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];
  3.         
  4.         $listing_sql tep_get_query_products_info($listing_sql$row_by_page);
  5.         if (is_array($all_pids)) {
  6.             $all_pids_string " p.products_id in(" implode(','$all_pids) . ") ";
  7.             $number_of_rows count($all_pids);
  8.         } else {

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 73 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:58)
  at tep_get_query_products_info()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:337)                
file_put_contents(): Only -1 of 376132 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 376132 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(), [
  1.                 while ($raw_listing tep_db_fetch_array($module_products_first)) {
  2.                     $all_pids[] = $raw_listing['products_id'];
  3.                 }
  4.                 return $all_pids;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $all_pids;
  10. }
  1. function tep_get_query_products_info($listing_sql$row_by_page 20)
  2. {
  3.     global $languages_id$customer_price$listing_add_fields$spec_array$all_pids$sort_sql;
  4.     $all_pids tep_get_all_pids($listing_sql);
  5.     if (is_array($all_pids) and !empty($all_pids)) {
  6.         if (count($all_pids) > $row_by_page) {
  7.             $page getPage();
  8.             $start = ($page 1) * $row_by_page;
tep_get_query_products_info() in /home/ltscreen/web/ltscreen.com/public_html/index.php (line 337)
  1.         $pids_filter_attr_axcluded tep_get_all_pids_price_exclude($listing_sqlstr_replace($price_filter_statement''$where_attr));
  2.         $pids_filter_attr_axcluded $pids_filter_attr_axcluded ?: [];
  3.         
  4.         $listing_sql tep_get_query_products_info($listing_sql$row_by_page);
  5.         if (is_array($all_pids)) {
  6.             $all_pids_string " p.products_id in(" implode(','$all_pids) . ") ";
  7.             $number_of_rows count($all_pids);
  8.         } else {

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 376132 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/includes/functions/general.php:121)
  at tep_get_all_pids()
     (/home/ltscreen/web/ltscreen.com/public_html/includes/functions/general.php:58)
  at tep_get_query_products_info()
     (/home/ltscreen/web/ltscreen.com/public_html/index.php:337)                
file_put_contents(): Only -1 of 69 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 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 9817 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 9817 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 9817 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)                
Матрицы для ноутбуков - Страница 870

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

На страницу:
Сортировка:
Матрица Toshiba PSLB8E-06302SN5 для ноутбука
#661849 Нет в наличии

1975 грн

Матрица Toshiba PSLB8E-06302SN5 для ноутбука
Матрица Toshiba PSAA2U-04P018 для ноутбука
#661852 Нет в наличии

1975 грн

Матрица Toshiba PSAA2U-04P018 для ноутбука
Матрица Toshiba PSAA9E-01Y00YG3 для ноутбука
#661859 Нет в наличии

1975 грн

Матрица Toshiba PSAA9E-01Y00YG3 для ноутбука
Матрица Toshiba PSAE6E-0FL01VN5 для ноутбука
#661865 Нет в наличии

1975 грн

Матрица Toshiba PSAE6E-0FL01VN5 для ноутбука
Матрица Toshiba PSAE3E-03R018EN для ноутбука
#661869 Нет в наличии

1975 грн

Матрица Toshiba PSAE3E-03R018EN для ноутбука
Матрица Toshiba PSLB9U-04D030 для ноутбука
#661886 Нет в наличии

1975 грн

Матрица Toshiba PSLB9U-04D030 для ноутбука
Матрица Toshiba PSL48E-02Y02KGR для ноутбука
#661906 Нет в наличии

1975 грн

Матрица Toshiba PSL48E-02Y02KGR для ноутбука
Матрица Toshiba PSAC1E-0QJ052EN для ноутбука
#661908 Нет в наличии

1975 грн

Матрица Toshiba PSAC1E-0QJ052EN для ноутбука
Матрица Toshiba PSLB8E-03E007EN для ноутбука
#661919 Нет в наличии

1975 грн

Матрица Toshiba PSLB8E-03E007EN для ноутбука
Матрица Toshiba PSAH0U-00P008 для ноутбука
#661925 Нет в наличии

1975 грн

Матрица Toshiba PSAH0U-00P008 для ноутбука
Матрица Toshiba PSAE7E-007003EN для ноутбука
#661932 Нет в наличии

1975 грн

Матрица Toshiba PSAE7E-007003EN для ноутбука
Матрица Toshiba PSM70E-00U00QG3 для ноутбука
#661933 Нет в наличии

1975 грн

Матрица Toshiba PSM70E-00U00QG3 для ноутбука
Матрица Toshiba PSAECE-02700MBT для ноутбука
#661938 Нет в наличии

1975 грн

Матрица Toshiba PSAECE-02700MBT для ноутбука
Матрица Toshiba V000090040 для ноутбука
#661957 Нет в наличии

1975 грн

Матрица Toshiba V000090040 для ноутбука
Матрица Toshiba PSAA3E-00Y018ED для ноутбука
#661962 Нет в наличии

1975 грн

Матрица Toshiba PSAA3E-00Y018ED для ноутбука
Матрица Toshiba PSAA8E-192049EN для ноутбука
#661968 Нет в наличии

1975 грн

Матрица Toshiba PSAA8E-192049EN для ноутбука
Матрица Toshiba PSAB0E-00K006BT для ноутбука
#661975 Нет в наличии

1975 грн

Матрица Toshiba PSAB0E-00K006BT для ноутбука
Матрица Toshiba PSLC8C-01N019 для ноутбука
#661977 Нет в наличии

1975 грн

Матрица Toshiba PSLC8C-01N019 для ноутбука
Матрица Toshiba PSM70E-01201DGR для ноутбука
#661983 Нет в наличии

1975 грн

Матрица Toshiba PSM70E-01201DGR для ноутбука
Матрица Toshiba PSAA5U-02101D для ноутбука
#661984 Нет в наличии

1975 грн

Матрица Toshiba PSAA5U-02101D для ноутбука