<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>[EasyPHP - The WAMP package] - Forum (EasyPHP and Modules : WordPress, Spip, Prestashop, Joomla, Drupal, phpBB, Phorum...) - EasyPHP 1.8</title>
        <description></description>
        <link>http://www.easyphp.org/forums/list/8</link>
        <lastBuildDate>Thu, 09 Sep 2010 23:00:52 +0200</lastBuildDate>
        <generator>Phorum 5.2.14</generator>
        <item>
            <guid>http://www.easyphp.org/forums/8/146986/146986/_subject_#msg-146986</guid>
            <title>easyphp1.8 when login in phpmyadmin lead to error (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/146986/146986/_subject_#msg-146986</link>
            <description><![CDATA[ easyphp1.8 when login in [<a href="http://127.0.0.1/mysql/" rel="nofollow" >127.0.0.1</a>] lead to error  #1045 - Access denied for user 'root'@'localhost' (using password: NO)]]></description>
            <dc:creator>lwy0313432</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 29 Jul 2010 19:49:39 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/146838/146838/_subject_#msg-146838</guid>
            <title>Certain number crashes prime-factoring program (no replies)</title>
            <link>http://www.easyphp.org/forums/8/146838/146838/_subject_#msg-146838</link>
            <description><![CDATA[ This problem only exists with EasyPHP 1.8.<br />
I wrote this program along time ago and I realize my style was very poor.<br />
The program takes an integer ($num) and prime factors it. The numbers 15999 and 2702811 cause the server to crash (apperantly) immediately.<br />
<br />
&lt;?php<br />
print(&quot;Start of program&quot;);<br />
$num = 15989;<br />
$startnum = 1;<br />
if($num == 1){<br />
    print(&quot;1 has no factors&quot;);<br />
    exit;<br />
}<br />
if($num == 0){<br />
    print(&quot;0 has no factors&quot;);<br />
    exit<br />
}else{<br />
    print(&quot;The factors of &quot;.$num.&quot; are:&lt;br /&gt;&quot;);<br />
}<br />
primefind($num, $startnum);<br />
if($num == 0){<br />
    print(&quot;0&quot;);<br />
}<br />
else if($num == 1){<br />
    print(&quot;1&quot;);<br />
}else{<br />
}<br />
function primefind($num, $startnum){<br />
    $primestat = 'f';<br />
    for($counter1 = $startnum; $counter1&lt;=$num; $counter1++){<br />
        for($counter2 = 2; $counter2&lt;$counter1; $counter2++){<br />
            $primecheck = $counter1%$counter2;<br />
            if($primecheck != 0){<br />
                $primestat = 't';<br />
            }else{<br />
                $primestat = 'f';<br />
                break;<br />
            }<br />
        }<br />
        if($primestat == 't'||$counter1 == 2){<br />
            factorcheck($counter1, $num);<br />
            break;<br />
        }<br />
    }<br />
}<br />
function factorcheck($prime, $num){<br />
    $remainder = $num%$prime;<br />
    if($remainder == 0)<br />
    {<br />
        print($prime.'&lt;br /&gt;');<br />
        $startnum = 1;<br />
        primefind(($num/$prime), $startnum);<br />
        //exit;<br />
        return $prime;<br />
    }<br />
    else{<br />
        $prime++;<br />
        primefind($num, $prime);<br />
    }<br />
}<br />
?&gt;]]></description>
            <dc:creator>Jskid</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Tue, 20 Apr 2010 21:35:52 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/146792/146792/_subject_#msg-146792</guid>
            <title>EasyPHP with Exchange 2007 (4 replies)</title>
            <link>http://www.easyphp.org/forums/8/146792/146792/_subject_#msg-146792</link>
            <description><![CDATA[ Hi everyone, I migrated Exchange 2000 to Exchange 2007 and now, when I send an email from my Easyphp application, I receive the email with the full adress name instead of the display name...<br />
<br />
With Exchange 2000: From: Eric Moreau (test)<br />
With Exchange 2007: From: <a href="mailto:&#101;&#114;&#105;&#99;&#46;&#109;&#111;&#114;&#101;&#97;&#117;&#64;&#116;&#101;&#115;&#116;&#46;&#99;&#97;">&#101;&#114;&#105;&#99;&#46;&#109;&#111;&#114;&#101;&#97;&#117;&#64;&#116;&#101;&#115;&#116;&#46;&#99;&#97;</a><br />
<br />
Is there any solution to have the display name with Easyphp 1.8.1 ???<br />
<br />
I'm not the one that have made the application and they all left so I'm stuck with this problem...  And I don't know how EasyPhp works...  But the users want this badly...<br />
<br />
Any help would be appreciated...<br />
<br />
Thanks in advance<br />
<br />
Eric Moreau]]></description>
            <dc:creator>thebart06</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Fri, 16 Apr 2010 18:50:33 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/146559/146559/_subject_#msg-146559</guid>
            <title>Disable &quot;Do you want to regenerate....&quot; (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/146559/146559/_subject_#msg-146559</link>
            <description><![CDATA[ Hello,<br />
<br />
Is it possible to disable the question &quot;The EasyPHP is running from a removable drive. Do you want to regenerate configuration files ?&quot;<br />
<br />
I mean, EasyPHP should regenerate files by itself automatically.<br />
<br />
Thanx,<br />
Mack]]></description>
            <dc:creator>mackensen</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Mon, 22 Feb 2010 08:18:07 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/146387/146387/_subject_#msg-146387</guid>
            <title>Easyphp 1.6 (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/146387/146387/_subject_#msg-146387</link>
            <description><![CDATA[ Pourquoi mes fichiers sur \www\ ne s'affichent pas dans WEB LOCAL après clique droite]]></description>
            <dc:creator>jarry</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 29 Jul 2010 19:50:57 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/146080/146080/_subject_#msg-146080</guid>
            <title>Remote acces (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/146080/146080/_subject_#msg-146080</link>
            <description><![CDATA[ Hello,<br />
can i remote acces mysql database installed with easyphp?<br />
Do i need to make any setup in order to accomplish this?<br />
Thank you!]]></description>
            <dc:creator>juve11</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 29 Jul 2010 19:52:51 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/146074/146074/_subject_#msg-146074</guid>
            <title>Maximum disk space/rows in mysql with easy php (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/146074/146074/_subject_#msg-146074</link>
            <description><![CDATA[ Hello,<br />
i would like to know if EasyPHP has a maximum disk space/ rows available for Mysql database.<br />
<br />
<br />
Thank you]]></description>
            <dc:creator>juve11</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 29 Jul 2010 19:55:01 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145945/145945/_subject_#msg-145945</guid>
            <title>php.ini modifications (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145945/145945/_subject_#msg-145945</link>
            <description><![CDATA[ Hello,<br />
<br />
I need to update allow_call_time_pass_reference to On. Then I look at phpInfo to get the php.ini location. I updated allow_call_time_pass_reference in this file, I saved and restarted easyphp.<br />
When I look at phpInfo, allow_call_time_pass_reference is not changed.<br />
I updated also all the other php.ini files, but no change.<br />
No .htaccess is used.<br />
I also tried to reboot my computer.<br />
Do someone know why my changes are not take in account, and how I can change the php.ini file ?<br />
<br />
I am using easyphp1.8 with windows vista]]></description>
            <dc:creator>emathieu13</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sat, 05 Sep 2009 14:56:57 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145933/145933/_subject_#msg-145933</guid>
            <title>mise à jour site local (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/145933/145933/_subject_#msg-145933</link>
            <description><![CDATA[ Bonjour,<br />
je viens vers vous car je suis en train de réaliser un site qui sera déporté sur des machines locales.<br />
Je m'explique :<br />
Une partie du site se trouvera sur internet et plusieurs utilisateurs auront le site sur leur machine en local avec EasyPhp 1.8<br />
J'ai deux questions :<br />
la première porte sue la mise en place des bases en mode répliquation maître/esclave<br />
la seconde porte sur la mise à jour du site en lui même (pour être sur que tous les  utilisateurs utilisent les même source, un test est réalisé pour connaitre la version du site en local et la version distante), si la distante à été mise à jour, je voudrais pouvoir mettre à jour automatiquement la version locale.<br />
<br />
merci de me dire si je me suis mal exprimé (ce qui est sur)<br />
<br />
en vous remerciant par avance]]></description>
            <dc:creator>a6667</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 29 Jul 2010 19:59:46 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145875/145875/_subject_#msg-145875</guid>
            <title>how to create data-base and user and password ? (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145875/145875/_subject_#msg-145875</link>
            <description><![CDATA[ how to create data-base and user and password ? and how to config theme]]></description>
            <dc:creator>titat4</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sun, 09 Aug 2009 18:50:34 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145817/145817/_subject_#msg-145817</guid>
            <title>Migration de EasyPHP 1.8 vers 3.0 (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145817/145817/_subject_#msg-145817</link>
            <description><![CDATA[ Bonjour,<br />
<br />
Suite à un plantage régulier d'Apache je désire migrer mon serveur EasyPHP de la version 1.8.0.1 vers la version 3.0<br />
<br />
J'ai pas mal de site de société qui tourne sur cette machine (Windows Server 2003 SP2), mais toujours en local, donc je voudrais être certain qu'après la migration j'aurai toujours accès à mes sites...<br />
<br />
Existe-t-il une documentation qui permettrait de m'aider dans les différentes étapes ?<br />
Si non, ou pourrais-je me documenter sur la procédure et les précautions à prendre ?<br />
<br />
Merci pour vos réponses<br />
<br />
Yan]]></description>
            <dc:creator>yan</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Wed, 24 Jun 2009 17:26:41 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145806/145806/_subject_#msg-145806</guid>
            <title>problème avec les dates avec easyPHP 1.8 (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145806/145806/_subject_#msg-145806</link>
            <description><![CDATA[ Bonjour,<br />
<br />
voilà que je me retrouve avec un gros problème sur le site en création et dont je fais les test en local ...<br />
<br />
je tournais avec easyPHP 1.6 et aucun problème sur cela. Depuis je suis passé a easyPHP 1.8 et les dates ne saffiche pas correctement voir ci dessous :<br />
<br />
au lieu de mettre 20/06/2009 14h50 il me marque des - devant : -20-oo-2009 etc ... et quand je remets eaysPHP 1.6 tout refonctionne.<br />
<br />
QQ pourrait il m'aider à résoudre ce problème qui viens certainement du fichier php.ini<br />
<br />
dans l'attente je vous souhaites bon courage à tous]]></description>
            <dc:creator>miramarfun</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sat, 20 Jun 2009 11:39:08 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145798/145798/_subject_#msg-145798</guid>
            <title>Base de données introvable apres mise à jour EasyPhp (URGENT S.V.P.) (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145798/145798/_subject_#msg-145798</link>
            <description><![CDATA[ Bonjour à tous,<br />
<br />
Version: EasyPHP 1.8.0.1 et Joomla 1.5.10<br />
<br />
J'ai des problèmes techniques sur un projet de réalisation de site pour PME auxquelles je sollicite vos réponses, avis, conseils etc.<br />
<br />
Vous le saviez certainement, j'ai installé des sites fonctionnant avec notamment Joomla sous une version de EasyPhp et une mise à jour de EasyPhp s'est faite automatiquement plusieurs semaines après l'intégration du site en local, il se passe une CATASTROPHE: les bases de données disparaissent complètement et enfin à l'ouverture du site dans un navigateur, il ne reste plus que le message d'erreur: &quot;Database Error: Unable to connect to the database:Could not connect to database&quot;.<br />
<br />
En effet, j'avais pensée utiliser la procédure selon laquelle il faudrait EXPORTER via l'interface de PHPMYADMIN le fichier de base de données afin de désinstaller la version EasyPHP mise à jour pour réinstaller l'ancienne version, réinstaller un nouveau site Joomla puis réimporter la base de donnéees. A ma grande surprise, il n'existe plus de base de données dans PHPMYADMIN.<br />
<br />
Comment pensez-vous solutionner le problème.<br />
<br />
Merci d'avance!]]></description>
            <dc:creator>co-inter</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sat, 13 Jun 2009 10:22:19 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145769/145769/_subject_#msg-145769</guid>
            <title>Extension FrontPage avec EasyPhP (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145769/145769/_subject_#msg-145769</link>
            <description><![CDATA[ Bonjour à tous,<br />
Plateforme: serveur windows 2003 R2 SP2 + EasyPhP 1.8.0.0<br />
Intranet Fonctionnel.<br />
Sujet: Dans EasyPhP j'ai créé un 2ème alis pour commencer un autre Intranet. J'utilise FrontPage 2002 pour le développer. J'ai mouliné un truc ou deux déjà sur mon Intranet de Test. Depuis le serveur sur lequel est installé Easy, en localhost cela fonctionne. Depuis les PCs cela fonctionne aussi. Par contre, avec FrontPage, j'ai réalisé un formulaire &quot;&quot;&quot;Contactez-nous&quot;. Lorsque depuis l'IE, je valide l'envoie, l'IE me retourne le message &quot;Composant actif lors de sessions Internet. Vous avez soumis un formulaire ou suivi un lien hypertexte vers une page ne pouvant fonctionner correctement qu'avec un serveur Web doté des extensions serveur FrontPage. Si vous publiez ce site Web sur un serveur Web disposant des extensions serveur FrontPage, ce formulaire ou autre composant FrontPage fonctionnera correctement. Cliquez sur la flèche &lt;Précédente&gt; pour retourner à la page précédente.&quot;&quot;&quot;<br />
Question: Comment puis-je rajouter et/ou valider cette extension pour FrontPage dans EasysPhp ???<br />
Merci beaucoup par avance si quelqu'un possède la réponse !!!<br />
Au revoir et bonne journée]]></description>
            <dc:creator>bouillebouille</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Wed, 29 Apr 2009 14:09:57 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145738/145738/_subject_#msg-145738</guid>
            <title>Apache error message (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/145738/145738/_subject_#msg-145738</link>
            <description><![CDATA[ Hi!<br />
<br />
When I try to open EasyPHP I get the following error message:<br />
<br />
'Apache cannot be runned: another Web server use the Web port or port is blocked by firewall'<br />
<br />
I have tried to shut down the Firewall with no result. Can anyone help me out?<br />
<br />
Cheers <br />
Kasper]]></description>
            <dc:creator>Kasperhm</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 29 Jul 2010 20:11:16 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145697/145697/_subject_#msg-145697</guid>
            <title>erreur Unknown (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145697/145697/_subject_#msg-145697</link>
            <description><![CDATA[ Bonjour<br />
<br />
j'avais jusque là, un code php qui fonctionnait plutôt bien.<br />
Je ne l'ai pas retouché depuis 2 mois ....<br />
Ce matin, je me replonge dans le truc et au lancement j'ai le message suivant :<br />
<br />
Warning: Unknown(mon_fichier_php): failed to open stream: Permission denied in Unknown on line 0<br />
<br />
Warning: (null)(): Failed opening 'mon_fichier_php' for inclusion (include_path='.;C:/Program Files/EasyPHP1-8\php\pear\') in Unknown on line 0<br />
<br />
<br />
D'autre fichiers PHP sont exécutes correctement.<br />
<br />
quel peu bien être le pb ?<br />
<br />
merci de vos aides<br />
<br />
@+<br />
jérome]]></description>
            <dc:creator>saroumane38</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Wed, 25 Mar 2009 17:32:05 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145639/145639/_subject_#msg-145639</guid>
            <title>Warning: getimagesize(image/): failed to open stream: Permission denied avec getimagesize (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145639/145639/_subject_#msg-145639</link>
            <description><![CDATA[ ____________________________________________________________________________<br />
&lt;?php<br />
$num_news=$_GET[&quot;num_news&quot;];<br />
?&gt;<br />
 <br />
&lt;?<br />
$sql_info=&quot;select <br />
news.date_news as date_news,<br />
news.categorie_news as categorie_news,<br />
news.texte_news as texte_news<br />
from news join img on news.num_news=num_img<br />
where news.num_news ='$num_news'<br />
group by news.num_news&quot;;<br />
 <br />
$req_info = mysql_query($sql_info) or die('Erreur SQL !&lt;br&gt;'.$sql_info.'&lt;br&gt;'.mysql_error());<br />
 <br />
	while($data = mysql_fetch_assoc($req_info)) <br />
    { <br />
		echo '&lt;table width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td&gt; '.$data['date_news'].'&lt;/td&gt;&lt;td&gt;'.$data['categorie_news'].'&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;'.$data['texte_news'].'&lt;/td&gt;&lt;/tr&gt;';<br />
	}<br />
 <br />
$sql_img=&quot;select <br />
nom_img<br />
from news join img on news.num_news=img.num_img<br />
where img.num_img ='$num_news'&quot;;<br />
 <br />
$req_img = mysql_query($sql_img) or die('Erreur SQL !&lt;br&gt;'.$sql_img.'&lt;br&gt;'.mysql_error()); <br />
 <br />
list($width, $height, $type, $attr) = getimagesize('image/'.$data['nom_img']);<br />
 <br />
$ratio_width=($width*10/100);<br />
$ratio_height=($height*10/100);<br />
?&gt;<br />
 <br />
 <br />
	&lt;?php <br />
	while($data = mysql_fetch_assoc($req_img)) <br />
    { <br />
	echo '&lt;tr&gt;&lt;td&gt;&lt;a target=&quot;blank&quot; href=&quot;image/'.$data['nom_img'].'&quot;&gt;&lt;img width=&quot;'.$ratio_width.'&quot; height=&quot;'.$ratio_height.'&quot; src=&quot;image/'.$data['nom_img'].'&quot; /&gt; &lt;/a&gt;&lt;/tr&gt;&lt;/td&gt;&lt;/table&gt;';<br />
	}<br />
?&gt;<br />
____________________________________________________________________________<br />
<br />
Bonjour a tous.<br />
<br />
J'ai un problème. Losque j'essaye d'utiliser la fonction getimagesize avec easy 1.8 le message suivant apparait : Warning: getimagesize(image/): failed to open stream: Permission denied.<br />
<br />
Les chemins d'accès sont corrects et j'ai les permissions sur les images. Donc je ne vois plus qu'easy pour me barrer le chemin.<br />
<br />
merci pour votre aide<br />
<br />
<br />
sorry for my bad english<br />
<br />
hello everybody<br />
<br />
i've a problem. When I try  to use function getimagesize with easy1.8, i have a message : Warning: getimagesize(image/): failed to open stream: Permission denied.<br />
<br />
Url(s) haven't any problem and i've all permissions on the pictures.<br />
<br />
thank you for your help]]></description>
            <dc:creator>ledisciple1</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Tue, 10 Feb 2009 13:16:41 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145636/145636/_subject_#msg-145636</guid>
            <title>Réinitialiser easyphp sans perdre les BDD, c'est possible ? (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145636/145636/_subject_#msg-145636</link>
            <description><![CDATA[ Bonjour,<br />
<br />
Savez-vous s'il est possible - et comment ? - de réinitialiser tous les paramètres et fichiers de configuration de easyphp, MAIS sans perdre pour autant nos bases de données crées en local ? Une réinstallation ?<br />
<br />
Si vous vous demandez la raison de cette question, l'explication suit :<br />
<br />
J'ai fait une bêtise en créant un utilisateur dans phpmyadmin puis en essayant de rajouter un mot de passe, ne me demandez pas où je me suis planté, mais désormais il m'est impossible d'ouvrir phpmyadmin, j'ai systématiquement le message d'erreur : <br />
<br />
#1045 - Accès refusé pour l'utilisateur: 'root'@'@localhost' (mot de passe: NON) <br />
<br />
Catastrophe : en local, j'avais fini un TRES gros site prêt à passer en prod, dont toutes les infos de valeur, ce qui représente la vraie valeur du site (2 mois de travail), sont stockées en BDD.<br />
<br />
Des heures d'essais infructueux et de recherches google plus tard, je pense que le mieux serait de pouvoir réinitialiser tout, vu qu'au début ça marchait... Enfin, réinitialiser tout... sauf mes bases de données !<br />
<br />
Merci ENORMEMENT si vous pouvez me filer un coup de main, je prends toutes les suggestions :)<br />
Si vous voulez plus de précisions, n'hésitez pas !<br />
<br />
J'utilise easyphp1.8, sous Windows Vista Home FR.]]></description>
            <dc:creator>sabin</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Mon, 09 Feb 2009 00:51:23 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145545/145545/_subject_#msg-145545</guid>
            <title>bonne config easyphp joomla? (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145545/145545/_subject_#msg-145545</link>
            <description><![CDATA[ Bonjour la communauté et bonne année 2009 à tous toutes.<br />
Joomla v1.5.8 ovh mysql5-10 en localhost easyphp v 1.8.0.1 ? <br />
Uilisateur en easyphp , besoin d’une aide  détaillé pour bonne config et execute d’easyphp+  joomla en local. D’avance merci.<br />
<br />
Je souhaite rapatrier et utiliser sur easyphp  soit,par un dump ou une copie  du doosier de mes fichiers du soite distant par ftp mon site en production et non utiliser easyphp en installant un nouveau script joomla à partir de zéro. (Nombreuses vidéos sur le net très explicites à ce sujet). <br />
<br />
En plaçant les fichiers du ftp dans apache  ou dans le fichier “ www“ je fais le processus ( placer le doisser des fichiers php). Au lancement = erreur ne trouve pas la base mysql, idem si je repeuple mysql avec mon dump, tout les fichiers s’inscrivent à la bonne place, mais impossible d’exécuter,utiliser ensuite le script ?<br />
<br />
En résultat il doit me manquer une bonne manip intermédiaire ? Laquelle?, lesquelles ?, pour jouer le bon adressage joomla que je n’ai pas su trouver...<br />
Si utilisation de Apache mon dossier racine est C:/boiteA, un collègue amateur  averti   de esayphp, à su, lui, le configurer ainsi et le faire fonctionner, après une manip, une correction  que je ne sais pas reproduire, aujourd’hui.<br />
Merci de me votre aide, à tantôt de votre réponse. <br />
<br />
* Si vous avez besoins d’autres infos techniques par rapport à mon Install easyphp, demandez, je vous les dirai.]]></description>
            <dc:creator>bidochon</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sun, 04 Jan 2009 18:35:52 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145535/145535/_subject_#msg-145535</guid>
            <title>Windows Vista (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145535/145535/_subject_#msg-145535</link>
            <description><![CDATA[ Will EasyPHP work with Windows Vista Home Premium?<br />
Thanks]]></description>
            <dc:creator>jean123456</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sun, 21 Dec 2008 23:52:04 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145530/145530/_subject_#msg-145530</guid>
            <title>dotnet (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145530/145530/_subject_#msg-145530</link>
            <description><![CDATA[ how to use .asp n' .aspx?]]></description>
            <dc:creator>conakid</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 18 Dec 2008 18:43:03 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145501/145501/_subject_#msg-145501</guid>
            <title>Cd stage (3 replies)</title>
            <link>http://www.easyphp.org/forums/8/145501/145501/_subject_#msg-145501</link>
            <description><![CDATA[ Bonsoir, <br />
<br />
Je souhaiterais de l'aide pour la création d'un cd (autorun) de démontration, à remettre avec mon rapport de stage. <br />
<br />
Pour cela, j'ai crée une page index.html qui pointe vers les liens de mes sites installés en localhost sur ma machine. <br />
<br />
Ils sont aux nombres de 3. <br />
<br />
Je ne sais pas comment créer ce cd. <br />
<br />
Merci d'avance.<br />
<br />
Configuration: Windows XP<br />
Internet Explorer 6.0 sp2<br />
Easy Php 1.8]]></description>
            <dc:creator>formationfj</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 15 Jan 2009 10:37:24 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145496/145496/_subject_#msg-145496</guid>
            <title>Apache ne démarre plus (4 replies)</title>
            <link>http://www.easyphp.org/forums/8/145496/145496/_subject_#msg-145496</link>
            <description><![CDATA[ Depuis plus d'un an et jusqu'hier soir, j'ai pu utiliser EasyPHP (Apache + MySQL) sans problème. Par contre, depuis ce soir, Apache ne démarre plus, le petit feu reste au rouge après être passé à l'orange très très brièvement mais ne devient jamais vert. Aucun message d'erreur et aucun message dans le log d'Apache qui n'a plus subi de modification depuis plus d'un an.<br />
<br />
Sous Vista...<br />
<br />
Que puis-je faire ? Merci d'avance.]]></description>
            <dc:creator>geoffrey_lepers</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Fri, 26 Dec 2008 18:42:01 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145481/145481/_subject_#msg-145481</guid>
            <title>mysql on 2000 ok, on xp not, why ??? (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/145481/145481/_subject_#msg-145481</link>
            <description><![CDATA[ hello!<br />
<br />
on one pc with win 2000 php_mysql.dll works fine, but on the xp-pc i have a dependency problem. i checked it with dependency walker, but in php extensions it quit stays red.<br />
<br />
who can tell me whats wrong ?<br />
<br />
greetings<br />
michael<br />
vienna]]></description>
            <dc:creator>foto-michi</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Tue, 16 Dec 2008 12:18:18 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145476/145476/_subject_#msg-145476</guid>
            <title>MySQL [Warning] error (3 replies)</title>
            <link>http://www.easyphp.org/forums/8/145476/145476/_subject_#msg-145476</link>
            <description><![CDATA[ I would like to know, how can I fix this error?<br />
Found in mySql error log [EasyPHP 1.8], appears all the time server is starting:<br />
<br />
081105  8:04:49  InnoDB: Started; log sequence number 0 43634<br />
081105  8:04:49 [Warning] mysql.user table is not updated to new password format; Disabling new password usage until mysql_fix_privilege_tables is run<br />
081105  8:04:49 [Warning] Can't open and lock time zone table: Table 'mysql.time_zone_leap_second' doesn't exist trying to live without them<br />
C:\PROGRA~1\EASYPH~1\MySql\bin\mysqld.exe: ready for connections.<br />
Version: '4.1.9-max'  socket: ''  port: 3306  Source distribution]]></description>
            <dc:creator>RPG</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Thu, 15 Jan 2009 10:24:51 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145474/145474/_subject_#msg-145474</guid>
            <title>easyphp with lighttpd (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/145474/145474/_subject_#msg-145474</link>
            <description><![CDATA[ hi am in the process of making a easyphp clone but with lighttpd so what i am asking is is it ok to distribute it under the easyphp name or should i start from scratch and make my own?]]></description>
            <dc:creator>thetooth</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Wed, 05 Nov 2008 20:23:51 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145464/145464/_subject_#msg-145464</guid>
            <title>Ugh Modules (Switching to PHP5) (no replies)</title>
            <link>http://www.easyphp.org/forums/8/145464/145464/_subject_#msg-145464</link>
            <description><![CDATA[ So I switched over to PHP5 and it worked for a while, but after I restarted my server it dies right at the first mysql_connect statement with no explanation. I have the extension=php_mysql.dll line in my configuration file so I have not a clue as to the problem.<br />
<br />
My second problem is that after the first problem I decided to switch back to PHP4 for the time being, so I changed the AddModule and LoadModule lines back and whatnot, and it gave me this error:<br />
<br />
Unknown(): (null): Unable to Initialize Module<br />
Module compiled with module API=20060613 debug=0 thread-safety=1<br />
PHP compiled with module API=20020429 debug=0 thread-safety=1<br />
These options need to match.<br />
<br />
And it fails to work. Any ideas?]]></description>
            <dc:creator>ledi51</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Wed, 22 Oct 2008 13:32:31 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145456/145456/_subject_#msg-145456</guid>
            <title>Utiliser les ports pour apache (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/145456/145456/_subject_#msg-145456</link>
            <description><![CDATA[ Bonjour, je n'arrive pas a utiliser le serveur apache car j'ai le port qui est déjà utiliser et je n'arrive pas à changer<br />
<br />
Que dois-je faire<br />
<br />
aleben]]></description>
            <dc:creator>aleben</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Sat, 18 Oct 2008 13:28:36 +0200</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145455/145455/_subject_#msg-145455</guid>
            <title>Quelles sont les limites d'un serveur Apache + Mysql ? (1 reply)</title>
            <link>http://www.easyphp.org/forums/8/145455/145455/_subject_#msg-145455</link>
            <description><![CDATA[ Bonjour à vous,<br />
<br />
J'utilise des applis flash pour envoyer et recevoir des infos sur une bdd installée sur l'ensemble de easyphp 1.8, le tout sur un réseau dédié et en autarcie. (1 serveur Windows 2003 et des clients win xp)<br />
J'ai 1 base Mysql, qui doit faire maxi 50 mo.<br />
<br />
Sur un réseau de 10-15 PC, tout se passe très bien. Maintenant je suis passé à 60 postes et là les choses se compliquent...<br />
...malgré le fait que le débit réseau sur le serveur soit très léger.<br />
<br />
Je ne sais pas si c'est cela, mais j'ai l'impression que certains appels à des fichiers PHP (puis requetes sql) n'aboutissent tout simplement pas.<br />
<br />
<br />
les questions que je me pose à ce moment sont :<br />
- est-ce que je dois passer sur un serveur linux pour optimiser les performances ?<br />
- l'ensemble easyphp 1.8 sur un windows a-t-il des limites (débit) faciles à atteindre ? ou comment contrôler si les limites sont atteintes ? si le serveur sature ? un serveur Apache peut-il saturer ??<br />
- dois-je passer à un autre système que Easyphp ?<br />
<br />
Je remercie d'avance tous ceux qui pourront m'apporter des éléments de réponse !]]></description>
            <dc:creator>ptimogwai</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Tue, 16 Dec 2008 12:27:00 +0100</pubDate>
        </item>
        <item>
            <guid>http://www.easyphp.org/forums/8/145423/145423/_subject_#msg-145423</guid>
            <title>Augmenter limite upload (2 replies)</title>
            <link>http://www.easyphp.org/forums/8/145423/145423/_subject_#msg-145423</link>
            <description><![CDATA[ Bonjour, pouriez vous me dire comment augmenter la limite de la taille des fichier en upload ?]]></description>
            <dc:creator>lunnatick</dc:creator>
            <category>EasyPHP 1.8</category>
            <pubDate>Tue, 16 Dec 2008 12:29:40 +0100</pubDate>
        </item>
    </channel>
</rss>
