Матриця ASUS X50GL-AP SERIES для ноутбука

526906
В наявності
1375 грн
0 відгуків

Тип деталі: матриця
Розмір: 15.4
Роздільна здатність: 1280x800
Конектор: 30pin CCFL
Кріплення: без
Поверхня: глянцева
Товщина матриці: NORMAL
Оптична технологія: без
Яскравість: 235 cd/m?
Контрастність: 400:1
Тачскрін: без
Частота: 60Hz
Кольори матриці: 262K 47% NTSC
Гарантія: 6 місяців
Состояние: нове

Чому варто купити у нас:

- зі всіх сумісних матриць ми закуповуємо оригінальні Клас А+ з максимальними характеристиками: яскравістю, контрастністю, кількістю кольорів тощо.
- Наші постачальники перевіряють матриці перед відправкою, так само у нас є можливість перевірити спеціальними тестерами на місці.
- можливість привезти під замовлення саме такий партномір, який ви би хотіли.

Гарантія на матриці 6 місяців. Повернення та обмін товару протягом 14 днів.
Для сервісних центрів та постійних покупців надаються оптові ціни та знижки.
Ми завжди йдемо назустріч покупцям та вирішуємо спірні питання максимально сприятливим для покупця способом.
 
Запитання, що Вас цікавлять, можна поставити нашим менеджерам.

Відгуки Матриця ASUS X50GL-AP SERIES для ноутбука

Залишити свій відгук

1. На умовах 100% передоплати на розрахунковий рахунок компанією Нова пошта, Укрпошта

2. На умовах післяплати тільки компанією Нова пошта

Плановий графік відправлення замовлень:

Нова пошта                                       

Відправлення замовлень, підтверджених та оплачених до 16:00 – здійснюється цього ж дня з понеділка по п'ятницю. Номери ТТН розсилаються автоматично після упаковки товару.

Укрпошта

Відправлення замовлень, підтверджених та оплачених до 15:00 – здійснюється цього ж дня з понеділка по п'ятницю. Номери ТТН розсилаються автоматично після упаковки товару.

 

filesize(): stat failed for /home/dev_ltscreen/web/dev.ltscreen.com/public_html/storage/cache/bd/a5/bda5fcbf671782aad500a5f6cf52179bc99ebd7b (500 Whoops, looks like something went wrong.)

filesize(): stat failed for /home/dev_ltscreen/web/dev.ltscreen.com/public_html/storage/cache/bd/a5/bda5fcbf671782aad500a5f6cf52179bc99ebd7b

Exception

