Undefined array key "file" (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php) (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php) (500 Internal Server Error)

Symfony Exception

Undefined array key "file" (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php) (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php)

Exceptions 3

Illuminate\View\ ViewException

Show exception properties
Illuminate\View\ViewException {#2466
  #severity: E_ERROR
}
  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php') in /srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php') in /srv/www/flowprocess.com/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/srv/www/flowprocess.com/web/wp/wp-blog-header.php') in /srv/www/flowprocess.com/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Illuminate\View\ ViewException

Undefined array key "file" (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php)

  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
  1.         // flush out any stray output that might get out before an error occurs or
  2.         // an exception is thrown. This prevents any partial views from leaking.
  3.         try {
  4.             $this->files->getRequire($path$data);
  5.         } catch (Throwable $e) {
  6.             $this->handleViewException($e$obLevel);
  7.         }
  8.         return ltrim(ob_get_clean());
  9.     }
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.     <?php echo $__env->first(['partials.content-single-' get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  4.   <?php endwhile; ?>
  5. <?php $__env->stopSection(); ?>
  6. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/single.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 124)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php') in /srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php') in /srv/www/flowprocess.com/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/srv/www/flowprocess.com/web/wp/wp-blog-header.php') in /srv/www/flowprocess.com/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

ErrorException

Undefined array key "file"

  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
  1.      * @throws \ErrorException
  2.      */
  3.     public function handleError($level$message$file ''$line 0$context = [])
  4.     {
  5.         try {
  6.             parent::handleError($level$message$file$line$context);
  7.         } catch (Throwable $e) {
  8.             if (! apply_filters('acorn/throw_error_exception'true$e)) {
  9.                 return false;
  10.             }
HandleExceptions->handleError(2, 'Undefined array key "file"', '/srv/www/flowprocess.com/web/wp/wp-includes/media.php', 1734) in /srv/www/flowprocess.com/web/wp/wp-includes/media.php (line 1734)
  1.     if ( ! $image_src ) {
  2.         return $image;
  3.     }
  4.     // Bail early if an image has been inserted and later edited.
  5.     if ( preg_match'/-e[0-9]{13}/'$image_meta['file'], $img_edit_hash )
  6.         && ! str_containswp_basename$image_src ), $img_edit_hash[0] )
  7.     ) {
  8.         return $image;
  9.     }
wp_image_add_srcset_and_sizes('<img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" />', array('sizes' => array('full' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf.jpg', 'width' => 1058, 'height' => 1497, 'mime-type' => 'image/jpeg', 'filesize' => 161105), 'medium' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf-212x300.jpg', 'width' => 212, 'height' => 300, 'mime-type' => 'image/jpeg', 'filesize' => 58120), 'large' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf-724x1024.jpg', 'width' => 724, 'height' => 1024, 'mime-type' => 'image/jpeg', 'filesize' => 106337), 'thumbnail' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf-106x150.jpg', 'width' => 106, 'height' => 150, 'mime-type' => 'image/jpeg', 'filesize' => 52200)), 'filesize' => 2282637), 5535) in /srv/www/flowprocess.com/web/wp/wp-includes/media.php (line 2173)
  1.      */
  2.     $add apply_filters'wp_img_tag_add_srcset_and_sizes_attr'true$image$context$attachment_id );
  3.     if ( true === $add ) {
  4.         $image_meta wp_get_attachment_metadata$attachment_id );
  5.         return wp_image_add_srcset_and_sizes$image$image_meta$attachment_id );
  6.     }
  7.     return $image;
  8. }
wp_img_tag_add_srcset_and_sizes_attr('<img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" />', 'the_content', 5535) in /srv/www/flowprocess.com/web/wp/wp-includes/media.php (line 1899)
  1.                 $filtered_image wp_img_tag_add_width_and_height_attr$filtered_image$context$attachment_id );
  2.             }
  3.             // Add 'srcset' and 'sizes' attributes if applicable.
  4.             if ( $attachment_id && ! str_contains$filtered_image' srcset=' ) ) {
  5.                 $filtered_image wp_img_tag_add_srcset_and_sizes_attr$filtered_image$context$attachment_id );
  6.             }
  7.             // Add loading optimization attributes if applicable.
  8.             $filtered_image wp_img_tag_add_loading_optimization_attrs$filtered_image$context );
