{"id":1473,"date":"2025-07-14T15:19:58","date_gmt":"2025-07-14T18:19:58","guid":{"rendered":"https:\/\/helpsysadmin.com.br\/blog\/?p=1473"},"modified":"2025-11-12T01:36:29","modified_gmt":"2025-11-12T04:36:29","slug":"how-to-compile-php-with-avif-support-on-directadmin-servers","status":"publish","type":"post","link":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/","title":{"rendered":"How to compile PHP with AVIF support on DirectAdmin servers"},"content":{"rendered":"<div id=\"helps-2523105997\" class=\"helps-before-content-2 helps-entity-placement\"><script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-3661896953164277\"\r\n     crossorigin=\"anonymous\"><\/script>\r\n<!-- 2anuncios display quadrado -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:block\"\r\n     data-ad-client=\"ca-pub-3661896953164277\"\r\n     data-ad-slot=\"5051229894\"\r\n     data-ad-format=\"auto\"\r\n     data-full-width-responsive=\"true\"><\/ins>\r\n<script>\r\n     (adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script><\/div>\n<h2 class=\"wp-block-heading\"><a href=\"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/\">AVIF: The Future of Image Compression on the Web<\/a><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In this guide, we will discuss how to compile PHP with AVIF support on DirectAdmin servers.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">AVIF (AV1 Image File Format) is a modern image file format that offers significantly higher compression compared to traditional formats such as JPEG, PNG, and even WebP. AVIF stands out for its ability to drastically reduce image file sizes while maintaining high visual quality, resulting in faster web page loading and lower data consumption.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The GD extension in PHP 8.1 and later versions supports the AVIF image format, enabling the conversion of images to and from AVIF. The GD extension on modern operating systems supported by DirectAdmin, such as CentOS, Rock <a href=\"https:\/\/helpsysadmin.com.br\/blog\/como-instalar-crowdsec\/\" data-internallinksmanager029f6b8e52c=\"1\" title=\"Como instalar Crowdsec\" target=\"_blank\" rel=\"noopener\">Linux<\/a>, AlmaLinux, Ubuntu, and Debian, is already compiled with AVIF support. However, you will need to install some requirements.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ubuntu\/Debian<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>apt install libavif-dev<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>RHEL\/Fedora\/CentOS\/Almalinux\/Rock Linux<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>dnf install libavif-devel<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">After installing the dependencies, PHP can be compiled with AVIF support using the new flag<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8211;with-avif in the .\/configure.phpXX script.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We need to copy the files with the .php8x extension to the \u201c\/usr\/local\/directadmin\/custombuild\/custom\/php\/\u201d folder before updating them. But first, make sure that none of the files are in the custom folder:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls -la \/usr\/local\/directadmin\/custombuild\/custom\/php\/configure.php8*<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">The expected error is:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls: cannot access '\/usr\/local\/directadmin\/custombuild\/custom\/php\/configure.php8*': No such file or directory<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">So, let&#8217;s create the folder and copy the files:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>mkdir -p \/usr\/local\/directadmin\/custombuild\/custom\/php\/ \ncd \/usr\/local\/directadmin\/custombuild\/custom\/php\/ &amp;&amp; cp -vpn \/usr\/local\/directadmin\/custombuild\/configure\/php\/configure.php8{1,2,3,4} .<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Next, we need to correct the copied files:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>cd \/usr\/local\/directadmin\/custombuild\/custom\/php\/ &amp;&amp; perl -pi -e 's\/enable-gd\/enable-gd --with-avif\/' configure.php8{1,2,3,4}<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Now it&#8217;s time to compile php<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>da build php<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">Once PHP has been recompiled, a final test would be to see \u201cAVIF Support => enabled.\u201d<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>php  -i | grep AVIF<\/pre><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">&#8220;:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By following these steps, you will have AVIF support in PHP.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AVIF: The Future of Image Compression on the Web In this guide, we will discuss how to compile PHP with AVIF support [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1464,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1206,1204],"tags":[1223,1409,1411,1211,1213,1217],"class_list":["post-1473","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-server-management","tag-almalinux-en","tag-centos","tag-directadmin","tag-linux-en","tag-linux-server","tag-ubuntu-en-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.9 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to compile PHP with AVIF support on DirectAdmin servers - Blog HelpSysAdmin<\/title>\n<meta name=\"description\" content=\"Blog HelpSysAdmin - How to compile PHP with AVIF support on DirectAdmin servers\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/\" \/>\n<meta property=\"og:locale\" content=\"pt_BR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to compile PHP with AVIF support on DirectAdmin servers\" \/>\n<meta property=\"og:description\" content=\"Blog HelpSysAdmin - How to compile PHP with AVIF support on DirectAdmin servers\" \/>\n<meta property=\"og:url\" content=\"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog HelpSysAdmin\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-14T18:19:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-12T04:36:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/07\/install-avif.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2069\" \/>\n\t<meta property=\"og:image:height\" content=\"1134\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"HelpSysAdmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brhelpsysad\" \/>\n<meta name=\"twitter:site\" content=\"@brhelpsysad\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/\"},\"author\":{\"name\":\"HelpSysAdmin\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/person\\\/bdbe3d7d71a0c6a3cb474c18da574efb\"},\"headline\":\"How to compile PHP with AVIF support on DirectAdmin servers\",\"datePublished\":\"2025-07-14T18:19:58+00:00\",\"dateModified\":\"2025-11-12T04:36:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/\"},\"wordCount\":265,\"publisher\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/07\\/install-avif.png\",\"keywords\":[\"almalinux\",\"centos\",\"DirectAdmin\",\"linux\",\"linux server\",\"ubuntu\"],\"articleSection\":[\"Linux\",\"server management\"],\"inLanguage\":\"pt-BR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/\",\"name\":\"How to compile PHP with AVIF support on DirectAdmin servers - Blog HelpSysAdmin\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/07\\/install-avif.png\",\"datePublished\":\"2025-07-14T18:19:58+00:00\",\"dateModified\":\"2025-11-12T04:36:29+00:00\",\"description\":\"Blog HelpSysAdmin - How to compile PHP with AVIF support on DirectAdmin servers\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#breadcrumb\"},\"inLanguage\":\"pt-BR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#primaryimage\",\"url\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/07\\/install-avif.png\",\"contentUrl\":\"https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2025\\/07\\/install-avif.png\",\"width\":2069,\"height\":1134,\"caption\":\"Como Compilar PHP com suporte a AVIF em servidores DirectAdmin\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/en\\\/how-to-compile-php-with-avif-support-on-directadmin-servers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to compile PHP with AVIF support on DirectAdmin servers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\",\"name\":\"Blog HelpSysAdmin\",\"description\":\"Webserver linux blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\"},\"alternateName\":\"HelpSysAdmin Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-BR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#organization\",\"name\":\"HelpSysAdmin Gerenciamento de Servidores\",\"alternateName\":\"HelpSysAdmin\",\"url\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\/\\/mlkpd8g42nae.i.optimole.com\\/w:512\\/h:512\\/q:mauto\\/f:best\\/https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2020\\/12\\/favicon.png\",\"contentUrl\":\"https:\\/\\/mlkpd8g42nae.i.optimole.com\\/w:512\\/h:512\\/q:mauto\\/f:best\\/https:\\/\\/helpsysadmin.com.br\\/blog\\/wp-content\\/uploads\\/2020\\/12\\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"HelpSysAdmin Gerenciamento de Servidores\"},\"image\":{\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/brhelpsysad\",\"https:\\\/\\\/mastodon.social\\\/@helpsysadmin\"],\"description\":\"Oferecemos o gerenciamento de servidores dedicados, vps ou cloud. Apresentamos a melhor experi\u00eancia em atendimento e servi\u00e7o. Nosso time cuidar\u00e1 do seu servidor com backups, an\u00e1lises constantes, ajustes de seguran\u00e7a, realiza\u00e7\u00e3o de manuten\u00e7\u00e3o preventiva e corretiva, otimiza\u00e7\u00e3o de performance al\u00e9m de monitoramento 24\u00d77 com suporte Pr\u00f3 Ativo.\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/#\\\/schema\\\/person\\\/bdbe3d7d71a0c6a3cb474c18da574efb\",\"name\":\"HelpSysAdmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-BR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g\",\"caption\":\"HelpSysAdmin\"},\"sameAs\":[\"https:\\\/\\\/helpsysadmin.com.br\\\/blog\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to compile PHP with AVIF support on DirectAdmin servers - Blog HelpSysAdmin","description":"Blog HelpSysAdmin - How to compile PHP with AVIF support on DirectAdmin servers","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/","og_locale":"pt_BR","og_type":"article","og_title":"How to compile PHP with AVIF support on DirectAdmin servers","og_description":"Blog HelpSysAdmin - How to compile PHP with AVIF support on DirectAdmin servers","og_url":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/","og_site_name":"Blog HelpSysAdmin","article_published_time":"2025-07-14T18:19:58+00:00","article_modified_time":"2025-11-12T04:36:29+00:00","og_image":[{"width":2069,"height":1134,"url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/07\/install-avif.png","type":"image\/png"}],"author":"HelpSysAdmin","twitter_card":"summary_large_image","twitter_creator":"@brhelpsysad","twitter_site":"@brhelpsysad","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#article","isPartOf":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/"},"author":{"name":"HelpSysAdmin","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/person\/bdbe3d7d71a0c6a3cb474c18da574efb"},"headline":"How to compile PHP with AVIF support on DirectAdmin servers","datePublished":"2025-07-14T18:19:58+00:00","dateModified":"2025-11-12T04:36:29+00:00","mainEntityOfPage":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/"},"wordCount":265,"publisher":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#primaryimage"},"thumbnailUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/07\/install-avif.png","keywords":["almalinux","centos","DirectAdmin","linux","linux server","ubuntu"],"articleSection":["Linux","server management"],"inLanguage":"pt-BR"},{"@type":"WebPage","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/","url":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/","name":"How to compile PHP with AVIF support on DirectAdmin servers - Blog HelpSysAdmin","isPartOf":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#primaryimage"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#primaryimage"},"thumbnailUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/07\/install-avif.png","datePublished":"2025-07-14T18:19:58+00:00","dateModified":"2025-11-12T04:36:29+00:00","description":"Blog HelpSysAdmin - How to compile PHP with AVIF support on DirectAdmin servers","breadcrumb":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#breadcrumb"},"inLanguage":"pt-BR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/"]}]},{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#primaryimage","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/07\/install-avif.png","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:auto\/h:auto\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2025\/07\/install-avif.png","width":2069,"height":1134,"caption":"Como Compilar PHP com suporte a AVIF em servidores DirectAdmin"},{"@type":"BreadcrumbList","@id":"https:\/\/helpsysadmin.com.br\/blog\/en\/how-to-compile-php-with-avif-support-on-directadmin-servers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/helpsysadmin.com.br\/blog\/"},{"@type":"ListItem","position":2,"name":"How to compile PHP with AVIF support on DirectAdmin servers"}]},{"@type":"WebSite","@id":"https:\/\/helpsysadmin.com.br\/blog\/#website","url":"https:\/\/helpsysadmin.com.br\/blog\/","name":"Blog HelpSysAdmin","description":"Webserver linux blog","publisher":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization"},"alternateName":"HelpSysAdmin Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/helpsysadmin.com.br\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-BR"},{"@type":"Organization","@id":"https:\/\/helpsysadmin.com.br\/blog\/#organization","name":"HelpSysAdmin Gerenciamento de Servidores","alternateName":"HelpSysAdmin","url":"https:\/\/helpsysadmin.com.br\/blog\/","logo":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:512\/h:512\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2020\/12\/favicon.png","contentUrl":"https:\/\/mlkpd8g42nae.i.optimole.com\/w:512\/h:512\/q:mauto\/f:best\/https:\/\/helpsysadmin.com.br\/blog\/wp-content\/uploads\/2020\/12\/favicon.png","width":512,"height":512,"caption":"HelpSysAdmin Gerenciamento de Servidores"},"image":{"@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/brhelpsysad","https:\/\/mastodon.social\/@helpsysadmin"],"description":"Oferecemos o gerenciamento de servidores dedicados, vps ou cloud. Apresentamos a melhor experi\u00eancia em atendimento e servi\u00e7o. Nosso time cuidar\u00e1 do seu servidor com backups, an\u00e1lises constantes, ajustes de seguran\u00e7a, realiza\u00e7\u00e3o de manuten\u00e7\u00e3o preventiva e corretiva, otimiza\u00e7\u00e3o de performance al\u00e9m de monitoramento 24\u00d77 com suporte Pr\u00f3 Ativo.","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/helpsysadmin.com.br\/blog\/#\/schema\/person\/bdbe3d7d71a0c6a3cb474c18da574efb","name":"HelpSysAdmin","image":{"@type":"ImageObject","inLanguage":"pt-BR","@id":"https:\/\/secure.gravatar.com\/avatar\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/efc0007e6a313a844b72de257e05c6083b07b6ecc6983a4f71e06293ff2e22fd?s=96&d=mm&r=g","caption":"HelpSysAdmin"},"sameAs":["https:\/\/helpsysadmin.com.br\/blog\/"]}]}},"lang":"en","translations":{"en":1473},"pll_sync_post":{},"_links":{"self":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/1473","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/comments?post=1473"}],"version-history":[{"count":3,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/1473\/revisions"}],"predecessor-version":[{"id":1480,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/posts\/1473\/revisions\/1480"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/media\/1464"}],"wp:attachment":[{"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/media?parent=1473"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/categories?post=1473"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/helpsysadmin.com.br\/blog\/wp-json\/wp\/v2\/tags?post=1473"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}