<?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>My1&#039; Blog : Cloud Computing, Sécurité, Web &#187; mise à jour</title>
	<atom:link href="http://my1.fr/blog/tag/mise-a-jour/feed/" rel="self" type="application/rss+xml" />
	<link>http://my1.fr/blog</link>
	<description>Keep alive !</description>
	<lastBuildDate>Tue, 31 Jan 2012 20:15:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Script minimaliste pour mettre à jour Prestashop</title>
		<link>http://my1.fr/blog/script-minimaliste-pour-mettre-a-jour-prestashop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=script-minimaliste-pour-mettre-a-jour-prestashop</link>
		<comments>http://my1.fr/blog/script-minimaliste-pour-mettre-a-jour-prestashop/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 23:36:17 +0000</pubDate>
		<dc:creator>Emilien</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[mise à jour]]></category>
		<category><![CDATA[prestashop]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://my1.fr/blog/?p=286</guid>
		<description><![CDATA[Parce que chaque mise à jour d&#8217;une boutique Prestashop me provoque à chaque fois 140 pulsations cardiaques par minute, j&#8217;ai décidé de me simplifier la vie et de me créer un petit script qui permet de mettre à jour sa boutique non seulement en toute simplicité, tout en respectant (à quelques détails près) l&#8217;excellente documentation [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-287" title="prestashop" src="http://my1.fr/blog/wp-content/uploads/2011/08/prestashop-300x196.jpg" alt="" width="300" height="196" />Parce que chaque mise à jour d&#8217;une boutique <a title="Site officiel" href="http://www.prestashop.com/fr/">Prestashop</a> me provoque à chaque fois 140 pulsations cardiaques par minute, j&#8217;ai décidé de me simplifier la vie et de me créer un petit script qui permet de mettre à jour sa boutique non seulement en toute simplicité, tout en respectant (à quelques détails près) l&#8217;excellente documentation officielle concernant la mise à jour disponible <a title="Doc Prestashop" href="http://www.prestashop.com/download/PrestaShop-Reference_Guide-Updating_PrestaShop-110530b-fr.pdf">ici</a>.</p>
<p>Certes, le script est &laquo;&nbsp;minimaliste&nbsp;&raquo;, mais efficace.</p>
<p>Certaines actions sont manuelles, soit parce que je n&#8217;ai pas trouvé comment les réaliser en shell ou SQL, soit parce que je suis faignant.</p>
<p>Dans tous les cas, vos retours sont les bienvenus !</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://my1.fr/blog/wp-content/plugins/wp-codebox/wp-codebox.php?p=286&amp;download=upgrade.sh">upgrade.sh</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2862"><td class="code" id="p286code2"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Fonctions :</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> pause<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#123;</span>
   <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #660033;">-p</span> <span style="color: #ff0000;">&quot;$*&quot;</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Definitions des variables :</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Nouvelle version de Prestashop ? Exemple : 1.4.4.0&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">read</span> version_
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Nous allons mettre a jour Prestashop vers la version <span style="color: #007800;">$version</span> !&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Si besoin, creation du repertoire temporaire :</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-f</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>tmp_upgrade <span style="color: #7a0874; font-weight: bold;">&#93;</span> 
	<span style="color: #000000; font-weight: bold;">then</span> <span style="color: #7a0874; font-weight: bold;">continue</span>
	<span style="color: #000000; font-weight: bold;">else</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>tmp_upgrade
<span style="color: #000000; font-weight: bold;">fi</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># 1. Sauvegarde de la boutique actuelle</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Dump SQL</span>
mysqldump <span style="color: #660033;">-h</span> localhost <span style="color: #660033;">-u</span> LOGIN_BDD <span style="color: #660033;">-pPASSWORD</span> NOM_BDD <span style="color: #000000; font-weight: bold;">&amp;</span>gt; BDD.sql
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Dump SQL -&amp;gt; OK&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Archivage et compression des fichiers de la boutique actuelle</span>
<span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-cvzf</span> www.tgz <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique
&nbsp;
<span style="color: #666666; font-style: italic;"># Demander la desactivation manuelle de la boutique :</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
pause <span style="color: #ff0000;">'Desactiver manuellement la boutique, puis appuyer sur Entree'</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Archivage + compression des fichiers -&amp;gt; OK&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Deplacement des sauvegardes vers le repertoire tmp_upgrade</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">*</span>.sql <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>tmp_upgrade<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> www<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>tmp_upgrade<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Les fichiers de sauvegarde sont dans /home/user/tmp_upgrade/&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># 2. Preparation de la nouvelle version</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Creation dossier + telechargement prestashop + decompression :</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.prestashop.com<span style="color: #000000; font-weight: bold;">/</span>download<span style="color: #000000; font-weight: bold;">/</span>prestashop_<span style="color: #007800;">$version</span>
<span style="color: #c20cb9; font-weight: bold;">unzip</span> prestashop<span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>scripts<span style="color: #000000; font-weight: bold;">/</span>prestashop<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>prestashop<span style="color: #000000; font-weight: bold;">*</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Migration des fichiers Prestashop :</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>mails<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>mails<span style="color: #000000; font-weight: bold;">/*</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>img<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>img<span style="color: #000000; font-weight: bold;">/*</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>themes<span style="color: #000000; font-weight: bold;">/</span>MonTheme<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>themes<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Migration des modules ajoutes manuellement :</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>footercustom <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>pm_advancedtopmenu <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>modules<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Migration de la configuration de PS :</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>config<span style="color: #000000; font-weight: bold;">/</span>settings.inc.php <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new<span style="color: #000000; font-weight: bold;">/</span>config<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Sauvegarde de l'ancienne boutique dans un dossier provisoire :</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_old<span style="color: #000000; font-weight: bold;">/</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Renommer le dossier de la mise à jour de PS :</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique_new <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;La mise à jour est prete a etre installee.&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Demander la mise a jour manuelle de la boutique :</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
pause <span style="color: #ff0000;">'Demarrer la mise a jour depuis un navigateur web a l adresse http://www.votre-url.fr/boutique/install puis appuyez sur Entree une fois la procedure terminee.'</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Nettoyage Post-Install</span>
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>CHANGELOG.txt <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>readme<span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">install</span>
<span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>admin <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>boutique<span style="color: #000000; font-weight: bold;">/</span>admin523
&nbsp;
<span style="color: #666666; font-style: italic;"># Demander la mise a jour manuelle du fichier .htaccess :</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
pause <span style="color: #ff0000;">'Regenerez un nouveau fichier .htaccess en reportant bien les anciens parametres de l hebergeur.'</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Demander la reactivation de la boutique :</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
pause <span style="color: #ff0000;">'Reactiver la boutique depuis le back-office.'</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Mise a jour terminee</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;--------------------------------------------------------------------------&quot;</span>
pause <span style="color: #ff0000;">'Mise a jour terminee, place aux tests pour verifier que tout est OK.'</span></pre></td></tr></table></div>

<p>Bien entendu, le script est à modifier selon vos chemins, logins, mots de passe, modules utilisés, etc. Mais surtout selon vos envies !</p>
<p>Ma sauvegarde se fait en live, donc modifier mon script si ma méthode ne vous convient pas.<br />
La documentation conseille plutôt de créer un dossier qui contiendra la nouvelle boutique, et garder l&#8217;ancienne jusqu&#8217;à vérification du bon fonctionnement de la mise-à-jour.</p>
<p>J&#8217;attends vos conseils et remarques !</p>
]]></content:encoded>
			<wfw:commentRss>http://my1.fr/blog/script-minimaliste-pour-mettre-a-jour-prestashop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mise à jour d&#8217;Android sur mon HTC Dream</title>
		<link>http://my1.fr/blog/mise-a-jour-dandroid-sur-mon-htc-dream/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mise-a-jour-dandroid-sur-mon-htc-dream</link>
		<comments>http://my1.fr/blog/mise-a-jour-dandroid-sur-mon-htc-dream/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 23:47:36 +0000</pubDate>
		<dc:creator>Emilien</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Logiciels libres]]></category>
		<category><![CDATA[Dream]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[mise à jour]]></category>
		<category><![CDATA[orange]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[téléphone]]></category>

		<guid isPermaLink="false">http://my1.fr/blog/2010/02/15/mise-a-jour-dandroid-sur-mon-htc-dream/</guid>
		<description><![CDATA[Voilà un certain temps que je l&#8217;attendais&#8230; Non, pas la Saint Valentin (quoi que). La mise à jour d&#8217;Android (1.5 vers 1.8) pour le HTC Dream de chez Orange ! Le fichier est disponible sur le site d&#8217;Orange et la documentation d&#8217;installation aussi. Rien de bien sorcier. Vous branchez le téléphone, lancez l&#8217;exécutable, et suivez [...]]]></description>
			<content:encoded><![CDATA[<p>Voilà un certain temps que je l&#8217;attendais&#8230;</p>
<p>Non, pas la Saint Valentin (quoi que).</p>
<p>La mise à jour d&#8217;Android (1.5 vers 1.8) pour le HTC Dream de chez Orange !</p>
<p>Le <a href="http://animation.orange.fr/maj_mobile/RUU_Dream_Orange_FR_1.86.73.4_release_signed_WithDriver.exe">fichier</a> est disponible sur le site d&#8217;Orange et la <a href="http://touslesmobiles.orange.fr/obj/pdf/HTCDream003_d.pdf">documentation</a> d&#8217;installation aussi.</p>
<p>Rien de bien sorcier.</p>
<p>Vous branchez le téléphone, lancez l&#8217;exécutable, et suivez les instructions.</p>
<p>Petite note intéressante. J&#8217;ai été obligé de booter sur un Windows pour pouvoir exécuter le &laquo;&nbsp;.exe&nbsp;&raquo; (encore une fois on a pas pensé aux linuxiens), mais en plus sous Windows Seven 64 bits, le driver de fonctionne pas. J&#8217;ai été contraint d&#8217;utiliser un autre ordi avec Windows XP. Voilà, donc si vous avez ce problème, soyez rassurés !</p>
<p>Après cette petite aventure, l&#8217;installation se passe très bien (10 minutes environ).</p>
<p>Le redémarrage un peu long, mais il faut être patient parfois.</p>
<p>Forcément, nous sommes obligés de reconfigurer le téléphone, mais rien de bien méchant, avec mon compte Google, mes agendas, mes contacts et mes messages sont restaurés.</p>
<p>L&#8217;interface est retouchée, plus jolie même ! Je me surprends même à la trouver plus fluide. Moins de bugs, et quelques applications en plus ! Un lecteur PDF, une suite bureautique, la fonction Caméscope (enfin !) et quelques autres fonctionnalités supplémentaires (notemment l&#8217;orientation automatique du téléphone et plus de widgets).</p>
<p>Je me sens à nouveau à la page, et vais pouvoir entamer une bonne semaine.</p>
<p><img title="HTC Dream" src="http://high-tech.portail.free.fr/news/16-03-2009/htc-dream-d-orange-incompatible-avec-les-applications-google/htc-google-android.jpg" alt="HTC Dream" /></p>
]]></content:encoded>
			<wfw:commentRss>http://my1.fr/blog/mise-a-jour-dandroid-sur-mon-htc-dream/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