ErrorException

  1.      * @param string $path
  2.      * @return int
  3.      */
  4.     public function size($path)
  5.     {
  6.         return filesize($path);
  7.     }
  8.     public function humanFilesize($bytes$decimals 2)
  9.     {
  10.         $sz 'BKMGTP';
  1.         //ini_set('error_log' , '/home/solomono/web/solomono.net/sites/dev/php.log');
  2.         error_reporting(E_ALL);
  3.         set_error_handler(function ($level$message$file ''$line 0) {
  4.             $this->handleError($level$message$file$line);
  5.         });
  6.         set_exception_handler(function ($e) {
  7.             $this->handleException($e);
  8.         });
HandleExceptions->Bootstrap\{closure}()
  1.      * @param string $path
  2.      * @return int
  3.      */
  4.     public function size($path)
  5.     {
  6.         return filesize($path);
  7.     }
  8.     public function humanFilesize($bytes$decimals 2)
  9.     {
  10.         $sz 'BKMGTP';
  1.         $handle fopen($path'rb');
  2.         if ($handle) {
  3.             //  try {
  4.             if (flock($handleLOCK_SH)) {
  5.                 clearstatcache(true$path);
  6.                 $contents fread($handle$this->size($path) ?: 1);
  7.                 flock($handleLOCK_UN);
  8.             }
  9.             //  } finally {
  10.             //      fclose($handle);
  11.             //  }
  1.      * @throws Exception
  2.      */
  3.     public function get(string $pathbool $lock false)
  4.     {
  5.         if ($this->isFile($path)) {
  6.             return $lock $this->sharedGet($path) : file_get_contents($path);
  7.         }
  8.         throw new Exception("File does not exist at path {$path}");
  9.     }
  10.     /**
  1.         // If the file doesn't exist, we obviously cannot return the cache so we will
  2.         // just return null. Otherwise, we'll get the contents of the file and get
  3.         // the expiration UNIX timestamps from the start of the file's contents.
  4.         try {
  5.             $expire substr(
  6.                 $contents $this->files->get($pathtrue),
  7.                 0,
  8.                 10
  9.             );
  10.         } catch (Exception $e) {
  11.             return $this->emptyPayload();
  1.      * Retrieve an item from the cache by key.
  2.      * @param string|array $key
  3.      */
  4.     public function get($key)
  5.     {
  6.         return $this->getPayload($key)['data'] ?? null;
  7.     }
  8.     /**
  9.      * Store an item in the cache for a given number of seconds.
  10.      * @param string $key
  1.      */
  2.     public function forget($key): bool
  3.     {
  4.         //save list of keys to paths
  5.         if ($key !== 'ALL_KEYS' && empty($seconds)) {
  6.             $allKeys $this->get('ALL_KEYS') ?: [];
  7.             if (isset($allKeys[$key])) {
  8.                 unset($allKeys[$key]);
  9.                 $this->put('ALL_KEYS'$allKeys0);
  10.             }
  11.         }
  1.         // If the current time is greater than expiration timestamps we will delete
  2.         // the file and return null. This helps clean up the old files and keeps
  3.         // this directory much cleaner for us as old files aren't hanging out.
  4.         if ($this->currentTime() >= $expire) {
  5.             $this->forget($key);
  6.             return $this->emptyPayload();
  7.         }
  8.         try {
  1.      * Retrieve an item from the cache by key.
  2.      * @param string|array $key
  3.      */
  4.     public function get($key)
  5.     {
  6.         return $this->getPayload($key)['data'] ?? null;
  7.     }
  8.     /**
  9.      * Store an item in the cache for a given number of seconds.
  10.      * @param string $key
  1.     {
  2.         if (is_array($key)) {
  3.             return $this->many($key);
  4.         }
  5.         $value $this->store->get($this->itemKey($key));
  6.         // If we could not find the cache value, we will fire the missed event and get
  7.         // the default value for this cache value. This default could be a callback
  8.         // so we will execute the value function which will resolve it if needed.
  9.         if (is_null($value)) {
  1.      * @param Closure $callback
  2.      * @return mixed
  3.      */
  4.     public function remember($key$ttlClosure $callback)
  5.     {
  6.         $value $this->get($key);
  7.         // If the item exists in the cache we will just return this immediately and if
  8.         // not we will execute the given Closure and cache the result of that for a
  9.         // given number of seconds so it's available for all subsequent requests.
  10.         if (!is_null($value)) {
  1.     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;
  1.                       AND p.products_id != " . (int)$_GET['products_id'] . "
  2.                       AND p2c.categories_id = '" . (int)$current_category_id "'
  3.                  ORDER BY  " . ($tpl_settings['orderby'] ?: 'p.products_quantity > 0 desc, p.products_sort_order') . "
  4.                            " 'LIMIT ' . ($tpl_settings['limit'] ? (int)$tpl_settings['limit'] : 10);
  5. $drugie_sql tep_get_query_products_info($listing_sql); // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  6. $drugie FileCacheHelper::remember(
  7.     FileCacheHelper::PRODUCTS_KEY '_' md5($drugie_sql),
  8.     fn() => tep_db_query($drugie_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  9.     null
include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php (line 376)
  1.     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  2. ?>
  3. <!--P_DRUGIE-->
  4. <?php if ($template->show('P_DRUGIE')) {
  5.     include(DIR_WS_MODULES 'drugie.php');
  6. ?>
  7. <!--P_XSELL-->
  8. <?php if ($template->show('P_XSELL')) {
  9.     if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php (line 100)
  1.             <?php echo $breadcrumb->trail(' '); ?>
  2.             <!-- END BREADCRUMBS -->
  3.             <!-- CONTENT -->
  4.             <?php
  5.             if (file_exists(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php')) {
  6.                 require(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php'); // content from current template (if exists)
  7.             } else {
  8.                 require(DIR_WS_CONTENT $content '.tpl.php'); // content from default template
  9.             }
  10.             ?>
  11.             <!-- END CONTENT -->
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php (line 252)
  1.     }
  2. } else {
  3.     http_response_code(404);
  4.     $content CONTENT_ERROR_404;
  5. }
  6. require(DIR_WS_TEMPLATES TEMPLATE_NAME '/' TEMPLATENAME_MAIN_PAGE);
  7. require(DIR_WS_INCLUDES 'application_bottom.php');

Stack Trace

ErrorException
ErrorException:
filesize(): stat failed for /home/dev_ltscreen/web/dev.ltscreen.com/public_html/storage/cache/bd/a5/bda5fcbf671782aad500a5f6cf52179bc99ebd7b

  at /home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:339
  at Bootstrap\HandleExceptions->handleError()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at filesize()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:339)
  at App\Classes\Filesystem\Filesystem->size()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:55)
  at App\Classes\Filesystem\Filesystem->sharedGet()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Filesystem/Filesystem.php:38)
  at App\Classes\Filesystem\Filesystem->get()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:195)
  at App\Classes\Cache\Store\FileStore->getPayload()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:46)
  at App\Classes\Cache\Store\FileStore->get()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:149)
  at App\Classes\Cache\Store\FileStore->forget()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:207)
  at App\Classes\Cache\Store\FileStore->getPayload()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Store/FileStore.php:46)
  at App\Classes\Cache\Store\FileStore->get()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:65)
  at App\Classes\Cache\Repository->get()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/app/Classes/Cache/Repository.php:319)
  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/includes/functions/general.php:120)
  at tep_get_all_pids()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/functions/general.php:57)
  at tep_get_query_products_info()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php:20)
  at include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php:376)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php:100)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php:252)                
