Пістолет в/т PRO1 Medium M22x1.5Н- б/д з`єднання (Stella, Transformer ,Violetta)

ZP.P4K
В наявності
2.211 грн
Витрати води: 2700 л/хв
Діаметр різьблення: M22x1.5M
Макс. температура: 150 C
Макс. тиск: 220 бар
Стан товару: Новий

Пістолет високого тиску для мийок Stella, Transformer, Violetta.Забезпечує надійний контроль потоку води при інтенсивному очищенні, витримує високий тиск і температуру, підходить для професійного використання.

Основні переваги:

> Робочий тиск до 220 бар — ефективне видалення складних забруднень

> Стійкість до високих температур (до 150°C)

> Пропускна здатність до 2700 л/хв — для інтенсивної роботи

> Міцна та зносостійка конструкція

> Підходить для тривалого та професійного використання

Витрати води
2700 л/хв
Діаметр різьблення
M22x1.5M
Макс. температура
150 C
Макс. тиск
220 бар
Стан товару
Новий
Тип
пістолет
file_put_contents(/mnt/test_sites/sites_new/wellcraft.com.ua/storage/cache/products_options_values/products_options_values$_language(5)): failed to open stream: No such file or directory (500 Whoops, looks like something went wrong.)

file_put_contents(/mnt/test_sites/sites_new/wellcraft.com.ua/storage/cache/products_options_values/products_options_values$_language(5)): failed to open stream: No such file or directory

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.         $this->ensureCacheDirectoryExists($path $this->path($key));
  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.         try {
  2.             if ($isCacheEnabled) {
  3.                 return self::getRepository()
  4.                     ->remember(
  5.                         $key,
  6.                         $ttl,
  7.                         $closure
  8.                     );
  9.             } else {
  10.                 return $closure();
  1.                         $attributesValues[$row['id']] = $row;
  2.                     }
  3.                 }
  4.                 return $attributesValues;
  5.             },
  6.             null
  7.         );
  8.     }
  9.     return $attributesValuesBuffer ?: [];
  10. }
  1.     if (empty($attributesOptionsData)) {
  2.         return [];
  3.     }
  4.     //get attributes values
  5.     $attributesValues getAttributesValues($languagesId$force);
  6.     //get product`s attributes
  7.     if (!$force && !empty($listing_sql)) {
  8.         //get all products ids
  9.         $allListingProductsIds getAttributesAllProducts();
  1.     }
  2.     if ($useCache) {
  3.         $data FileCacheHelper::remember(
  4.             FileCacheHelper::ALL_ATTRIBUTES_KEY "_language({$languagesId})_" $parameter,
  5.             fn() => getPageAttributes($languagesId$force),
  6.             null
  7.         );
  8.     } else {
  9.         $data getPageAttributes($languagesId$force);
  10.     }
  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.         try {
  2.             if ($isCacheEnabled) {
  3.                 return self::getRepository()
  4.                     ->remember(
  5.                         $key,
  6.                         $ttl,
  7.                         $closure
  8.                     );
  9.             } else {
  10.                 return $closure();
  1.     if ($useCache) {
  2.         $data FileCacheHelper::remember(
  3.             FileCacheHelper::ALL_ATTRIBUTES_KEY "_language({$languagesId})_" $parameter,
  4.             fn() => getPageAttributes($languagesId$force),
  5.             null
  6.         );
  7.     } else {
  8.         $data getPageAttributes($languagesId$force);
  9.     }
  1.     if ($drugie->num_rows) {
  2.         $tpl_settings $currenModuleSettings;
  3.         $tpl_settings['request'] = $drugie;
  4.         $tpl_settings['title'] = getConstantValue('PROD_DRUGIE');
  5.         getArrayWithAllAttributes();
  6.         include(DIR_WS_MODULES FILENAME_PRODUCT_LISTING_COL);
  7.     }
  8. }
include('/home/solomono/web/solomono.net/sites/demo/includes/modules/drugie.php') in /mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php (line 412)
  1.                     }
  2.                     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  3.                 }
  4.                 break;
  5.             case 'P_DRUGIE':
  6.                 include(DIR_WS_MODULES 'drugie.php');
  7.                 break;
  8.             case 'P_XSELL':
  9.                 if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
  10.                     require_once DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS;
  11.                 }