wp_filter_content_tags('<h3>Automotive Linea AdBlue &#8211; DEF 4  &#8211; Unità di travaso con pistola erogatrice ad arresto automatico</h3><p>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.<br />Ideale per il travaso da barili fusti e cisterne IBC.</p><h3>Linea AdBlue &#8211; DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><p><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<br /><strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<br /><strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<br /><strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<br /><strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<br /><strong>Portata massima</strong>: 30 l/min<br /><strong>Pressione massima</strong>: 1,1 bar<br /><strong>Temperatura massima</strong>: 55 °C</p></div><h4>Codici Unità</h4><p><strong>9150</strong>: Lunghezza stelo 1000 mm<br /><strong>9152</strong>: Lunghezza stelo 1270 mm</p><div class="team-about"><p>&nbsp;</p></div><p>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a></p><p>&nbsp;</p><div class="team-about"><h3>Download Cataloghi</h3><p><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a></p><p>&nbsp;</p></div>') in /srv/www/flowprocess.com/web/wp/wp-includes/class-wp-hook.php (line 324)
  1.                 // Avoid the array_slice() if possible.
  2.                 if ( === $the_['accepted_args'] ) {
  3.                     $value call_user_func$the_['function'] );
  4.                 } elseif ( $the_['accepted_args'] >= $num_args ) {
  5.                     $value call_user_func_array$the_['function'], $args );
  6.                 } else {
  7.                     $value call_user_func_array$the_['function'], array_slice$args0$the_['accepted_args'] ) );
  8.                 }
  9.             }
  10.         } while ( false !== next$this->iterations$nesting_level ] ) );
WP_Hook->apply_filters('<h3>Automotive Linea AdBlue &#8211; DEF 4  &#8211; Unità di travaso con pistola erogatrice ad arresto automatico</h3><p>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.<br />Ideale per il travaso da barili fusti e cisterne IBC.</p><h3>Linea AdBlue &#8211; DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><p><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<br /><strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<br /><strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<br /><strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<br /><strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<br /><strong>Portata massima</strong>: 30 l/min<br /><strong>Pressione massima</strong>: 1,1 bar<br /><strong>Temperatura massima</strong>: 55 °C</p></div><h4>Codici Unità</h4><p><strong>9150</strong>: Lunghezza stelo 1000 mm<br /><strong>9152</strong>: Lunghezza stelo 1270 mm</p><div class="team-about"><p>&nbsp;</p></div><p>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a></p><p>&nbsp;</p><div class="team-about"><h3>Download Cataloghi</h3><p><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a></p><p>&nbsp;</p></div>', array('<h3>Automotive Linea AdBlue &#8211; DEF 4  &#8211; Unità di travaso con pistola erogatrice ad arresto automatico</h3><p>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.<br />Ideale per il travaso da barili fusti e cisterne IBC.</p><h3>Linea AdBlue &#8211; DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><p><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<br /><strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<br /><strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<br /><strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<br /><strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<br /><strong>Portata massima</strong>: 30 l/min<br /><strong>Pressione massima</strong>: 1,1 bar<br /><strong>Temperatura massima</strong>: 55 °C</p></div><h4>Codici Unità</h4><p><strong>9150</strong>: Lunghezza stelo 1000 mm<br /><strong>9152</strong>: Lunghezza stelo 1270 mm</p><div class="team-about"><p>&nbsp;</p></div><p>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a></p><p>&nbsp;</p><div class="team-about"><h3>Download Cataloghi</h3><p><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a></p><p>&nbsp;</p></div>')) in /srv/www/flowprocess.com/web/wp/wp-includes/plugin.php (line 205)
  1.     }
  2.     // Pass the value to WP_Hook.
  3.     array_unshift$args$value );
  4.     $filtered $wp_filter$hook_name ]->apply_filters$value$args );
  5.     array_pop$wp_current_filter );
  6.     return $filtered;
  7. }