file_put_contents(): Only -1 of 73 bytes written, possibly out of free disk space (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;
  1.                       AND p.products_id != " . (int)$_GET['products_id'] . "
  2.                       AND p2c.categories_id = '" . (int)$current_category_id "'
  3.                  ORDER BY  " . ($tpl_settings['orderby'] ?: 'p.products_quantity > 0 desc, p.products_sort_order') . "
  4.                            " 'LIMIT ' . ($tpl_settings['limit'] ? (int)$tpl_settings['limit'] : 10);
  5. $drugie_sql tep_get_query_products_info($listing_sql); // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  6. $drugie FileCacheHelper::remember(
  7.     FileCacheHelper::PRODUCTS_KEY '_' md5($drugie_sql),
  8.     fn() => tep_db_query($drugie_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  9.     null
include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php (line 376)
  1.     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  2. ?>
  3. <!--P_DRUGIE-->
  4. <?php if ($template->show('P_DRUGIE')) {
  5.     include(DIR_WS_MODULES 'drugie.php');
  6. ?>
  7. <!--P_XSELL-->
  8. <?php if ($template->show('P_XSELL')) {
  9.     if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php (line 100)
  1.             <?php echo $breadcrumb->trail(' '); ?>
  2.             <!-- END BREADCRUMBS -->
  3.             <!-- CONTENT -->
  4.             <?php
  5.             if (file_exists(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php')) {
  6.                 require(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php'); // content from current template (if exists)
  7.             } else {
  8.                 require(DIR_WS_CONTENT $content '.tpl.php'); // content from default template
  9.             }
  10.             ?>
  11.             <!-- END CONTENT -->
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php (line 252)
  1.     }
  2. } else {
  3.     http_response_code(404);
  4.     $content CONTENT_ERROR_404;
  5. }
  6. require(DIR_WS_TEMPLATES TEMPLATE_NAME '/' TEMPLATENAME_MAIN_PAGE);
  7. require(DIR_WS_INCLUDES 'application_bottom.php');

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 73 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/includes/functions/general.php:120)
  at tep_get_all_pids()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/functions/general.php:57)
  at tep_get_query_products_info()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php:20)
  at include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php:376)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php:100)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php:252)                
