Symfony Exception

RuntimeException

HTTP 500 Internal Server Error

The exit status code '1' says something went wrong:
stderr: "Loading pages (1/6)
[> ] 0%
[======> ] 10%
QSslSocket: cannot resolve SSLv3_client_method
QSslSocket: cannot resolve SSLv3_server_method
[============> ] 20%
[===================> ] 32%
[=====================> ] 35%
[=========================> ] 42%
[==========================> ] 44%
QFont::setPixelSize: Pixel size <= 0 (0)
[============================> ] 48%
[================================================> ] 81%
[===================================================> ] 85%
[====================================================> ] 88%
[=====================================================> ] 89%
[======================================================> ] 90%
[============================================================] 100%
Counting pages (2/6)
[============================================================] Object 1 of 1
Resolving links (4/6)
[============================================================] Object 1 of 1
Loading headers and footers (5/6)
Printing pages (6/6)
[> ] Preparing
[==============================> ] Page 1 of 2
[============================================================] Page 2 of 2
Done
Exit with code 1 due to network error: ContentNotFoundError
"
stdout: ""
command: wkhtmltopdf --lowquality --dpi '150' --margin-bottom '7.5mm' --margin-left '5mm' --margin-right '5mm' --margin-top '7.5mm' --orientation 'portrait' --page-size 'A4' --javascript-delay '5000' --print-media-type --user-style-sheet '/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css' --zoom '1' --viewport-size '1920x1080' '/tmp/knp_snappy66054e7c41e0f9.28563196.html' '/tmp/knp_snappy66054e7c41e643.55543455.pdf'.

Exception