apply_filters('the_content', '<h3>Automotive Linea AdBlue - DEF 4  - Unità di travaso con pistola erogatrice ad arresto automatico</h3>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.Ideale per il travaso da barili fusti e cisterne IBC.<h3>Linea AdBlue - DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<strong>Portata massima</strong>: 30 l/min<strong>Pressione massima</strong>: 1,1 bar<strong>Temperatura massima</strong>: 55 °C</div><h4>Codici Unità</h4><strong>9150</strong>: Lunghezza stelo 1000 mm<strong>9152</strong>: Lunghezza stelo 1270 mm<div class="team-about">&nbsp;</div>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a>&nbsp;<div class="team-about"><h3>Download Cataloghi</h3><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a>&nbsp;</div>') in /srv/www/flowprocess.com/web/wp/wp-includes/post-template.php (line 256)
  1.      *
  2.      * @since 0.71
  3.      *
  4.      * @param string $content Content of the current post.
  5.      */
  6.     $content apply_filters'the_content'$content );
  7.     $content str_replace']]>'']]&gt;'$content );
  8.     echo $content;
  9. }
  10. /**
  1.   <div class="product-content grid grid-cols-1 lg:grid-cols-3 container items-baseline">
  2.     <div class="page-chapters col-span-2">
  3.       <div class="chapter product-description">
  4.         <h2 class="chapter-title" id="descrizione-prodotto">Descrizione prodotto</h2>
  5.         <?php (the_content()); ?>
  6.       </div>
  7.       <?php if($technical_details get_field('technical_details')): ?>
  8.         <div class="chapter product-technical-info">
  9.           <h2 class="chapter-title" id="caratteristiche-tecniche">Caratteristiche tecniche</h2>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 124)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1. <?php $__env->startSection('content'); ?>
  2.   <?php while(have_posts()): ?> <?php (the_post()); ?>
  3.     <?php echo $__env->first(['partials.content-single-' get_post_type(), 'partials.content-single'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
  4.   <?php endwhile; ?>
  5. <?php $__env->stopSection(); ?>
  6. <?php echo $__env->make('layouts.app'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/single.blade.php ENDPATH**/ ?>
  1.             $__data $data;
  2.             return (static function () use ($__path$__data) {
  3.                 extract($__dataEXTR_SKIP);
  4.                 return require $__path;
  5.             })();
  6.         }
  7.         throw new FileNotFoundException("File does not exist at path {$path}.");
  8.     }
in /srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php :: Illuminate\Filesystem\{closure} (line 124)
  1.             return (static function () use ($__path$__data) {
  2.                 extract($__dataEXTR_SKIP);
  3.                 return require $__path;
  4.             })();
  5.         }
  6.         throw new FileNotFoundException("File does not exist at path {$path}.");
  7.     }
  1.         // We'll evaluate the contents of the view inside a try/catch block so we can
  2.         // flush out any stray output that might get out before an error occurs or
  3.         // an exception is thrown. This prevents any partial views from leaking.
  4.         try {
  5.             $this->files->getRequire($path$data);
  6.         } catch (Throwable $e) {
  7.             $this->handleViewException($e$obLevel);
  8.         }
  9.         return ltrim(ob_get_clean());
  1.         // Once we have the path to the compiled file, we will evaluate the paths with
  2.         // typical PHP just like any other templates. We also keep a stack of views
  3.         // which have been rendered for right exception messages to be generated.
  4.         try {
  5.             $results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);
  6.         } catch (ViewException $e) {
  7.             if (! str($e->getMessage())->contains(['No such file or directory''File does not exist at path'])) {
  8.                 throw $e;
  9.             }
  1.      *
  2.      * @return string
  3.      */
  4.     protected function getContents()
  5.     {
  6.         return $this->engine->get($this->path$this->gatherData());
  7.     }
  8.     /**
  9.      * Get the data bound to the view instance.
  10.      *
  1.         // clear out the sections for any separate views that may be rendered.
  2.         $this->factory->incrementRender();
  3.         $this->factory->callComposer($this);
  4.         $contents $this->getContents();
  5.         // Once we've finished rendering the view, we'll decrement the render count
  6.         // so that each section gets flushed out next time a view is created and
  7.         // no old sections are staying around in the memory of an environment.
  8.         $this->factory->decrementRender();
  1.      * @throws \Throwable
  2.      */
  3.     public function render(callable $callback null)
  4.     {
  5.         try {
  6.             $contents $this->renderContents();
  7.             $response = isset($callback) ? $callback($this$contents) : null;
  8.             // Once we have the contents of the view, we will flush the sections if we are
  9.             // done rendering all views so that there is nothing left hanging over when
  1.   <body <?php body_class(); ?>>
  2.     <?php wp_body_open(); ?>
  3.     <?php do_action('get_header'); ?>
  4.     <div id="app">
  5.       <?php echo view(app('sage.view'), app('sage.data'))->render(); ?>
  6.     </div>
  7.     <?php do_action('get_footer'); ?>
  8.     <?php wp_footer(); ?>
  9.   </body>
include('/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php') in /srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php (line 106)
  1.      *
  2.      * @param string $template The path of the template to include.
  3.      */
  4.     $template apply_filters'template_include'$template );
  5.     if ( $template ) {
  6.         include $template;
  7.     } elseif ( current_user_can'switch_themes' ) ) {
  8.         $theme wp_get_theme();
  9.         if ( $theme->errors() ) {
  10.             wp_die$theme->errors() );
  11.         }
require_once('/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php') in /srv/www/flowprocess.com/web/wp/wp-blog-header.php (line 19)
  1.     // Set up the WordPress query.
  2.     wp();
  3.     // Load the theme template.
  4.     require_once ABSPATH WPINC '/template-loader.php';
  5. }