file_put_contents(): Only -1 of 197 bytes written, possibly out of free disk space (500 Whoops, looks like something went wrong.)

file_put_contents(): Only -1 of 197 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;
  1.                       AND p.products_id != " . (int)$_GET['products_id'] . "
  2.                       AND p2c.categories_id = '" . (int)$current_category_id "'
  3.                  ORDER BY  " . ($tpl_settings['orderby'] ?: 'p.products_quantity > 0 desc, p.products_sort_order') . "
  4.                            " 'LIMIT ' . ($tpl_settings['limit'] ? (int)$tpl_settings['limit'] : 10);
  5. $drugie_sql tep_get_query_products_info($listing_sql); // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  6. $drugie FileCacheHelper::remember(
  7.     FileCacheHelper::PRODUCTS_KEY '_' md5($drugie_sql),
  8.     fn() => tep_db_query($drugie_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  9.     null
include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php (line 376)
  1.     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  2. ?>
  3. <!--P_DRUGIE-->
  4. <?php if ($template->show('P_DRUGIE')) {
  5.     include(DIR_WS_MODULES 'drugie.php');
  6. ?>
  7. <!--P_XSELL-->
  8. <?php if ($template->show('P_XSELL')) {
  9.     if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php (line 100)
  1.             <?php echo $breadcrumb->trail(' '); ?>
  2.             <!-- END BREADCRUMBS -->
  3.             <!-- CONTENT -->
  4.             <?php
  5.             if (file_exists(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php')) {
  6.                 require(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php'); // content from current template (if exists)
  7.             } else {
  8.                 require(DIR_WS_CONTENT $content '.tpl.php'); // content from default template
  9.             }
  10.             ?>
  11.             <!-- END CONTENT -->
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php (line 252)
  1.     }
  2. } else {
  3.     http_response_code(404);
  4.     $content CONTENT_ERROR_404;
  5. }
  6. require(DIR_WS_TEMPLATES TEMPLATE_NAME '/' TEMPLATENAME_MAIN_PAGE);
  7. require(DIR_WS_INCLUDES 'application_bottom.php');

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 197 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/includes/functions/general.php:120)
  at tep_get_all_pids()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/functions/general.php:57)
  at tep_get_query_products_info()
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php:20)
  at include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php:376)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php:100)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php:252)                