RuntimeException

  1.      * @throws \RuntimeException if the output file generation failed
  2.      */
  3.     protected function checkProcessStatus($status$stdout$stderr$command)
  4.     {
  5.         if (!== $status and '' !== $stderr) {
  6.             throw new \RuntimeException(sprintf(
  7.                 'The exit status code \'%s\' says something went wrong:' "\n"
  8.                 'stderr: "%s"' "\n"
  9.                 'stdout: "%s"' "\n"
  10.                 'command: %s.',
  11.                 $status$stderr$stdout$command
AbstractGenerator->checkProcessStatus(1, '', 'Loading pages (1/6)[> ] 0% [======> ] 10% QSslSocket: cannot resolve SSLv3_client_methodQSslSocket: cannot resolve SSLv3_server_method[============> ] 20% [===================> ] 32% [=====================> ] 35% [=========================> ] 42% [==========================> ] 44% QFont::setPixelSize: Pixel size <= 0 (0)[============================> ] 48% [================================================> ] 81% [===================================================> ] 85% [====================================================> ] 88% [=====================================================> ] 89% [======================================================> ] 90% [============================================================] 100% Counting pages (2/6) [============================================================] Object 1 of 1 Resolving links (4/6) [============================================================] Object 1 of 1 Loading headers and footers (5/6) Printing pages (6/6)[> ] Preparing [==============================> ] Page 1 of 2 [============================================================] Page 2 of 2 Done Exit with code 1 due to network error: ContentNotFoundError', 'wkhtmltopdf --lowquality --dpi \'150\' --margin-bottom \'7.5mm\' --margin-left \'5mm\' --margin-right \'5mm\' --margin-top \'7.5mm\' --orientation \'portrait\' --page-size \'A4\' --javascript-delay \'5000\' --print-media-type --user-style-sheet \'/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css\' --zoom \'1\' --viewport-size \'1920x1080\' \'/tmp/knp_snappy66054e7c41e0f9.28563196.html\' \'/tmp/knp_snappy66054e7c41e643.55543455.pdf\'') in vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php (line 177)
  1.             'timeout' => $this->timeout,
  2.         ]);
  3.         try {
  4.             list($status$stdout$stderr) = $this->executeCommand($command);
  5.             $this->checkProcessStatus($status$stdout$stderr$command);
  6.             $this->checkOutput($output$command);
  7.         } catch (\Exception $e) { // @TODO: should be replaced by \Throwable when support for php5.6 is dropped
  8.             $this->logger->error(sprintf('An error happened while generating "%s".'$output), [
  9.                 'command' => $command,
  10.                 'status'  => isset($status) ? $status null,
AbstractGenerator->generate(array('/tmp/knp_snappy66054e7c41e0f9.28563196.html'), '/tmp/knp_snappy66054e7c41e643.55543455.pdf', array('lowquality' => true, 'dpi' => 150, 'margin-bottom' => '7.5mm', 'margin-left' => '5mm', 'margin-right' => '5mm', 'margin-top' => '7.5mm', 'orientation' => 'portrait', 'page-size' => 'A4', 'javascript-delay' => 5000, 'print-media-type' => true, 'user-style-sheet' => '/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css', 'zoom' => 1, 'viewport-size' => '1920x1080'), false) in vendor/knplabs/knp-snappy/src/Knp/Snappy/Pdf.php (line 63)
  1.      */
  2.     public function generate($input$output, array $options = [], $overwrite false)
  3.     {
  4.         $options $this->handleOptions($this->mergeOptions($options));
  5.         parent::generate($input$output$options$overwrite);
  6.     }
  7.     /**
  8.      * Convert option content or url to file if it is needed.
  9.      *
Pdf->generate(array('/tmp/knp_snappy66054e7c41e0f9.28563196.html'), '/tmp/knp_snappy66054e7c41e643.55543455.pdf', array('lowquality' => true, 'dpi' => 150, 'margin-bottom' => '7.5mm', 'margin-left' => '5mm', 'margin-right' => '5mm', 'margin-top' => '7.5mm', 'orientation' => 'portrait', 'page-size' => 'A4', 'javascript-delay' => 5000, 'print-media-type' => true, 'user-style-sheet' => '/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css', 'zoom' => 1, 'viewport-size' => '1920x1080')) in vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php (line 221)
  1.      */
  2.     public function getOutput($input, array $options = [])
  3.     {
  4.         $filename $this->createTemporaryFile(null$this->getDefaultExtension());
  5.         $this->generate($input$filename$options);
  6.         $result $this->getFileContents($filename);
  7.         return $result;
  8.     }
AbstractGenerator->getOutput(array('/tmp/knp_snappy66054e7c41e0f9.28563196.html'), array()) in vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php (line 242)
  1.             }
  2.         } else {
  3.             $fileNames[] = $this->createTemporaryFile($html'html');
  4.         }
  5.         $result $this->getOutput($fileNames$options);
  6.         return $result;
  7.     }
  8.     /**
AbstractGenerator->getOutputFromHtml('<!DOCTYPE html><!--[if lt IE 8]><html lang="fr" class="ie-old"><![endif]--><!--[if IE 8]><html lang="fr" class="ie-old"><![endif]--><!--[if IE 9]><html lang="fr" class="ie-old"><![endif]--><!--[if gt IE 9]><!--><html lang="fr"> <!--<![endif]--> <head> <meta name="description" content="First edition of the Industry of the Future showcases study presenting the keys to industrial success of 12 of the 41 Showcases labeled by the Industry of the Future Alliance"> <meta name="keywords" content=""> <meta name="Author" content="SensioGrey"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name=\'robots\' content=\'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1\' /> <!-- This site is optimized with the Yoast SEO plugin v20.4 - https://yoast.com/wordpress/plugins/seo/ --> <meta property="og:locale" content="fr_FR" /> <meta property="og:type" content="website" /> <meta property="og:site_name" content="AIF" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"http://www.industrie-dufutur.org/#website","url":"http://www.industrie-dufutur.org/","name":"AIF","description":"Alliance Industrie du Futur","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http://www.industrie-dufutur.org/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script> <!-- / Yoast SEO plugin. --><script type="text/javascript">/* <![CDATA[ */window._wpemojiSettings = {"baseUrl":"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/72x72\\/","ext":".png","svgUrl":"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/","svgExt":".svg","source":{"concatemoji":"http:\\/\\/www.industrie-dufutur.org\\/wp\\/wp-includes\\/js\\/wp-emoji-release.min.js?ver=6.4.3"}};/*! This file is auto-generated */!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f","\\ud83c\\udff3\\ufe0f\\u200b\\u26a7\\ufe0f")?!1:!n(e,"\\ud83c\\uddfa\\ud83c\\uddf3","\\ud83c\\uddfa\\u200b\\ud83c\\uddf3")&&!n(e,"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f","\\ud83c\\udff4\\u200b\\udb40\\udc67\\u200b\\udb40\\udc62\\u200b\\udb40\\udc65\\u200b\\udb40\\udc6e\\u200b\\udb40\\udc67\\u200b\\udb40\\udc7f");case"emoji":return!n(e,"\\ud83e\\udef1\\ud83c\\udffb\\u200d\\ud83e\\udef2\\ud83c\\udfff","\\ud83e\\udef1\\ud83c\\udffb\\u200b\\ud83e\\udef2\\ud83c\\udfff")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);/* ]]> */</script><style id=\'wp-emoji-styles-inline-css\' type=\'text/css\'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; }</style><link rel=\'stylesheet\' id=\'wp-block-library-css\' href=\'http://www.industrie-dufutur.org/wp/wp-includes/css/dist/block-library/style.min.css?ver=6.4.3\' type=\'text/css\' media=\'all\' /><style id=\'classic-theme-styles-inline-css\' type=\'text/css\'>/*! This file is auto-generated */.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style><style id=\'global-styles-inline-css\' type=\'text/css\'>body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}</style><link rel="https://api.w.org/" href="http://www.industrie-dufutur.org/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.industrie-dufutur.org/wp/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 6.4.3" /><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/><!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="http://www.industrie-dufutur.org/content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript> <link rel="apple-touch-icon" sizes="180x180" href="http://www.industrie-dufutur.org/assets/favicons/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="http://www.industrie-dufutur.org/assets/favicons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="http://www.industrie-dufutur.org/assets/favicons/favicon-16x16.png"> <link rel="manifest" href="http://www.industrie-dufutur.org/assets/favicons/manifest.json"> <link rel="mask-icon" href="http://www.industrie-dufutur.org/assets/favicons/safari-pinned-tab.svg" color="#0d005d"> <meta name="theme-color" content="#ffffff"> <meta name="google-site-verification" content="Ow5rEMmyKwgzJYtyB2pcGRJX63LVpA_zhst5hVUzHFo" /> <link rel="stylesheet" href="http://www.industrie-dufutur.org/assets/css/common.dist.css" > <title>Industry of the Future Showcases study - Keys to industrial success</title> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-107904704-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', \'UA-107904704-1\'); </script> </head> <body class=" articlePage "> <div class="globalWrapper"> <a href="#top" class="back_to_top"></a> <header class="header row"> <div class="headerWrapper"> <div class="global-wrapper padded"> <div class="row"> <div class="columns logo-column"> <a href="http://www.industrie-dufutur.org/"> <img src="http://www.industrie-dufutur.org/assets/images/illustrations/logo.svg" alt="aif"> </a> </div> <div class="columns nav-columns hide-l"> <nav class="menu-header-container"><ul id="menu-header" class="row"><li id="menu-item-536" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-536"><a href="http://www.industrie-dufutur.org/aif/">AIF</a></li><li id="menu-item-8" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8"><a href="http://www.industrie-dufutur.org/les-groupes-de-travail-aif/" class="dropdownButton " data-dropdownID="2">Nos missions</a></li><li id="menu-item-535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-535"><a href="http://www.industrie-dufutur.org/espace-presse-documentaire/">Espace presse &#038; documentaire</a></li><li id="menu-item-9109" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9109"><a href="http://www.industrie-dufutur.org/recherche?searchQuery=Actualites&#038;filters%5BtypeDocument%5D=news&#038;orderBy=date-desc">Actualités</a></li><li id="menu-item-5304" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5304"><a href="/événements">Evénements</a></li><li id="menu-item-6554" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6554"><a href="http://www.industrie-dufutur.org/osons-lindustrie/" class="dropdownButton " data-dropdownID="6">Métiers : Osons l&rsquo;Industrie du Futur</a></li><li id="menu-item-9110" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9110"><a href="http://www.industrie-dufutur.org/ambassadeurs-et-correspondants/">Vos contacts</a></li></ul></nav> </div> <div class="columns right panel-column"> <ul> <li class="nav hide show-l-inline_block"> <a href="#" class="navMobileButton"> <span>recherche</span> </a> </li> </ul> </div> </div> </div> <div class="wrapperSubNavs"> <div class="mobileNav hide show-l"> <div class="contentNavMobile"> <form action="#" class="mobileSearchForm"> <input type="text" id="search-mobile" placeholder="Que recherchez vous ?"> <button type="submit"></button> </form> <nav class="menu-header-container"><ul id="menu-header-1" class="row"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-536"><a href="http://www.industrie-dufutur.org/aif/">AIF</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8"><a href="http://www.industrie-dufutur.org/les-groupes-de-travail-aif/" class="dropdownButton " data-dropdownID="2">Nos missions</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-535"><a href="http://www.industrie-dufutur.org/espace-presse-documentaire/">Espace presse &#038; documentaire</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9109"><a href="http://www.industrie-dufutur.org/recherche?searchQuery=Actualites&#038;filters%5BtypeDocument%5D=news&#038;orderBy=date-desc">Actualités</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5304"><a href="/événements">Evénements</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6554"><a href="http://www.industrie-dufutur.org/osons-lindustrie/" class="dropdownButton " data-dropdownID="6">Métiers : Osons l&rsquo;Industrie du Futur</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9110"><a href="http://www.industrie-dufutur.org/ambassadeurs-et-correspondants/">Vos contacts</a></li></ul></nav> </div> </div> <div class="dropDown"> <div class="global-wrapper padded"> <div class="dropdownContent dropdownContent2 hide"> <div class="row"> <div class="columns column-35 descriptionColumn hide-l"> <h2>Nos missions</h2> <p>L’AIF, porte la nouvelle Filière Solutions Industrie du Futur S-I-F. Elle organise et coordonne les initiatives, projets et travaux collectifs, qui conduisent à transformer l’industrie en France en se modernisant grâce aux solutions et technologies de l’Industrie du Futur alliant le numérique.</p> <a href="http://www.industrie-dufutur.org/nos-missions/" class="buttonLink white"> En savoir plus </a> </div> <div class="columns column-30 column-100-l buttonsPanel"> <a href="#" class="hide show-l back">Nos missions</a> <h3 class="hide show-l">Les 3 axes de travail</h3> <ul> <li> <a href="https://www.solutionsindustriedufutur.org/" style="background-image: url(http://www.industrie-dufutur.org/content/uploads/2017/09/Collaborer.jpg)"> Connecter </a> </li> <li> <a href="https://www.solutionsindustriedufutur.org/" style="background-image: url(http://www.industrie-dufutur.org/content/uploads/2017/09/Développer.jpg)"> Accélérer </a> </li> <li> <a href="https://www.solutionsindustriedufutur.org/" style="background-image: url(http://www.industrie-dufutur.org/content/uploads/2017/09/Etendre.jpg)"> Innover </a> </li> </ul> </div> <div class="columns column-35 projectsColumns hide-l"> <h2>Les dernières actualités</h2> <ul> <li> <span class="info"> Actualités · le jeudi 11 mars 2021 </span> <p> <a href="/Actualit%C3%A9s/face-camera-industrie-futur-frederic-sanchez-president-de-fives-co-president-dhonneur-de-lalliance-industrie-futur/"> &quot;Face Caméra Industrie du Futur&quot; avec Frédéric Sanchez, président de Fives et co-président d&#039;honneur de l&#039;Alliance Industrie du Futur </a> </p> </li> <li> <span class="info"> Actualités · le mardi 19 février 2019 </span> <p> <a href="/Actualit%C3%A9s/groupe-de-travail-aif-osons-lindustrie-futur-videos/"> [Groupe de travail AIF] – « Osons l’Industrie du Futur » en vidéos ! </a> </p> </li> </ul> </div> </div> </div> <div class="dropdownContent dropdownContent6 hide"> <div class="row"> <div class="columns column-35 descriptionColumn hide-l"> <h2>Osons l&#039;industrie</h2> <p>Découvrez les métiers et formations de l&#039;Industrie du Futur grâce au projet collaboratif Osons l&#039;Industrie</p> <a href="http://www.industrie-dufutur.org/osons-lindustrie/" class="buttonLink white"> En savoir plus </a> </div> <div class="columns column-30 column-100-l buttonsPanel"> <a href="#" class="hide show-l back">Nos missions</a> <h3 class="hide show-l">Les 3 axes de travail</h3> <ul> </ul> </div> <div class="columns column-35 projectsColumns hide-l"> <h2>Les dernières actualités</h2> <ul> </ul> </div> </div> </div> </div> </div> </div> </div></header> <div class="mainWrapper"> <div class="headerContent"> <img src="http://www.industrie-dufutur.org/content/uploads/2017/09/AllianceIndustrieDuFutur-GT06-1.png" alt="" class="slider-home easyWide"> </div> <div class="introWrapper"> <div class="global-wrapper padded"> <div class="article-infos"> <p><span class="category">Actualités</span> · <span class="date">le lundi 19 mars 2018</span></p></div> <div class="subWrapper"> <div class="title"> <h1>Industry of the Future Showcases study - Keys to industrial success</h1> </div> </div> </div> </div> <div class="global-wrapper padded"> <div class="row"> <div class="columns column-20 hide-l stickyNav"> <div class="sector"> <p class="geoloc"><a href="https://www.google.com/maps/place/?q=France" target="_blank">France</a></p> </div> <ul class="tags"> </ul> <ul class="socialMedia"> <li> <a href="#" target="_blank" class="shareBtn buttonFacebook" data-network="facebook"></a> </li> <li> <a href="#" target="_blank" class="shareBtn buttonTwitter" data-network="twitter"></a> </li> <li> <a href="#" target="_blank" class="shareBtn buttonlinkedIn" data-network="linkedin"></a> </li> <li> <a href="#" target="_blank" class="shareBtn buttonMail" data-network="mail"></a> </li> </ul></div> <div class="columns column-80 column-100-l contentWrapper right"> <div class="wysiwyg-content"> <div class="intro"> <p>First edition of the Industry of the Future showcases study presenting the keys to industrial success of 12 of the 41 Showcases labeled by the Industry of the Future Alliance</p> </div> <p><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="wysiwyg-content"> <h2>First edition of the Industry of the Future showcases study presenting the keys to industrial success of 12 of the 41 Showcases labeled by the Industry of the Future Alliance.</h2><p>This interactive document is a powerful tool to inspire the digital, industrial and human transformation of businesses, especially SMEs and midcaps.</p><p>It gives an overview of the transformations that have been implemented by companies labeled « Industry of the Future Showcases ».</p><p>Thanks to an index of challenges, initiatives and results, complementary to the index of the technological bricks of the AIF, a leader can in a few clicks identify the showcases’ emblematic industrial transformations that speak to him, understand the recipe that allowed each showcase to create avalanches of value and concretely visualize the measures deployed through videos accessible by QR code.</p><p>This tool allows managers to learn from the industrial transformations that have succeeded in the French context, it is a benchmarking tool to stimulate the thinking of teams.</p><p>It is also a way for French SMEs to network on topics such as digital transformation or the new economy.</p><p>The study will be extended regularly by including other showcases already labeled or to come.</p><p><img class="alignnone size-full wp-image-7811" src="http://www.industrie-dufutur.org/content/uploads/2018/03/IndustryOfTheFutureShowcasesStudy_oct2018.jpg" alt="" width="216" height="304" /></p></div><div class="wysiwyg-content"> <div class="files-to-download"> <p>Documents à télécharger</p> <ul><li><a href="http://www.industrie-dufutur.org/content/uploads/2018/03/IndustryOfTheFutureShowcasesStudy_oct2018.pdf" target="_blank" class="activeRoll" rel="noreferrer noopener">Disrupting business model and creating value avalanches</a></li> <li><a href="http://www.industrie-dufutur.org/content/uploads/2018/03/2018_03_16_AIF_D%C3%A0T_EtudeVitrinesIndustrieDuFutur_VF.pdf" target="_blank" class="activeRoll" rel="noreferrer noopener">Disrupter le modèle d\'affaires en créant des avalanches de valeur _ Étude Vitrines Industrie du Futur, édition février 2018</a></li> </ul></div></div></div></div></div></div></p> </div> <div class="block-pictos-docs"> </div> </div> </div> </div> </div> <footer class="footer"> <div class="mainFooterWrapper"> <div class="global-wrapper"> <div class="row"> <div class="columns column-logo column-50-l"> <a href="http://www.industrie-dufutur.org/"> <img src="http://www.industrie-dufutur.org/assets/images/illustrations/logo.svg" alt="aif"> </a> </div> <div class="columns column-baseline column-50-l"> <h2> Fédérer, accélérer, transformer </h2> </div> <div class="columns column-panel column-100-l"> <nav class="menu-footer-container"><ul id="menu-footer" class="row"><li id="menu-item-534" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-534"><a href="http://www.industrie-dufutur.org/aif/">AIF</a></li><li id="menu-item-10" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10"><a href="http://www.industrie-dufutur.org/les-groupes-de-travail-aif/" class="dropdownButton " data-dropdownID="2">Nos missions</a></li><li id="menu-item-533" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-533"><a href="http://www.industrie-dufutur.org/espace-presse-documentaire/">Espace presse &#038; documentaire</a></li><li id="menu-item-6555" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6555"><a href="http://www.industrie-dufutur.org/osons-lindustrie/">Métiers : Osons l&rsquo;Industrie du Futur</a></li><li id="menu-item-5801" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5801"><a href="http://www.industrie-dufutur.org/mentions-legales/">Mentions légales</a></li><li id="menu-item-5991" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5991"><a href="http://www.industrie-dufutur.org/faq/" class="dropdownButton " data-dropdownID="6">FAQ</a></li></ul></nav> </div> </div> </div> </div> <div class="subFooterWrapper"> <div class="global-wrapper"> <div class="row"> <div class="columns column-50 column-100-l right panelSocialNl"> <ul class="social-button hide-l"> <li><a href="https://www.youtube.com/channel/UCHt9-rqkgyraJRnVs-6_p5A" target="_blank" class="buttonYoutube"></a></li> <li><a href="https://twitter.com/industrie_futur" target="_blank" class="buttonTwitter"></a></li> <li><a href="https://www.linkedin.com/company/10999823/" target="_blank" class="buttonlinkedIn"></a></li> </ul> <form action="/newsletter/subscription" id="nl-inscription" class="formNl" data-error-empty="Vous n&#039;avez pas remplie votre mail" data-error-bad-mail="Votre mail n&#039;est pas valide" data-mail-send="Votre mail a été enregistré" data-error-mail-send="Une erreur est survenue"> <div class="formWrapperInner"> <input type="email" id="newsletter_subscription_email" name="newsletter_subscription[email]" required="required" placeholder="S’inscrire à la newsletter" /> <input type="hidden" id="newsletter_subscription__token" name="newsletter_subscription[_token]" value="mBILLlHmQXovMYgmtVjqcQ0Om1AzQNpNgzDY4zX6Ecg" /> <button type="submit"></button> </div> <div class="errors">This is not a valid mail</div></form> </div> <div class="columns column-50 column-100-l panelWrapper"> <ul> <li class="copyright"> © 2017 AIF. Tous droits réservés </li> <li> <a href="/contact"> Contact </a> </li> <li> <a href="/sitemap"> Plan du site </a> </li> </ul> </div> </div> </div> </div></footer> </div> <div class="cookie-banner"> <div class="global-wrapper"> <div class="container"> <div> <p> <span>Veuillez accepter l\'utilisation des cookies pour vous permettre de disposer d\'une navigation optimale.</span> <a href="#" class="buttonLink activeRoll" data-cookie-consent="yes">Accepter</a> </p> </div> <div> <a href="#" class="close-banner" data-cookie-consent="no">✕</a> </div> </div> </div></div> <!-- script --> <script src="http://www.industrie-dufutur.org/assets/js/dist/common.js"></script> <script src="http://www.industrie-dufutur.org/assets/js/common/article-app.js"></script> <script src="http://www.industrie-dufutur.org/assets/js/common/wysiwyg-app.js"></script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVVlELTUkG1aLAOwwdE2rETa1JbArMOa4&callback=googleMap.init"> </script> </body></html>') in src/AppBundle/Controller/FrontController.php (line 74)
  1.             $this->renderView(
  2.                 'views/Document/pdf.html.twig',
  3.                 [
  4.                     'document' => $document,
  5.                     'documents_suggested' => $suggests,
  6.                     'stickynavitems' => $stickynavitems,
  7.                 ]
  8.             )
  9.         );
  10.         return new PdfResponse(
FrontController->documentPDFAction('2323') in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php (line 151)
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response = \call_user_func_array($controller$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
HttpKernel->handleRaw(object(Request), 1) in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php (line 68)
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
HttpKernel->handle(object(Request), 1, true) in vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php (line 169)
  1.     {
  2.         if (false === $this->booted) {
  3.             $this->boot();
  4.         }
  5.         return $this->getHttpKernel()->handle($request$type$catch);
  6.     }
  7.     /**
  8.      * Gets a HTTP kernel from the container.
  9.      *
Kernel->handle(object(Request)) in web/index.php (line 9)
  1. require_once __DIR__ '/boot.php';
  2. (function () {
  3.     global $kernel;
  4.     $request Request::createFromGlobals();
  5.     $response $kernel->handle($request);
  6.     if ($response instanceof \EasyWordpressBundle\Wordpress\WordpressResponse) {
  7.         $response->headers->remove('Content-Type');
  8.     }
{closure}() in web/index.php (line 17)
  1.         $response->headers->remove('Content-Type');
  2.     }
  3.     $response->send();
  4.     $kernel->terminate($request$response);
  5. })();

Logs

No log messages

Stack Trace

RuntimeException

RuntimeException:
The exit status code '1' says something went wrong:
stderr: "Loading pages (1/6)
[>                                                           ] 0%
[======>                                                     ] 10%
QSslSocket: cannot resolve SSLv3_client_method
QSslSocket: cannot resolve SSLv3_server_method
[============>                                               ] 20%
[===================>                                        ] 32%
[=====================>                                      ] 35%
[=========================>                                  ] 42%
[==========================>                                 ] 44%
QFont::setPixelSize: Pixel size <= 0 (0)
[============================>                               ] 48%
[================================================>           ] 81%
[===================================================>        ] 85%
[====================================================>       ] 88%
[=====================================================>      ] 89%
[======================================================>     ] 90%
[============================================================] 100%
Counting pages (2/6)                                               
[============================================================] Object 1 of 1
Resolving links (4/6)                                                       
[============================================================] Object 1 of 1
Loading headers and footers (5/6)                                           
Printing pages (6/6)
[>                                                           ] Preparing
[==============================>                             ] Page 1 of 2
[============================================================] Page 2 of 2
Done                                                                      
Exit with code 1 due to network error: ContentNotFoundError
"
stdout: ""
command: wkhtmltopdf --lowquality --dpi '150' --margin-bottom '7.5mm' --margin-left '5mm' --margin-right '5mm' --margin-top '7.5mm' --orientation 'portrait' --page-size 'A4' --javascript-delay '5000' --print-media-type --user-style-sheet '/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css' --zoom '1' --viewport-size '1920x1080' '/tmp/knp_snappy66054e7c41e0f9.28563196.html' '/tmp/knp_snappy66054e7c41e643.55543455.pdf'.

  at vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php:378
  at Knp\Snappy\AbstractGenerator->checkProcessStatus(1, '', 'Loading pages (1/6)[>                                                           ] 0%
[======>                                                     ] 10%
QSslSocket: cannot resolve SSLv3_client_methodQSslSocket: cannot resolve SSLv3_server_method[============>                                               ] 20%
[===================>                                        ] 32%
[=====================>                                      ] 35%
[=========================>                                  ] 42%
[==========================>                                 ] 44%
QFont::setPixelSize: Pixel size <= 0 (0)[============================>                               ] 48%
[================================================>           ] 81%
[===================================================>        ] 85%
[====================================================>       ] 88%
[=====================================================>      ] 89%
[======================================================>     ] 90%
[============================================================] 100%
Counting pages (2/6)                                               [============================================================] Object 1 of 1
Resolving links (4/6)                                                       [============================================================] Object 1 of 1
Loading headers and footers (5/6)                                           Printing pages (6/6)[>                                                           ] Preparing
[==============================>                             ] Page 1 of 2
[============================================================] Page 2 of 2
Done                                                                      Exit with code 1 due to network error: ContentNotFoundError', 'wkhtmltopdf --lowquality --dpi \'150\' --margin-bottom \'7.5mm\' --margin-left \'5mm\' --margin-right \'5mm\' --margin-top \'7.5mm\' --orientation \'portrait\' --page-size \'A4\' --javascript-delay \'5000\' --print-media-type --user-style-sheet \'/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css\' --zoom \'1\' --viewport-size \'1920x1080\' \'/tmp/knp_snappy66054e7c41e0f9.28563196.html\' \'/tmp/knp_snappy66054e7c41e643.55543455.pdf\'')
     (vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php:177)
  at Knp\Snappy\AbstractGenerator->generate(array('/tmp/knp_snappy66054e7c41e0f9.28563196.html'), '/tmp/knp_snappy66054e7c41e643.55543455.pdf', array('lowquality' => true, 'dpi' => 150, 'margin-bottom' => '7.5mm', 'margin-left' => '5mm', 'margin-right' => '5mm', 'margin-top' => '7.5mm', 'orientation' => 'portrait', 'page-size' => 'A4', 'javascript-delay' => 5000, 'print-media-type' => true, 'user-style-sheet' => '/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css', 'zoom' => 1, 'viewport-size' => '1920x1080'), false)
     (vendor/knplabs/knp-snappy/src/Knp/Snappy/Pdf.php:63)
  at Knp\Snappy\Pdf->generate(array('/tmp/knp_snappy66054e7c41e0f9.28563196.html'), '/tmp/knp_snappy66054e7c41e643.55543455.pdf', array('lowquality' => true, 'dpi' => 150, 'margin-bottom' => '7.5mm', 'margin-left' => '5mm', 'margin-right' => '5mm', 'margin-top' => '7.5mm', 'orientation' => 'portrait', 'page-size' => 'A4', 'javascript-delay' => 5000, 'print-media-type' => true, 'user-style-sheet' => '/var/www/industrie-dufutur.org/releases/20200506140717Z/app/../web/assets/css/print.css', 'zoom' => 1, 'viewport-size' => '1920x1080'))
     (vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php:221)
  at Knp\Snappy\AbstractGenerator->getOutput(array('/tmp/knp_snappy66054e7c41e0f9.28563196.html'), array())
     (vendor/knplabs/knp-snappy/src/Knp/Snappy/AbstractGenerator.php:242)
  at Knp\Snappy\AbstractGenerator->getOutputFromHtml('<!DOCTYPE html><!--[if lt IE 8]><html lang="fr" class="ie-old"><![endif]--><!--[if IE 8]><html lang="fr" class="ie-old"><![endif]--><!--[if IE 9]><html lang="fr" class="ie-old"><![endif]--><!--[if gt IE 9]><!--><html lang="fr">  <!--<![endif]-->  <head>    <meta name="description" content="First edition of the Industry of the Future showcases study presenting the keys to industrial success of 12 of the 41 Showcases labeled by the Industry of the Future Alliance">    <meta name="keywords" content="">    <meta name="Author" content="SensioGrey">    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">    <meta name="viewport" content="width=device-width, initial-scale=1">    <meta name=\'robots\' content=\'index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1\' />	<!-- This site is optimized with the Yoast SEO plugin v20.4 - https://yoast.com/wordpress/plugins/seo/ -->	<meta property="og:locale" content="fr_FR" />	<meta property="og:type" content="website" />	<meta property="og:site_name" content="AIF" />	<meta name="twitter:card" content="summary_large_image" />	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"http://www.industrie-dufutur.org/#website","url":"http://www.industrie-dufutur.org/","name":"AIF","description":"Alliance Industrie du Futur","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http://www.industrie-dufutur.org/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script>	<!-- / Yoast SEO plugin. --><script type="text/javascript">/* <![CDATA[ */window._wpemojiSettings = {"baseUrl":"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/72x72\\/","ext":".png","svgUrl":"https:\\/\\/s.w.org\\/images\\/core\\/emoji\\/14.0.0\\/svg\\/","svgExt":".svg","source":{"concatemoji":"http:\\/\\/www.industrie-dufutur.org\\/wp\\/wp-includes\\/js\\/wp-emoji-release.min.js?ver=6.4.3"}};/*! This file is auto-generated */!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f","\\ud83c\\udff3\\ufe0f\\u200b\\u26a7\\ufe0f")?!1:!n(e,"\\ud83c\\uddfa\\ud83c\\uddf3","\\ud83c\\uddfa\\u200b\\ud83c\\uddf3")&&!n(e,"\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f","\\ud83c\\udff4\\u200b\\udb40\\udc67\\u200b\\udb40\\udc62\\u200b\\udb40\\udc65\\u200b\\udb40\\udc6e\\u200b\\udb40\\udc67\\u200b\\udb40\\udc7f");case"emoji":return!n(e,"\\ud83e\\udef1\\ud83c\\udffb\\u200d\\ud83e\\udef2\\ud83c\\udfff","\\ud83e\\udef1\\ud83c\\udffb\\u200b\\ud83e\\udef2\\ud83c\\udfff")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);/* ]]> */</script><style id=\'wp-emoji-styles-inline-css\' type=\'text/css\'>	img.wp-smiley, img.emoji {		display: inline !important;		border: none !important;		box-shadow: none !important;		height: 1em !important;		width: 1em !important;		margin: 0 0.07em !important;		vertical-align: -0.1em !important;		background: none !important;		padding: 0 !important;	}</style><link rel=\'stylesheet\' id=\'wp-block-library-css\' href=\'http://www.industrie-dufutur.org/wp/wp-includes/css/dist/block-library/style.min.css?ver=6.4.3\' type=\'text/css\' media=\'all\' /><style id=\'classic-theme-styles-inline-css\' type=\'text/css\'>/*! This file is auto-generated */.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style><style id=\'global-styles-inline-css\' type=\'text/css\'>body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}</style><link rel="https://api.w.org/" href="http://www.industrie-dufutur.org/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.industrie-dufutur.org/wp/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 6.4.3" /><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/><!--[if lte IE 9]><link rel="stylesheet" type="text/css" href="http://www.industrie-dufutur.org/content/plugins/js_composer/assets/css/vc_lte_ie9.min.css" media="screen"><![endif]--><noscript><style type="text/css"> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript>    <link rel="apple-touch-icon" sizes="180x180" href="http://www.industrie-dufutur.org/assets/favicons/apple-touch-icon.png">    <link rel="icon" type="image/png" sizes="32x32" href="http://www.industrie-dufutur.org/assets/favicons/favicon-32x32.png">    <link rel="icon" type="image/png" sizes="16x16" href="http://www.industrie-dufutur.org/assets/favicons/favicon-16x16.png">    <link rel="manifest" href="http://www.industrie-dufutur.org/assets/favicons/manifest.json">    <link rel="mask-icon" href="http://www.industrie-dufutur.org/assets/favicons/safari-pinned-tab.svg" color="#0d005d">    <meta name="theme-color" content="#ffffff">    <meta name="google-site-verification" content="Ow5rEMmyKwgzJYtyB2pcGRJX63LVpA_zhst5hVUzHFo" />                                  <link rel="stylesheet" href="http://www.industrie-dufutur.org/assets/css/common.dist.css" >                      <title>Industry of the Future Showcases study - Keys to industrial success</title>    <!-- Global site tag (gtag.js) - Google Analytics -->    <script async src="https://www.googletagmanager.com/gtag/js?id=UA-107904704-1"></script>    <script>      window.dataLayer = window.dataLayer || [];      function gtag(){dataLayer.push(arguments);}      gtag(\'js\', new Date());      gtag(\'config\', \'UA-107904704-1\');    </script>      </head>  <body class=" articlePage ">    <div class="globalWrapper">      <a href="#top" class="back_to_top"></a>      <header class="header row">  <div class="headerWrapper">    <div class="global-wrapper padded">      <div class="row">        <div class="columns logo-column">          <a href="http://www.industrie-dufutur.org/">            <img src="http://www.industrie-dufutur.org/assets/images/illustrations/logo.svg" alt="aif">          </a>        </div>        <div class="columns nav-columns hide-l">          <nav class="menu-header-container"><ul id="menu-header" class="row"><li id="menu-item-536" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-536"><a href="http://www.industrie-dufutur.org/aif/">AIF</a></li><li id="menu-item-8" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8"><a href="http://www.industrie-dufutur.org/les-groupes-de-travail-aif/" class="dropdownButton " data-dropdownID="2">Nos missions</a></li><li id="menu-item-535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-535"><a href="http://www.industrie-dufutur.org/espace-presse-documentaire/">Espace presse &#038; documentaire</a></li><li id="menu-item-9109" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9109"><a href="http://www.industrie-dufutur.org/recherche?searchQuery=Actualites&#038;filters%5BtypeDocument%5D=news&#038;orderBy=date-desc">Actualités</a></li><li id="menu-item-5304" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5304"><a href="/événements">Evénements</a></li><li id="menu-item-6554" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6554"><a href="http://www.industrie-dufutur.org/osons-lindustrie/" class="dropdownButton " data-dropdownID="6">Métiers : Osons l&rsquo;Industrie du Futur</a></li><li id="menu-item-9110" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9110"><a href="http://www.industrie-dufutur.org/ambassadeurs-et-correspondants/">Vos contacts</a></li></ul></nav>        </div>        <div class="columns right panel-column">          <ul>                                                                                                                                                                                      <li class="nav hide show-l-inline_block">              <a href="#" class="navMobileButton">                <span>recherche</span>              </a>            </li>          </ul>        </div>      </div>    </div>    <div class="wrapperSubNavs">      <div class="mobileNav hide show-l">        <div class="contentNavMobile">          <form action="#" class="mobileSearchForm">            <input type="text" id="search-mobile" placeholder="Que recherchez vous ?">            <button type="submit"></button>          </form>          <nav class="menu-header-container"><ul id="menu-header-1" class="row"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-536"><a href="http://www.industrie-dufutur.org/aif/">AIF</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8"><a href="http://www.industrie-dufutur.org/les-groupes-de-travail-aif/" class="dropdownButton " data-dropdownID="2">Nos missions</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-535"><a href="http://www.industrie-dufutur.org/espace-presse-documentaire/">Espace presse &#038; documentaire</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9109"><a href="http://www.industrie-dufutur.org/recherche?searchQuery=Actualites&#038;filters%5BtypeDocument%5D=news&#038;orderBy=date-desc">Actualités</a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5304"><a href="/événements">Evénements</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6554"><a href="http://www.industrie-dufutur.org/osons-lindustrie/" class="dropdownButton " data-dropdownID="6">Métiers : Osons l&rsquo;Industrie du Futur</a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9110"><a href="http://www.industrie-dufutur.org/ambassadeurs-et-correspondants/">Vos contacts</a></li></ul></nav>                                                                                                                                                                                </div>      </div>      <div class="dropDown">        <div class="global-wrapper padded">                    <div class="dropdownContent dropdownContent2 hide">            <div class="row">              <div class="columns column-35 descriptionColumn hide-l">                                <h2>Nos missions</h2>                                <p>L’AIF, porte la nouvelle Filière Solutions Industrie du Futur S-I-F. Elle organise et coordonne les initiatives, projets et travaux collectifs, qui conduisent à transformer l’industrie en France en se modernisant grâce aux solutions et technologies de l’Industrie du Futur alliant le numérique.</p>                                                  <a href="http://www.industrie-dufutur.org/nos-missions/" class="buttonLink white">                    En savoir plus                  </a>                              </div>              <div class="columns column-30 column-100-l buttonsPanel">                                <a href="#" class="hide show-l back">Nos missions</a>                <h3 class="hide show-l">Les 3 axes de travail</h3>                <ul>                                                            <li>                        <a href="https://www.solutionsindustriedufutur.org/" style="background-image: url(http://www.industrie-dufutur.org/content/uploads/2017/09/Collaborer.jpg)">                          Connecter                        </a>                      </li>                                                                                <li>                        <a href="https://www.solutionsindustriedufutur.org/" style="background-image: url(http://www.industrie-dufutur.org/content/uploads/2017/09/Développer.jpg)">                          Accélérer                        </a>                      </li>                                                                                <li>                        <a href="https://www.solutionsindustriedufutur.org/" style="background-image: url(http://www.industrie-dufutur.org/content/uploads/2017/09/Etendre.jpg)">                          Innover                        </a>                      </li>                                                      </ul>              </div>              <div class="columns column-35 projectsColumns hide-l">                                                <h2>Les dernières actualités</h2>                <ul>                                                                                                                            <li>                        <span class="info">                          Actualités · le jeudi 11 mars 2021                        </span>                        <p>                          <a href="/Actualit%C3%A9s/face-camera-industrie-futur-frederic-sanchez-president-de-fives-co-president-dhonneur-de-lalliance-industrie-futur/">                            &quot;Face Caméra Industrie du Futur&quot; avec Frédéric Sanchez, président de Fives et co-président d&#039;honneur de l&#039;Alliance Industrie du Futur                          </a>                        </p>                      </li>                                                                                                                                                <li>                        <span class="info">                          Actualités · le mardi 19 février 2019                        </span>                        <p>                          <a href="/Actualit%C3%A9s/groupe-de-travail-aif-osons-lindustrie-futur-videos/">                            [Groupe de travail AIF] – « Osons l’Industrie du Futur » en vidéos !                          </a>                        </p>                      </li>                                                      </ul>              </div>            </div>          </div>          <div class="dropdownContent dropdownContent6 hide">            <div class="row">              <div class="columns column-35 descriptionColumn hide-l">                                <h2>Osons l&#039;industrie</h2>                                <p>Découvrez les métiers et formations de l&#039;Industrie du Futur grâce au projet collaboratif Osons l&#039;Industrie</p>                                                  <a href="http://www.industrie-dufutur.org/osons-lindustrie/" class="buttonLink white">                    En savoir plus                  </a>                              </div>              <div class="columns column-30 column-100-l buttonsPanel">                                <a href="#" class="hide show-l back">Nos missions</a>                <h3 class="hide show-l">Les 3 axes de travail</h3>                <ul>                                                                                                                                                    </ul>              </div>              <div class="columns column-35 projectsColumns hide-l">                                                <h2>Les dernières actualités</h2>                <ul>                                                                                            </ul>              </div>            </div>          </div>        </div>      </div>    </div>  </div></header>        <div class="mainWrapper">      <div class="headerContent">    <img src="http://www.industrie-dufutur.org/content/uploads/2017/09/AllianceIndustrieDuFutur-GT06-1.png" alt="" class="slider-home easyWide">    </div>    <div class="introWrapper">      <div class="global-wrapper padded">                        <div class="article-infos">  <p><span class="category">Actualités</span> · <span class="date">le lundi 19 mars 2018</span></p></div>        <div class="subWrapper">          <div class="title">            <h1>Industry of the Future Showcases study - Keys to industrial success</h1>          </div>                  </div>      </div>    </div>    <div class="global-wrapper padded">      <div class="row">        <div class="columns column-20 hide-l stickyNav">          <div class="sector">            <p class="geoloc"><a href="https://www.google.com/maps/place/?q=France" target="_blank">France</a></p>    </div>          <ul class="tags">          </ul>    <ul class="socialMedia">    <li>      <a href="#" target="_blank" class="shareBtn buttonFacebook" data-network="facebook"></a>    </li>    <li>      <a href="#" target="_blank" class="shareBtn buttonTwitter" data-network="twitter"></a>    </li>    <li>      <a href="#" target="_blank" class="shareBtn buttonlinkedIn" data-network="linkedin"></a>    </li>    <li>      <a href="#" target="_blank" class="shareBtn buttonMail" data-network="mail"></a>    </li>  </ul></div>        <div class="columns column-80 column-100-l contentWrapper right">          <div class="wysiwyg-content">            <div class="intro">              <p>First edition of the Industry of the Future showcases study presenting the keys to industrial success of 12 of the 41 Showcases labeled by the Industry of the Future Alliance</p>            </div>            <p><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="wysiwyg-content">  <h2>First edition of the Industry of the Future showcases study presenting the keys to industrial success of 12 of the 41 Showcases labeled by the Industry of the Future Alliance.</h2><p>This interactive document is a powerful tool to inspire the digital, industrial and human transformation of businesses, especially SMEs and midcaps.</p><p>It gives an overview of the transformations that have been implemented by companies labeled « Industry of the Future Showcases ».</p><p>Thanks to an index of challenges, initiatives and results, complementary to the index of the technological bricks of the AIF, a leader can in a few clicks identify the showcases’ emblematic industrial transformations that speak to him, understand the recipe that allowed each showcase to create avalanches of value and concretely visualize the measures deployed through videos accessible by QR code.</p><p>This tool allows managers to learn from the industrial transformations that have succeeded in the French context, it is a benchmarking tool to stimulate the thinking of teams.</p><p>It is also a way for French SMEs to network on topics such as digital transformation or the new economy.</p><p>The study will be extended regularly by including other showcases already labeled or to come.</p><p><img class="alignnone size-full wp-image-7811" src="http://www.industrie-dufutur.org/content/uploads/2018/03/IndustryOfTheFutureShowcasesStudy_oct2018.jpg" alt="" width="216" height="304" /></p></div><div class="wysiwyg-content">  <div class="files-to-download">    <p>Documents à télécharger</p>    <ul><li><a href="http://www.industrie-dufutur.org/content/uploads/2018/03/IndustryOfTheFutureShowcasesStudy_oct2018.pdf" target="_blank" class="activeRoll" rel="noreferrer noopener">Disrupting business model and creating value avalanches</a></li>            <li><a href="http://www.industrie-dufutur.org/content/uploads/2018/03/2018_03_16_AIF_D%C3%A0T_EtudeVitrinesIndustrieDuFutur_VF.pdf" target="_blank" class="activeRoll" rel="noreferrer noopener">Disrupter le modèle d\'affaires en créant des avalanches de valeur _ Étude Vitrines Industrie du Futur, édition février 2018</a></li>          </ul></div></div></div></div></div></div></p>          </div>          <div class="block-pictos-docs">        </div>        </div>      </div>    </div>  </div>      <footer class="footer">  <div class="mainFooterWrapper">    <div class="global-wrapper">      <div class="row">        <div class="columns column-logo column-50-l">          <a href="http://www.industrie-dufutur.org/">            <img src="http://www.industrie-dufutur.org/assets/images/illustrations/logo.svg" alt="aif">          </a>        </div>        <div class="columns column-baseline column-50-l">          <h2>            Fédérer, accélérer, transformer          </h2>        </div>        <div class="columns column-panel column-100-l">          <nav class="menu-footer-container"><ul id="menu-footer" class="row"><li id="menu-item-534" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-534"><a href="http://www.industrie-dufutur.org/aif/">AIF</a></li><li id="menu-item-10" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10"><a href="http://www.industrie-dufutur.org/les-groupes-de-travail-aif/" class="dropdownButton " data-dropdownID="2">Nos missions</a></li><li id="menu-item-533" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-533"><a href="http://www.industrie-dufutur.org/espace-presse-documentaire/">Espace presse &#038; documentaire</a></li><li id="menu-item-6555" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6555"><a href="http://www.industrie-dufutur.org/osons-lindustrie/">Métiers : Osons l&rsquo;Industrie du Futur</a></li><li id="menu-item-5801" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5801"><a href="http://www.industrie-dufutur.org/mentions-legales/">Mentions légales</a></li><li id="menu-item-5991" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5991"><a href="http://www.industrie-dufutur.org/faq/" class="dropdownButton " data-dropdownID="6">FAQ</a></li></ul></nav>        </div>      </div>    </div>  </div>  <div class="subFooterWrapper">    <div class="global-wrapper">      <div class="row">        <div class="columns column-50 column-100-l right panelSocialNl">          <ul class="social-button hide-l">            <li><a href="https://www.youtube.com/channel/UCHt9-rqkgyraJRnVs-6_p5A" target="_blank" class="buttonYoutube"></a></li>            <li><a href="https://twitter.com/industrie_futur" target="_blank" class="buttonTwitter"></a></li>            <li><a href="https://www.linkedin.com/company/10999823/" target="_blank" class="buttonlinkedIn"></a></li>          </ul>          <form  action="/newsletter/subscription"  id="nl-inscription"  class="formNl"  data-error-empty="Vous n&#039;avez pas remplie votre mail"  data-error-bad-mail="Votre mail n&#039;est pas valide"  data-mail-send="Votre mail a été enregistré"  data-error-mail-send="Une erreur est survenue">  <div class="formWrapperInner">    <input type="email" id="newsletter_subscription_email" name="newsletter_subscription[email]" required="required" placeholder="S’inscrire à la newsletter" />    <input type="hidden" id="newsletter_subscription__token" name="newsletter_subscription[_token]" value="mBILLlHmQXovMYgmtVjqcQ0Om1AzQNpNgzDY4zX6Ecg" />    <button type="submit"></button>  </div>  <div class="errors">This is not a valid mail</div></form>        </div>        <div class="columns column-50 column-100-l panelWrapper">          <ul>            <li class="copyright">              © 2017 AIF. Tous droits réservés            </li>            <li>              <a href="/contact">                 Contact              </a>            </li>                                                                                             <li>              <a href="/sitemap">                 Plan du site              </a>            </li>                                                                                           </ul>        </div>      </div>    </div>  </div></footer>    </div>  <div class="cookie-banner">  <div class="global-wrapper">    <div class="container">      <div>        <p>          <span>Veuillez accepter l\'utilisation des cookies pour vous permettre de disposer d\'une navigation optimale.</span>          <a href="#" class="buttonLink activeRoll" data-cookie-consent="yes">Accepter</a>        </p>      </div>      <div>        <a href="#" class="close-banner" data-cookie-consent="no">✕</a>      </div>    </div>  </div></div>    <!-- script  -->              <script src="http://www.industrie-dufutur.org/assets/js/dist/common.js"></script>                                  <script src="http://www.industrie-dufutur.org/assets/js/common/article-app.js"></script>            <script src="http://www.industrie-dufutur.org/assets/js/common/wysiwyg-app.js"></script>            <script async defer          src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBVVlELTUkG1aLAOwwdE2rETa1JbArMOa4&callback=googleMap.init">  </script>  </body></html>')
     (src/AppBundle/Controller/FrontController.php:74)
  at AppBundle\Controller\FrontController->documentPDFAction('2323')
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:169)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/index.php:9)
  at {closure}()
     (web/index.php:17)