<?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/"
	>
<channel>
	<title>{curlybracket} &#187; Wordpress</title>
	<atom:link href="http://curlybracket.net/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://curlybracket.net</link>
	<description>Development &#38; Design for digital media</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:56:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>LeitaProd</title>
		<link>http://curlybracket.net/2011/05/16/leitaprod/</link>
		<comments>http://curlybracket.net/2011/05/16/leitaprod/#comments</comments>
		<pubDate>Mon, 16 May 2011 22:04:49 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Javascript/jQuery]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1865</guid>
		<description><![CDATA[LeitaProd est une jeune boîte de production de films publicitaires et de reportages parisienne.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1866" title="leita" src="http://curlybracket.net/wp-content/uploads/2011/05/leita.jpg" alt="" width="850" height="656" /></p>
<p>LeitaProd est une jeune boîte de production de films publicitaires et de reportages parisienne.</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2011/05/16/leitaprod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Vimeo videos to WordPress via extra fields</title>
		<link>http://curlybracket.net/2011/04/13/adding-vimeo-videos-to-wordpress-via-extra-fields/</link>
		<comments>http://curlybracket.net/2011/04/13/adding-vimeo-videos-to-wordpress-via-extra-fields/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 19:57:43 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[vimeo]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1856</guid>
		<description><![CDATA[I wanted an easy solution for people to add videos from Vimeo to their WordPress articles (without having to add them to the editor for several reasons) and I came up with the following: a function to be added to &#8230; <a href="http://curlybracket.net/2011/04/13/adding-vimeo-videos-to-wordpress-via-extra-fields/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wanted an easy solution for people to add videos from Vimeo to their WordPress articles (without having to add them to the editor for several reasons) and I came up with the following:</p>
<ul>
<li>a function to be added to the teme</li>
<li>a piece of code to add to one or more templates(s) of the theme</li>
<li>an extra field to fill in for each post or page by the editor of the website</li>
</ul>
<p><strong>The function</strong></p>
<p>Add this to functions.php in your theme. It is based on the vimeo shortcode plugin for WordPress.</p>
<pre>function insert_vimeo($clip_id) {
   $width = '640';
   $height = '360';
   if (empty($clip_id) || !is_numeric($clip_id)) return '&lt;!-- Vimeo: Invalid clip_id --&gt;';
   if ($height &amp;&amp; !$width) $width = intval($height * 16 / 9);
   if (!$height &amp;&amp; $width) $height = intval($width * 9 / 16);
   return "&lt;iframe src='http://player.vimeo.com/video/$clip_id?title=0&amp;amp;byline=0&amp;amp;portrait=0'
           width='$width' height='$height' frameborder='0'&gt;&lt;/iframe&gt;";
}</pre>
<p><strong>The piece of code for your template :</strong></p>
<p>Put this in single.php or page.php, within the loop.<strong><br />
</strong></p>
<pre>&lt;?php
if ( get_post_meta($post-&gt;ID, 'vimeo', true) ) :
    $vimeo = get_post_meta($post-&gt;ID, 'vimeo', true);
    echo (insert_vimeo($vimeo));
endif;
?&gt;</pre>
<p>Now you just have to add an extra field called &laquo;&nbsp;vimeo&nbsp;&raquo; to your posts or pages and add as a value the ID of the clip, that means the numbers in the URL. If, for example, you want to add the video at <a href="http://vimeo.com/20732587">http://vimeo.com/20732587</a> you would add <em>20732587</em> to the value of your field.</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2011/04/13/adding-vimeo-videos-to-wordpress-via-extra-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JiNOV international</title>
		<link>http://curlybracket.net/2010/12/01/jinov-international/</link>
		<comments>http://curlybracket.net/2010/12/01/jinov-international/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 09:53:39 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1767</guid>
		<description><![CDATA[Réalisation du site web de l&#8217;association JiNOV international.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1768" title="jinov" src="http://curlybracket.net/wp-content/uploads/2010/12/jinov.png" alt="" width="850" height="606" /></p>
<p>Réalisation du site web de l&#8217;association JiNOV international.</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/12/01/jinov-international/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gaudel de Stampa</title>
		<link>http://curlybracket.net/2010/10/17/gaudel-de-stampa/</link>
		<comments>http://curlybracket.net/2010/10/17/gaudel-de-stampa/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 10:58:56 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1543</guid>
		<description><![CDATA[Migration d&#8217;un site statique vers WordPress. Il s&#8217;agit du site de la jeune galerie parisienne Gaudel de Stampa. Le graphisme et le logo ont été conçus par Aline Girard. Migration of a static website to WordPress. The website is the &#8230; <a href="http://curlybracket.net/2010/10/17/gaudel-de-stampa/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://curlybracket.net/wp-content/uploads/2010/09/Bildschirmfoto-Gaudel-de-Stampa-Paris-Dove-Allouche-»-Selected-works-GNU-IceCat.png"><img class="alignnone size-full wp-image-1618" title="Gaudel de Stampa Paris" src="http://curlybracket.net/wp-content/uploads/2010/09/Bildschirmfoto-Gaudel-de-Stampa-Paris-Dove-Allouche-»-Selected-works-GNU-IceCat.png" alt="" width="850" height="458" /></a></p>
<p>Migration d&#8217;un site statique vers WordPress. Il s&#8217;agit du site de la jeune galerie parisienne Gaudel de Stampa. Le graphisme et le logo ont été conçus par Aline Girard.</p>
<p>Migration of a static website to WordPress. The website is the one of the young parisian gallery Gaudel de Stampa. Design and logo are a creation by Aline Girard.</p>
<p>Migration einer statischen Webseite zu WordPress für die junge Pariser Galerie Gaudel de Stampa. Design und Logo wurden konzipiert von Aline Girard.</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/10/17/gaudel-de-stampa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protéger une install WordPress par mot de passe tout en ayant une page de garde accessible</title>
		<link>http://curlybracket.net/2010/09/18/proteger-une-install-wordpress-par-mot-de-passe-tout-en-ayant-une-page-de-garde-accessible/</link>
		<comments>http://curlybracket.net/2010/09/18/proteger-une-install-wordpress-par-mot-de-passe-tout-en-ayant-une-page-de-garde-accessible/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 10:52:53 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1524</guid>
		<description><![CDATA[Avoir une page de garde accessible pour le monde entier pendant qu&#8217;on travaille encore sur un site WordPress installé au même endroit c&#8217;est possible : ajouter un fichier index.html à la racine du site (la page de garde) ajouter un &#8230; <a href="http://curlybracket.net/2010/09/18/proteger-une-install-wordpress-par-mot-de-passe-tout-en-ayant-une-page-de-garde-accessible/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Avoir une page de garde accessible pour le monde entier pendant qu&#8217;on travaille encore sur un site WordPress installé au même endroit c&#8217;est possible :</p>
<ol>
<li>ajouter un fichier index.html à la racine du site (la page de garde)</li>
<li>ajouter un fichier .htpasswd créé auparavant</li>
<li>ajouter un fichier .htaccess (ou compléter celui de WordPress) avec les lignes suivantes :</li>
</ol>
<pre><code>
&lt;FilesMatch "\.(php)$"&gt;
   AuthName "Demande de mot de passe"
   AuthUserFile /the/path/to/.htpasswd
   AuthType basic
   Require valid-user
&lt;/FilesMatch&gt;
&lt;FilesMatch "(index.html)$"&gt;
   Order allow,deny
   allow from all
&lt;/FilesMatch&gt;
</code></pre>
<p>Cela permet d&#8217;accéder au fichier index.html à tout le monde (<em>allow from all</em>), tandis que pour accéder à un fichier .php (et donc à WordPress) il faut entrer un nom et un mot de passe (spécifié dans le fichier .htpasswd).<br />
Le chemin vers le fichier .htpasswd doit être absolu. Pour le trouver , on peut utiliser <a href="http://fr.php.net/manual/fr/function.phpinfo.php">phpinfo()</a>.</p>
<p>Seul souci : on ne peut plus correctement voir la page d&#8217;accueil du site. Pour cela, il faut entrer à la main dans la barre d&#8217;adresse du navigateur : http://example.com/index.php?preview=true</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/09/18/proteger-une-install-wordpress-par-mot-de-passe-tout-en-ayant-une-page-de-garde-accessible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extensions utiles pour WordPress</title>
		<link>http://curlybracket.net/2010/09/07/plugins-utiles-pour-wordpress/</link>
		<comments>http://curlybracket.net/2010/09/07/plugins-utiles-pour-wordpress/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 14:37:29 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1446</guid>
		<description><![CDATA[Voici, pour mémoire, une liste non exhaustive d&#8217;extensions utiles pour WordPress. Performance WP minify compresse les feuilles de style et les scripts WP Super Cache sert des fichiers statiques au format html au lieu de recalculer toutes les pages à &#8230; <a href="http://curlybracket.net/2010/09/07/plugins-utiles-pour-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Voici, pour mémoire, une liste non exhaustive d&#8217;extensions utiles pour WordPress.</p>
<h3>Performance</h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wp-minify/">WP minify</a> compresse les feuilles de style et les scripts</li>
<li><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> sert des fichiers statiques au format html au lieu de recalculer toutes les pages à chaque requête</li>
<li><a href="http://wordpress.org/extend/plugins/wp-avoid-slow/">wp avoid slow</a> ajoute <a href="http://developer.yahoo.com/performance/rules.html#expires"><em>expires headers</em></a> et <a href="http://developer.yahoo.com/performance/rules.html#etags"><em>entity tags</em></a></li>
<li><a href="http://wordpress.org/extend/plugins/gzip-enable/">gzip enable</a> compression au niveau serveur, <a href="http://developer.yahoo.com/performance/rules.html#gzip">sert la page au format gzip</a>, utilise <em>mod_deflate</em></li>
<li><em></em><a href="http://wordpress.org/extend/plugins/wp-jquery-lightbox/">jquery lightbox</a> puisque sur la plupart des sites j&#8217;utilise déjà jQuery, il est plus léger d&#8217;utiliser une extension lightbox basé sur cette librairie plutôt que l&#8217;original qui est basé sur prototype.</li>
</ul>
<h3>Maintenance</h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wp-db-backup/">WP DB backup</a> pour faire une sauvegarde de la base de données, manuellement ou automatiquement toutes les semaines (aussi par e-mail)</li>
</ul>
<h3>Securité</h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/chap-secure-login/">Chap Secure Login</a> s&#8217;authemtifier sur un site WordPress sans HTTPS peut engendrer que des tiers enregistrent ou lisent votre mot de passe. Cette extension sécurise un minimum la transmission du mot de passe, en le chiffrant (MD5). Seul inconvénient : dépend de l&#8217;activation de javascript.</li>
<li><a href="http://wordpress.org/extend/plugins/secure-wordpress/">Secure WordPress</a> enlève notamment l&#8217;information de la version de WP du &lt;head&gt;</li>
</ul>
<p><span id="more-1446"></span><strong></strong></p>
<h3><strong>Référencement</strong></h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">Google XML sitemaps</a> génère un plan du site pour faciliter la tâche aux moteurs de recherche</li>
<li><a href="http://wordpress.org/extend/plugins/basic-seo/">Basic SEO</a> optimise titres &amp; metadonnées (au cas où le thème ne fait pas déjà)</li>
</ul>
<h3>Statistiques des visites<strong><br />
</strong></h3>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wassup/">WassUp</a> permet d&#8217;avoir des statistiques d&#8217;accès au site, en temps réel, avec graphes etc. Surtout utile quand on n&#8217;a pas accès aux logs d&#8217;Apache. Inconvénient : fait grandir la base de données, suivant le nombre de visites plus ou moins rapidement.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/09/07/plugins-utiles-pour-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>simple wp-admin – a plugin to simplify WP’s post editor</title>
		<link>http://curlybracket.net/2010/09/01/simple-wp-admin-plugin/</link>
		<comments>http://curlybracket.net/2010/09/01/simple-wp-admin-plugin/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 12:30:32 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1415</guid>
		<description><![CDATA[This plugin does not do much. It basically just hides most of the detailed options from the editing pages in the wp-admin interface, like post revisions, custom fields and comments. It leaves intact : Title, editor, publication options, tags, categories, &#8230; <a href="http://curlybracket.net/2010/09/01/simple-wp-admin-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This plugin does not do much.<br />
It basically just hides most of the detailed options from the editing pages in the wp-admin interface, like post revisions, custom fields and comments. It leaves intact : Title, editor, publication options, tags, categories, page attributes.</p>
<p><span style="text-decoration: line-through;"> It does not (yet) take into account the user&#8217;s role.</span> This is done for all users except administrators.<span style="text-decoration: line-through;"><br />
</span></p>
<p><strong>Install</strong>: Download, unzip, upload to wp-content/plugins/, go to wp-admin =&gt; plugins and activate.<br />
<strong>Uninstall</strong>: Deactivate the plugin and delete the files.</p>
<p><a href="http://curlybracket.net/wp-content/uploads/2010/09/wp_simple_wpadmin-0.2.zip">Download wp_simple_wpadmin 0.2</a></p>
<p>If you would rather prefer not to install a plugin, you could add a function and two lines of CSS to your site&#8217;s theme as I have first suggested here: <a href="http://curlybracket.net/2010/08/17/less-options-in-wordpress-post-editor/">Less options for WordPress&#8217; post editor</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/09/01/simple-wp-admin-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lison Riess</title>
		<link>http://curlybracket.net/2010/09/01/lison-riess/</link>
		<comments>http://curlybracket.net/2010/09/01/lison-riess/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:22:29 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1318</guid>
		<description><![CDATA[Lison Riess est comédienne voix off, vous avez certainement entendu sa voix dans une publicité ou une bande annonce. Ce site utilise des polices de caractère non standard, du jQuery, des éléments CSS3/HTML5 et propose un graphisme particulièrement original, fait &#8230; <a href="http://curlybracket.net/2010/09/01/lison-riess/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://curlybracket.net/wp-content/uploads/2010/09/lison.png"><img class="alignnone size-full wp-image-1623" title="lison" src="http://curlybracket.net/wp-content/uploads/2010/09/lison.png" alt="" width="850" height="461" /></a></p>
<p><strong>Lison Riess est comédienne voix off, vous avez certainement entendu sa voix dans une publicité ou une bande annonce. Ce site utilise des polices de caractère non standard, du jQuery, des éléments CSS3/HTML5 et propose un graphisme particulièrement original, fait par <a href="http://designexmachina.net/">Aline Girard</a>. J&#8217;ai réalisé et développé ce site.</strong></p>
<p><em>Lison Riess is a voice over artist. Her voice is often to be heard in french advertisements and jingles. This website uses cstom fonts, jQuery, CSS3/HTML5 elements and features a very particular design by <a href="http://designexmachina.net">Aline Girard</a>. I have carried out the development of the website.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/09/01/lison-riess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Less options in WordPress&#8217; post editor</title>
		<link>http://curlybracket.net/2010/08/17/less-options-in-wordpress-post-editor/</link>
		<comments>http://curlybracket.net/2010/08/17/less-options-in-wordpress-post-editor/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 17:32:37 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1323</guid>
		<description><![CDATA[I have been asked several times by clients or collaborators to simplify  the admin interface of WordPress. Which is a problem, as I do not want my modifications to magically disappear at each WordPress update. So, one solution could be &#8230; <a href="http://curlybracket.net/2010/08/17/less-options-in-wordpress-post-editor/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been asked several times by clients or collaborators to simplify  the admin interface of WordPress. Which is a problem, as I do not want my modifications to magically disappear at each WordPress update. So, one solution could be to simply hide the unused elements via CSS. Here is how it works:</p>
<p>First, add a stylesheet, <em>simple-wp-admin.css</em> to ypur theme which basically puts a &laquo;&nbsp;display: none&nbsp;&raquo; on the elements in the the post and page editor you want to hide. These elements are post revisions, comments etc. It contains something like this :</p>
<p><code>#post-body normal-sortables, #post-body #advanced-sortables {<br />
display: none;<br />
}</code></p>
<p>Then add  the following code to<em> functions.php </em>(in the theme folder), which calls the custom stylesheet from the admin interface.<br />
<code><br />
&lt;?php function simplify_admin_interface() {<br />
$url = get_bloginfo('stylesheet_directory') . '/simple-wp-admin.css';<br />
echo '&lt;link rel="stylesheet" type="text/css" href="' . $url . '" /&gt;';<br />
}</code></p>
<p><code>add_action('admin_head', 'simplify_admin_interface');<br />
?&gt;</code></p>
<p>That&#8217;s all.</p>
<p>(One could probably add an option to distinguish the user&#8217;s <a href="http://www.wphardcore.com/2010/ultimate-guide-to-roles-and-capabilities/">role and capabilities</a>, so the advanced options will be hidden only for non administrators. I implemented this in the plugin I finally wrote, <a href="http://curlybracket.net/2010/09/01/simple-wp-admin-plugin">wp_simple_admin</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/08/17/less-options-in-wordpress-post-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress chez 1and1</title>
		<link>http://curlybracket.net/2010/07/19/wordpress-chez-1and1/</link>
		<comments>http://curlybracket.net/2010/07/19/wordpress-chez-1and1/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 16:11:35 +0000</pubDate>
		<dc:creator>rike</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://curlybracket.net/?p=1335</guid>
		<description><![CDATA[Chez 1and1.fr WordPress fonctionne à merveille &#8211; il suffit de dire qu&#8217;on veut utiliser PHP5, et non PHP4, qui est la version de PHP utilisée par défaut sur leurs serveurs. Sans cela, la mise à jour automatique, l&#8217;installation via l&#8217;interface &#8230; <a href="http://curlybracket.net/2010/07/19/wordpress-chez-1and1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Chez 1and1.fr WordPress fonctionne à merveille &#8211; il suffit de dire qu&#8217;on veut utiliser PHP5, et non PHP4, qui est la version de PHP utilisée par défaut sur leurs serveurs. Sans cela, la mise à jour automatique, l&#8217;installation via l&#8217;interface d&#8217;administration d&#8217;extensions et de thèmes et l&#8217;upload de fichiers ne fonctionnent pas correctement.</p>
<p>Il suffit, à la racine de l&#8217;installation WordPress, d&#8217;ajouter un fichier .htaccess (ou d&#8217;ajouter au fichier .htaccess présent) les lignes suivantes :</p>
<p><code>AddType x-mapp-php5 .php<br />
AddHandler x-mapp-php5 .php</code></p>
]]></content:encoded>
			<wfw:commentRss>http://curlybracket.net/2010/07/19/wordpress-chez-1and1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