file_put_contents(): Only -1 of 69 bytes written, possibly out of free disk space (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(), [
  1. $drugie_sql tep_get_query_products_info($listing_sql); // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  2. $drugie FileCacheHelper::remember(
  3.     FileCacheHelper::PRODUCTS_KEY '_' md5($drugie_sql),
  4.     fn() => tep_db_query($drugie_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  5.     null
  6. );
  7. if (!empty($drugie)) {
  8.     $salemakers_array get_salemakers($drugie);
  9.     if (!empty($drugie)) {
include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php (line 376)
  1.     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  2. ?>
  3. <!--P_DRUGIE-->
  4. <?php if ($template->show('P_DRUGIE')) {
  5.     include(DIR_WS_MODULES 'drugie.php');
  6. ?>
  7. <!--P_XSELL-->
  8. <?php if ($template->show('P_XSELL')) {
  9.     if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php (line 100)
  1.             <?php echo $breadcrumb->trail(' '); ?>
  2.             <!-- END BREADCRUMBS -->
  3.             <!-- CONTENT -->
  4.             <?php
  5.             if (file_exists(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php')) {
  6.                 require(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php'); // content from current template (if exists)
  7.             } else {
  8.                 require(DIR_WS_CONTENT $content '.tpl.php'); // content from default template
  9.             }
  10.             ?>
  11.             <!-- END CONTENT -->
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php (line 252)
  1.     }
  2. } else {
  3.     http_response_code(404);
  4.     $content CONTENT_ERROR_404;
  5. }
  6. require(DIR_WS_TEMPLATES TEMPLATE_NAME '/' TEMPLATENAME_MAIN_PAGE);
  7. require(DIR_WS_INCLUDES 'application_bottom.php');

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/includes/modules/drugie.php:25)
  at include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php:376)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php:100)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php:252)                
file_put_contents(): Only -1 of 4847 bytes written, possibly out of free disk space (500 Whoops, looks like something went wrong.)

file_put_contents(): Only -1 of 4847 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. $drugie_sql tep_get_query_products_info($listing_sql); // split query to 2 small queries: 1) find all products ids, 2) get info for each product
  2. $drugie FileCacheHelper::remember(
  3.     FileCacheHelper::PRODUCTS_KEY '_' md5($drugie_sql),
  4.     fn() => tep_db_query($drugie_sql)->fetch_all(MYSQLI_ASSOC) ?: [],
  5.     null
  6. );
  7. if (!empty($drugie)) {
  8.     $salemakers_array get_salemakers($drugie);
  9.     if (!empty($drugie)) {
include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php (line 376)
  1.     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  2. ?>
  3. <!--P_DRUGIE-->
  4. <?php if ($template->show('P_DRUGIE')) {
  5.     include(DIR_WS_MODULES 'drugie.php');
  6. ?>
  7. <!--P_XSELL-->
  8. <?php if ($template->show('P_XSELL')) {
  9.     if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php (line 100)
  1.             <?php echo $breadcrumb->trail(' '); ?>
  2.             <!-- END BREADCRUMBS -->
  3.             <!-- CONTENT -->
  4.             <?php
  5.             if (file_exists(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php')) {
  6.                 require(DIR_WS_TEMPLATES TEMPLATE_NAME '/content/' $content '.tpl.php'); // content from current template (if exists)
  7.             } else {
  8.                 require(DIR_WS_CONTENT $content '.tpl.php'); // content from default template
  9.             }
  10.             ?>
  11.             <!-- END CONTENT -->
require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php') in /home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php (line 252)
  1.     }
  2. } else {
  3.     http_response_code(404);
  4.     $content CONTENT_ERROR_404;
  5. }
  6. require(DIR_WS_TEMPLATES TEMPLATE_NAME '/' TEMPLATENAME_MAIN_PAGE);
  7. require(DIR_WS_INCLUDES 'application_bottom.php');

Stack Trace

ErrorException
ErrorException:
file_put_contents(): Only -1 of 4847 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/includes/modules/drugie.php:25)
  at include('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/includes/modules/drugie.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php:376)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/content/product_info.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php:100)
  at require('/home/dev_ltscreen/web/dev.ltscreen.com/public_html/templates/default/main_page.tpl.php')
     (/home/dev_ltscreen/web/dev.ltscreen.com/public_html/product_info.php:252)                
Матриця Samsung NP-N150-JA05AE для ноутбука
#431321 В наявності

875 грн

Матриця Samsung NP-N150-JA05AE для ноутбука
Матриця HP PRESARIO F555US для ноутбука
#533310 В наявності

550 грн

Матриця HP PRESARIO F555US для ноутбука
Матриця Sony VAIO PCG-7N1M для ноутбука
#435145 В наявності

1375 грн

Матриця Sony VAIO PCG-7N1M для ноутбука
Матриця HP PAVILION DV4253US для ноутбука
#564196 В наявності

1375 грн

Матриця HP PAVILION DV4253US для ноутбука
Матриця LP154WX4(TL)(A4) для ноутбука
#635272 В наявності

1375 грн

Матриця LP154WX4(TL)(A4) для ноутбука
Матриця Lenovo THINKPAD X100e 2876-4ZT для ноутбука
#144583 В наявності

975 грн

Матриця Lenovo THINKPAD X100e 2876-4ZT для ноутбука
Матриця HP MINI 210-1150NR для ноутбука
#560192 В наявності

775 грн

Матриця HP MINI 210-1150NR для ноутбука
Матриця Toshiba PSKF2E-00900KFR для ноутбука
#668903 В наявності

1275 грн

Матриця Toshiba PSKF2E-00900KFR для ноутбука
Матриця HP 4PM48EA для ноутбука
#695112 В наявності

3915 грн

Матриця HP 4PM48EA для ноутбука
Матриця HP 17-BY0164UR для ноутбука
#580477 В наявності

2575 грн

Матриця HP 17-BY0164UR для ноутбука