require('/srv/www/flowprocess.com/web/wp/wp-blog-header.php') in /srv/www/flowprocess.com/web/index.php (line 6)
  1. <?php
  2. /**
  3.  * WordPress View Bootstrapper
  4.  */
  5. define('WP_USE_THEMES'true);
  6. require __DIR__ '/wp/wp-blog-header.php';

Stack Traces 3

[3/3] ViewException
Illuminate\View\ViewException:
Undefined array key "file" (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php) (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php)

  at /srv/www/flowprocess.com/web/wp/wp-includes/media.php:1734
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ViewException), 0)
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get('/srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/single.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php:23)
  at include('/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php')
     (/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php:106)
  at require_once('/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php')
     (/srv/www/flowprocess.com/web/wp/wp-blog-header.php:19)
  at require('/srv/www/flowprocess.com/web/wp/wp-blog-header.php')
     (/srv/www/flowprocess.com/web/index.php:6)                
[2/3] ViewException
Illuminate\View\ViewException:
Undefined array key "file" (View: /srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php)

  at /srv/www/flowprocess.com/web/wp/wp-includes/media.php:1734
  at Illuminate\View\Engines\CompilerEngine->handleViewException(object(ErrorException), 2)
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/PhpEngine.php:60)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/ecf8e98de2e6e1f7b2636085319ba67d.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it', 'categories_tree' => array(2599, 1036, 1552), 'downloads' => object(WP_Query), 'video' => object(WP_Query), 'other_products' => object(WP_Query), 'related_products' => false, 'brand_related_products' => false, 'title' => 'Automotive Linea AdBlue &#8211; DEF 4', 'latest_posts' => object(WP_Query)))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get('/srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it', 'categories_tree' => array(2599, 1036, 1552), 'downloads' => object(WP_Query), 'video' => object(WP_Query), 'other_products' => object(WP_Query), 'related_products' => false, 'brand_related_products' => false, 'title' => 'Automotive Linea AdBlue &#8211; DEF 4', 'latest_posts' => object(WP_Query)))
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php:3)
  at require('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php')
     (/srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get('/srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/single.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php:23)
  at include('/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php')
     (/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php:106)
  at require_once('/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php')
     (/srv/www/flowprocess.com/web/wp/wp-blog-header.php:19)
  at require('/srv/www/flowprocess.com/web/wp/wp-blog-header.php')
     (/srv/www/flowprocess.com/web/index.php:6)                
[1/3] ErrorException
ErrorException:
Undefined array key "file"

  at /srv/www/flowprocess.com/web/wp/wp-includes/media.php:1734
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Undefined array key "file"', '/srv/www/flowprocess.com/web/wp/wp-includes/media.php', 1734, array())
     (/srv/www/flowprocess.com/vendor/roots/acorn/src/Roots/Acorn/Bootstrap/HandleExceptions.php:49)
  at Roots\Acorn\Bootstrap\HandleExceptions->handleError(2, 'Undefined array key "file"', '/srv/www/flowprocess.com/web/wp/wp-includes/media.php', 1734)
     (/srv/www/flowprocess.com/web/wp/wp-includes/media.php:1734)
  at wp_image_add_srcset_and_sizes('<img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" />', array('sizes' => array('full' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf.jpg', 'width' => 1058, 'height' => 1497, 'mime-type' => 'image/jpeg', 'filesize' => 161105), 'medium' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf-212x300.jpg', 'width' => 212, 'height' => 300, 'mime-type' => 'image/jpeg', 'filesize' => 58120), 'large' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf-724x1024.jpg', 'width' => 724, 'height' => 1024, 'mime-type' => 'image/jpeg', 'filesize' => 106337), 'thumbnail' => array('file' => 'GRACO_Pumping-Solutions_Brochure-pdf-106x150.jpg', 'width' => 106, 'height' => 150, 'mime-type' => 'image/jpeg', 'filesize' => 52200)), 'filesize' => 2282637), 5535)
     (/srv/www/flowprocess.com/web/wp/wp-includes/media.php:2173)
  at wp_img_tag_add_srcset_and_sizes_attr('<img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" />', 'the_content', 5535)
     (/srv/www/flowprocess.com/web/wp/wp-includes/media.php:1899)
  at wp_filter_content_tags('<h3>Automotive Linea AdBlue &#8211; DEF 4  &#8211; Unità di travaso con pistola erogatrice ad arresto automatico</h3><p>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.<br />Ideale per il travaso da barili fusti e cisterne IBC.</p><h3>Linea AdBlue &#8211; DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><p><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<br /><strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<br /><strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<br /><strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<br /><strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<br /><strong>Portata massima</strong>: 30 l/min<br /><strong>Pressione massima</strong>: 1,1 bar<br /><strong>Temperatura massima</strong>: 55 °C</p></div><h4>Codici Unità</h4><p><strong>9150</strong>: Lunghezza stelo 1000 mm<br /><strong>9152</strong>: Lunghezza stelo 1270 mm</p><div class="team-about"><p>&nbsp;</p></div><p>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a></p><p>&nbsp;</p><div class="team-about"><h3>Download Cataloghi</h3><p><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a></p><p>&nbsp;</p></div>')
     (/srv/www/flowprocess.com/web/wp/wp-includes/class-wp-hook.php:324)
  at WP_Hook->apply_filters('<h3>Automotive Linea AdBlue &#8211; DEF 4  &#8211; Unità di travaso con pistola erogatrice ad arresto automatico</h3><p>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.<br />Ideale per il travaso da barili fusti e cisterne IBC.</p><h3>Linea AdBlue &#8211; DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><p><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<br /><strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<br /><strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<br /><strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<br /><strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<br /><strong>Portata massima</strong>: 30 l/min<br /><strong>Pressione massima</strong>: 1,1 bar<br /><strong>Temperatura massima</strong>: 55 °C</p></div><h4>Codici Unità</h4><p><strong>9150</strong>: Lunghezza stelo 1000 mm<br /><strong>9152</strong>: Lunghezza stelo 1270 mm</p><div class="team-about"><p>&nbsp;</p></div><p>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a></p><p>&nbsp;</p><div class="team-about"><h3>Download Cataloghi</h3><p><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a></p><p>&nbsp;</p></div>', array('<h3>Automotive Linea AdBlue &#8211; DEF 4  &#8211; Unità di travaso con pistola erogatrice ad arresto automatico</h3><p>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.<br />Ideale per il travaso da barili fusti e cisterne IBC.</p><h3>Linea AdBlue &#8211; DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><p><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<br /><strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<br /><strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<br /><strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<br /><strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<br /><strong>Portata massima</strong>: 30 l/min<br /><strong>Pressione massima</strong>: 1,1 bar<br /><strong>Temperatura massima</strong>: 55 °C</p></div><h4>Codici Unità</h4><p><strong>9150</strong>: Lunghezza stelo 1000 mm<br /><strong>9152</strong>: Lunghezza stelo 1270 mm</p><div class="team-about"><p>&nbsp;</p></div><p>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a></p><p>&nbsp;</p><div class="team-about"><h3>Download Cataloghi</h3><p><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a></p><p>&nbsp;</p></div>'))
     (/srv/www/flowprocess.com/web/wp/wp-includes/plugin.php:205)
  at apply_filters('the_content', '<h3>Automotive Linea AdBlue - DEF 4  - Unità di travaso con pistola erogatrice ad arresto automatico</h3>Unità pompa di travaso con motore pneumatico, completa di accessori, sistema di erogazione con pistola e con sistema di arresto automatico dell’erogazione del fluido.Ideale per il travaso da barili fusti e cisterne IBC.<h3>Linea AdBlue - DEF 4</h3><h4>Specifiche tecniche</h4><div class="team-about"><strong><a href="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4.jpg"><img class="size-medium wp-image-5535 alignleft" src="https://flowprocess.it/wp-content/uploads/2019/09/Linea_AdBlue_DEF_4-300x300.jpg" alt="" width="300" height="300" /></a>Pompa</strong>: in Polipropilene con albero in SS-316 guarnizioni in PTFE<strong>Lunghezze stelo </strong>: 1000 mm o 1270 mm<strong>Motore pneumatico</strong>: Modello SP-A1 – ½” HP (370 Watt)<strong>Tubazione</strong>: Modello CarboBlue ¾” (D.I. 19 mm) Lunghezza 2,4 m<strong>Pistola erogatrice</strong>: in acciaio inox 316 con arresto automatico dell’erogazione<strong>Portata massima</strong>: 30 l/min<strong>Pressione massima</strong>: 1,1 bar<strong>Temperatura massima</strong>: 55 °C</div><h4>Codici Unità</h4><strong>9150</strong>: Lunghezza stelo 1000 mm<strong>9152</strong>: Lunghezza stelo 1270 mm<div class="team-about">&nbsp;</div>Per altre informazioni chiedere a: <a href="mailto:tecnico@flowprocess.it">tecnico@flowprocess.it</a>&nbsp;<div class="team-about"><h3>Download Cataloghi</h3><a href="https://flowprocess.it/wp-content/uploads/2019/09/AUTOMOTIVE-DRUM-PUMP.pdf" target="_blank" rel="noopener noreferrer">Catalogo pompe Automotive</a>&nbsp;</div>')
     (/srv/www/flowprocess.com/web/wp/wp-includes/post-template.php:256)
  at the_content()
     (/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/ecf8e98de2e6e1f7b2636085319ba67d.php:111)
  at require('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/ecf8e98de2e6e1f7b2636085319ba67d.php')
     (/srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/ecf8e98de2e6e1f7b2636085319ba67d.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it', 'categories_tree' => array(2599, 1036, 1552), 'downloads' => object(WP_Query), 'video' => object(WP_Query), 'other_products' => object(WP_Query), 'related_products' => false, 'brand_related_products' => false, 'title' => 'Automotive Linea AdBlue &#8211; DEF 4', 'latest_posts' => object(WP_Query)))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/ecf8e98de2e6e1f7b2636085319ba67d.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it', 'categories_tree' => array(2599, 1036, 1552), 'downloads' => object(WP_Query), 'video' => object(WP_Query), 'other_products' => object(WP_Query), 'related_products' => false, 'brand_related_products' => false, 'title' => 'Automotive Linea AdBlue &#8211; DEF 4', 'latest_posts' => object(WP_Query)))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get('/srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/partials/content-single-fp_product.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it', 'categories_tree' => array(2599, 1036, 1552), 'downloads' => object(WP_Query), 'video' => object(WP_Query), 'other_products' => object(WP_Query), 'related_products' => false, 'brand_related_products' => false, 'title' => 'Automotive Linea AdBlue &#8211; DEF 4', 'latest_posts' => object(WP_Query)))
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php:3)
  at require('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php')
     (/srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php:123)
  at Illuminate\Filesystem\Filesystem::Illuminate\Filesystem\{closure}()
     (/srv/www/flowprocess.com/vendor/illuminate/filesystem/Filesystem.php:124)
  at Illuminate\Filesystem\Filesystem->getRequire('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/PhpEngine.php:58)
  at Illuminate\View\Engines\PhpEngine->evaluatePath('/srv/www/flowprocess.com/web/app/cache/acorn/framework/views/da755af05e1699cee1fd35508cba3663.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/Engines/CompilerEngine.php:72)
  at Illuminate\View\Engines\CompilerEngine->get('/srv/www/flowprocess.com/web/app/themes/flowprocess/resources/views/single.blade.php', array('__env' => object(Factory), 'app' => object(Application), 'post' => object(WP_Post), 'siteName' => 'Flowprocess.it'))
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:207)
  at Illuminate\View\View->getContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:190)
  at Illuminate\View\View->renderContents()
     (/srv/www/flowprocess.com/vendor/illuminate/view/View.php:159)
  at Illuminate\View\View->render()
     (/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php:23)
  at include('/srv/www/flowprocess.com/web/app/themes/flowprocess/index.php')
     (/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php:106)
  at require_once('/srv/www/flowprocess.com/web/wp/wp-includes/template-loader.php')
     (/srv/www/flowprocess.com/web/wp/wp-blog-header.php:19)
  at require('/srv/www/flowprocess.com/web/wp/wp-blog-header.php')
     (/srv/www/flowprocess.com/web/index.php:6)