<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Archives des manquant - La programmation sur le web</title>
	<atom:link href="https://programmation.surleweb-france.fr/tag/manquant/feed/" rel="self" type="application/rss+xml" />
	<link>https://programmation.surleweb-france.fr/tag/manquant/</link>
	<description>La programmation gratuite pour tous</description>
	<lastBuildDate>Sat, 05 Mar 2022 17:15:01 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://i0.wp.com/programmation.surleweb-france.fr/wp-content/uploads/2023/08/cropped-19518430-icone-de-programmation-pour-votre-site-web-mobile-presentation-et-conception-de-logo-gratuit-vectoriel.jpg?fit=32%2C32&#038;ssl=1</url>
	<title>Archives des manquant - La programmation sur le web</title>
	<link>https://programmation.surleweb-france.fr/tag/manquant/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">176210735</site>	<item>
		<title>WordPress, Imagick est manquant</title>
		<link>https://programmation.surleweb-france.fr/wordpress-imagick-est-manquant/</link>
					<comments>https://programmation.surleweb-france.fr/wordpress-imagick-est-manquant/#respond</comments>
		
		<dc:creator><![CDATA[Zigomato]]></dc:creator>
		<pubDate>Fri, 01 May 2020 17:15:00 +0000</pubDate>
				<category><![CDATA[Développement Web]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[défaut]]></category>
		<category><![CDATA[erreur]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[imagick]]></category>
		<category><![CDATA[manquant]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://programmation.surleweb-france.fr/?p=69</guid>

					<description><![CDATA[<p>Résolution de l'extension php imagick manquante dans le bilan de santé de WordPress. Quelques lignes pour résoudre des bugs.</p>
<p class="continue-reading-button"> <a class="continue-reading-link" href="https://programmation.surleweb-france.fr/wordpress-imagick-est-manquant/">Continuer la lecture<i class="crycon-right-dir"></i></a></p>
<p>L’article <a href="https://programmation.surleweb-france.fr/wordpress-imagick-est-manquant/">WordPress, Imagick est manquant</a> est apparu en premier sur <a href="https://programmation.surleweb-france.fr">La programmation sur le web</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Imagick est une fameuse extension de PHP pour la création et modification d&rsquo;image qui utilise la librairie ImageMagick. Bien que cette extension de PHP ne soit pas obligatoire, WordPress en a besoin.</p>



<p>En effet, sur l&rsquo;installation récente que j&rsquo;ai effectuée, ce module de php n&rsquo;a pas été installé. Voici la méthode pour :</p>



<ul class="wp-block-list"><li>installer Imagick</li><li>faire disparaître cette recommandation dans l&rsquo;outils de bilan de santé</li><li>Tester l&rsquo;activation</li></ul>



<p>Pour information, je suis sur un serveur auto-hébergé qui tourne sur Ubuntu Server, donc ce qui suit ne concerne pas les utilisateurs de Windows ou MacOs.</p>



<h2 class="wp-block-heading">Installation du paquet</h2>



<p>Cela sera rapide, tu mettras plus de temps à me lire. </p>



<p>Afin que tu puisses utiliser Imagick sur php7,  installes le paquet :</p>



<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">sudo apt-get install php-imagick</pre>



<p>L&rsquo;installation est rapide et ne prend qu&rsquo;une à deux minutes.</p>



<h2 class="wp-block-heading">Vérification de l&rsquo;installation</h2>



<p>Ensuite, toujours dans un terminal, saisies la commande :</p>



<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">php -m | grep imagick</pre>



<p>Dans le terminal, tu dois voir apparaître <em><strong>imagick</strong></em>.</p>



<h2 class="wp-block-heading">Redémarrage du serveur web</h2>



<p>Maintenant, il ne te reste plus qu&rsquo;à redémarrer ton serveur web, dans mon cas, Apache :</p>



<pre class="EnlighterJSRAW" data-enlighter-language="shell" data-enlighter-theme="" data-enlighter-highlight="" data-enlighter-linenumbers="" data-enlighter-lineoffset="" data-enlighter-title="" data-enlighter-group="">sudo service apache2 restart</pre>



<p>Comme résultat de ces petites instructions qui régleront un soucis assez commun vu le nombre de sujet sur différent forum.</p>



<p class="has-small-font-size">Cet astuce a été vu sur <a href="https://ourcodeworld.com/articles/read/645/how-to-install-imagick-for-php-7-in-ubuntu-16-04">ourcodeworld.com</a>.</p>
<p>L’article <a href="https://programmation.surleweb-france.fr/wordpress-imagick-est-manquant/">WordPress, Imagick est manquant</a> est apparu en premier sur <a href="https://programmation.surleweb-france.fr">La programmation sur le web</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://programmation.surleweb-france.fr/wordpress-imagick-est-manquant/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">69</post-id>	</item>
	</channel>
</rss>