require('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php') in /mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php (line 121)
  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('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php') in /mnt/test_sites/sites_new/wellcraft.com.ua/product_info.php (line 338)
  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(/mnt/test_sites/sites_new/wellcraft.com.ua/storage/cache/products_options_values/products_options_values$_language(5)): failed to open stream: No such file or directory

  at /home/solomono/web/solomono.net/sites/demo/app/Classes/Filesystem/Filesystem.php:140
  at Bootstrap\HandleExceptions->handleError()
     (/home/solomono/web/solomono.net/sites/demo/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at file_put_contents()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Filesystem/Filesystem.php:140)
  at App\Classes\Filesystem\Filesystem->put()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Store/FileStore.php:64)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Store/FileStore.php:131)
  at App\Classes\Cache\Store\FileStore->forever()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:301)
  at App\Classes\Cache\Repository->forever()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:160)
  at App\Classes\Cache\Repository->put()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:328)
  at App\Classes\Cache\Repository->remember()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Helpers/FileCacheHelper.php:186)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/solomono/web/solomono.net/sites/demo/includes/functions/attributes.php:318)
  at getAttributesValues()
     (/home/solomono/web/solomono.net/sites/demo/includes/functions/attributes.php:522)
  at getPageAttributes()
     (/home/solomono/web/solomono.net/sites/demo/includes/functions/attributes.php:467)
  at {closure}()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:328)
  at App\Classes\Cache\Repository->remember()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Helpers/FileCacheHelper.php:186)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/solomono/web/solomono.net/sites/demo/includes/functions/attributes.php:468)
  at getArrayWithAllAttributes()
     (/home/solomono/web/solomono.net/sites/demo/includes/modules/drugie.php:42)
  at include('/home/solomono/web/solomono.net/sites/demo/includes/modules/drugie.php')
     (/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php:412)
  at require('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php')
     (/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php:121)
  at require('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php')
     (/mnt/test_sites/sites_new/wellcraft.com.ua/product_info.php:338)                
file_put_contents(/mnt/test_sites/sites_new/wellcraft.com.ua/storage/cache/all_attributes/all_attributes$_language(5)_64a3d10eb9225c7fc91e78b784f5c4a0): failed to open stream: No such file or directory (500 Whoops, looks like something went wrong.)

file_put_contents(/mnt/test_sites/sites_new/wellcraft.com.ua/storage/cache/all_attributes/all_attributes$_language(5)_64a3d10eb9225c7fc91e78b784f5c4a0): failed to open stream: No such file or directory

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.         $this->ensureCacheDirectoryExists($path $this->path($key));
  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.         try {
  2.             if ($isCacheEnabled) {
  3.                 return self::getRepository()
  4.                     ->remember(
  5.                         $key,
  6.                         $ttl,
  7.                         $closure
  8.                     );
  9.             } else {
  10.                 return $closure();
  1.     if ($useCache) {
  2.         $data FileCacheHelper::remember(
  3.             FileCacheHelper::ALL_ATTRIBUTES_KEY "_language({$languagesId})_" $parameter,
  4.             fn() => getPageAttributes($languagesId$force),
  5.             null
  6.         );
  7.     } else {
  8.         $data getPageAttributes($languagesId$force);
  9.     }
  1.     if ($drugie->num_rows) {
  2.         $tpl_settings $currenModuleSettings;
  3.         $tpl_settings['request'] = $drugie;
  4.         $tpl_settings['title'] = getConstantValue('PROD_DRUGIE');
  5.         getArrayWithAllAttributes();
  6.         include(DIR_WS_MODULES FILENAME_PRODUCT_LISTING_COL);
  7.     }
  8. }
include('/home/solomono/web/solomono.net/sites/demo/includes/modules/drugie.php') in /mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php (line 412)
  1.                     }
  2.                     require_once DIR_WS_EXT "last_viewed_products/last_viewed_products.php";
  3.                 }
  4.                 break;
  5.             case 'P_DRUGIE':
  6.                 include(DIR_WS_MODULES 'drugie.php');
  7.                 break;
  8.             case 'P_XSELL':
  9.                 if (is_file(DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS)) {
  10.                     require_once DIR_WS_EXT 'xsell_products_buynow/' FILENAME_XSELL_PRODUCTS;
  11.                 }
require('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php') in /mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php (line 121)
  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('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php') in /mnt/test_sites/sites_new/wellcraft.com.ua/product_info.php (line 338)
  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(/mnt/test_sites/sites_new/wellcraft.com.ua/storage/cache/all_attributes/all_attributes$_language(5)_64a3d10eb9225c7fc91e78b784f5c4a0): failed to open stream: No such file or directory

  at /home/solomono/web/solomono.net/sites/demo/app/Classes/Filesystem/Filesystem.php:140
  at Bootstrap\HandleExceptions->handleError()
     (/home/solomono/web/solomono.net/sites/demo/bootstrap/HandleExceptions.php:32)
  at Bootstrap\HandleExceptions->Bootstrap\{closure}()
  at file_put_contents()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Filesystem/Filesystem.php:140)
  at App\Classes\Filesystem\Filesystem->put()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Store/FileStore.php:64)
  at App\Classes\Cache\Store\FileStore->put()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Store/FileStore.php:131)
  at App\Classes\Cache\Store\FileStore->forever()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:301)
  at App\Classes\Cache\Repository->forever()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:160)
  at App\Classes\Cache\Repository->put()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Repository.php:328)
  at App\Classes\Cache\Repository->remember()
     (/home/solomono/web/solomono.net/sites/demo/app/Classes/Cache/Helpers/FileCacheHelper.php:186)
  at App\Classes\Cache\Helpers\FileCacheHelper::remember()
     (/home/solomono/web/solomono.net/sites/demo/includes/functions/attributes.php:468)
  at getArrayWithAllAttributes()
     (/home/solomono/web/solomono.net/sites/demo/includes/modules/drugie.php:42)
  at include('/home/solomono/web/solomono.net/sites/demo/includes/modules/drugie.php')
     (/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php:412)
  at require('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/content/product_info.tpl.php')
     (/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php:121)
  at require('/mnt/test_sites/sites_new/wellcraft.com.ua/templates/default/main_page.tpl.php')
     (/mnt/test_sites/sites_new/wellcraft.com.ua/product_info.php:338)                
Підставка нерж. та каністра 5л. для миючих засобів(Stella)
Підставка нерж. та каністра 5л. для миючих засобів(Stella)
В наявності

1.481 грн

Об'єм каністри:
5 л
Б/д з`єднання 3/8&quot; 14,8мм нерж. (папа)
Б/д з`єднання 3/8" 14,8мм нерж. (папа)
В наявності

234 грн

Матеріал:
нержавіюча сталь
Підключення:
G3/8" F
Робочий тиск:
220 бар
Фреза роторна (сопло) 040 різьба Н1/4&quot; для Transformer/Violetta
Фреза роторна (сопло) 040 різьба Н1/4" для Transformer/Violetta
В наявності

2.709 грн

Діаметр різьблення:
1/4 дюйм
Маркування:
40
Стан товару:
Новий
Тип різьби:
зовнішня
Пінна насадка 1л б/д з`єднання, комбінована з пікою  (Violetta/Transformer/Stella)
Пінна насадка 1л б/д з`єднання, комбінована з пікою (Violetta/Transformer/Stella)
В наявності

2.953 грн

Об'єм резервуару:
1 л
Рекомендований робочий тиск:
200 бар / 15л.хв
Пінна насадка 1л б/д з`єднання, комбінована з пікою  (Karcher)
Пінна насадка 1л б/д з`єднання, комбінована з пікою (Karcher)
В наявності

3.290 грн

Об'єм резервуару:
1 л
Рекомендований робочий тиск:
160 бар / 20л.хв
Підставка нерж. та каністра 5л. для миючих засобів(Transformer/Traktor)
Підставка нерж. та каністра 5л. для миючих засобів(Transformer/Traktor)
В наявності

1.941 грн

Об'єм каністри:
5 л
Пінна насадка 1л б/д з`єднання (Violetta/Transformer/Stella/Stella M)
Пінна насадка 1л б/д з`єднання (Violetta/Transformer/Stella/Stella M)
В наявності

1.688 грн

Об`єм резервуару:
1.0 л
Стан товару:
Новий
Сопло 035 200bar кут розпилення 25°, з б/д з`єднанням (під адаптер)
Сопло 035 200bar кут розпилення 25°, з б/д з`єднанням (під адаптер)
В наявності

319 грн

Кут поливу:
25
Маркування:
035
Стан товару:
Новий
Пістолет в/т ECO1 М22*1,5 - В1/4
Пістолет в/т ECO1 М22*1,5 - В1/4
В наявності

857 грн

Витрата води:
15-25 л/хв
Максимальна температура:
120 С
Максимальний тиск:
220 бар
Матеріал:
Пластик, метал
Сопло і трубка для піскоструя карбід-бор, сопло 045
Сопло і трубка для піскоструя карбід-бор, сопло 045
В наявності

2.761 грн

Вхід:
G1/4" M
Продуктивність:
40 л/хв
Робочий тиск:
до 250 бар