<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>wamp &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/wamp/</link>
	<description>Feed of posts on WordPress.com tagged "wamp"</description>
	<pubDate>Mon, 28 Dec 2009 18:21:34 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Connect Java with MySql]]></title>
<link>http://technofreaky.wordpress.com/2009/12/16/connect-java-with-mysql/</link>
<pubDate>Wed, 16 Dec 2009 09:47:14 +0000</pubDate>
<dc:creator>technofreaky</dc:creator>
<guid>http://technofreaky.wordpress.com/2009/12/16/connect-java-with-mysql/</guid>
<description><![CDATA[Pre-requisite: 1.Java installed. 2.WAMP(Windows Apache MySql PHP) installed. Few Steps to Connect yo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Pre-requisite:</p>
<p>1.Java installed.</p>
<p>2.WAMP(Windows Apache MySql PHP) installed.</p>
<p>Few Steps to Connect your Java Program with your MySql Backend.</p>
<p>Step 1:</p>
<p>Check that your Computer has Java Installed.</p>
<p>Step 2:</p>
<p>Download the MySql Connection for Java.</p>
<p>Step 3:</p>
<p>Put the downloaded JAR(Java Archive File) in to the location where JavaHome/jdkversion/jre/lib/ext ..</p>
<p>Inside to the ext Directory.</p>
<p>Step 4:</p>
<p>Write Java Code to Connect to the MySql Database.</p>
<p>Sample code to connect Java with MySql.</p>
<p>File:jdbc.java</p>
<div style="background-color:#969a9b;">
import java.sql.*;<br />
class jdbc<br />
{<br />
public static void main(String ar[])<br />
{<br />
try<br />
{<br />
Class.forName (“com.mysql.jdbc.Driver”);<br />
Connection con=DriverManager.getConnection(“jdbc:mysql://127.0.0.1:3306/databasenamehere”,”root”,””);<br />
Statement st=con.createStatement();<br />
ResultSet rs=st.executeQuery(“select * from tablenamehere”);<br />
while(rs.next())<br />
{<br />
System.out.println(rs.getString(1));<br />
System.out.println(rs.getString(2));<br />
}<br />
}<br />
catch(Exception e)<br />
{<br />
System.out.println(“Error occurerd”);<br />
}<br />
}<br />
}
</div>
<p>Step 5:</p>
<p>Compile your Java using javac filename.java.</p>
<p>On the Successful Completion of Java File you will see that the Class file has been created.</p>
<p>Run your Java File using java filename.</p>
<p>You will get Data from the MySql Database.</p>
<p>Feel free to share your comments and your Queries.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WAMP дээр VirtualHost үүсгэх]]></title>
<link>http://xocoo.wordpress.com/2009/12/07/how-to-create-virtualhosts-on-wamp/</link>
<pubDate>Mon, 07 Dec 2009 09:26:20 +0000</pubDate>
<dc:creator>Xocoo</dc:creator>
<guid>http://xocoo.wordpress.com/2009/12/07/how-to-create-virtualhosts-on-wamp/</guid>
<description><![CDATA[WAMP нь Windows, Apache, MySQL, Php гэсэн нэгдэл бөгөөд эдгээр нэгдлийг нэгтгэсэн серверийг эндээс т]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="en.wikipedia.org/wiki/WAMP" target="_blank">WAMP</a> нь Windows, Apache, MySQL, Php гэсэн нэгдэл бөгөөд эдгээр нэгдлийг нэгтгэсэн серверийг <a href="www.wampserver.com/en/" target="_blank">эндээс</a> татаж аваад доорх жишээний дагуу<a href="http://en.wikipedia.org/wiki/Virtual_hosting" target="_blank"> VirtualHost</a> үүсгэж туршиж үзээрэй.</p>
<p>mylocalsite.com гэдэг virtualhost-ыг жишээ болгон үүсгэе.</p>
<ol>
<li>WAMP-ынхаа www фолдерт mylocalsite фолдэрыг үүсгэнэ.<br />
Жишээ нь:<br />
C:\wamp\www\mylocalsite</li>
<li>logs фолдерыг mylocalsite дотроо үүсгэнэ.<br />
C:\wamp\www\mylocalsite\logs</li>
<li>Apache-ын тохиргооны файл болох httpd.conf файлд бага зэрэг засвар хийнэ. Бидний жишээнд бол<br />
C:\wamp\bin\apache\Apache2.2.11\conf\ эндээс файлаа нээгээд<br />
<strong>#Include conf/extra/httpd-vhosts.conf</strong> мөрийг олоод # авах буюу comment биш болгоно.</li>
<li>C:\wamp\bin\apache\Apache2.2.11\conf\extra\httpd-vhosts.conf файлыг нээгээд доорх мөрүүдийг нэмнэ.<br />
<span style="color:#999999;"><em>NameVirtualHost *:80<br />
</em><br />
&#60;VirtualHost *:80&#62;<em> </em>ServerName www.mylocalsite.com<br />
ServerAlias mylocalsite.com mylocalsite www.mylocalsite.com<br />
DocumentRoot C:/wamp/www/mylocalsite/<br />
ErrorLog C:/wamp/www/mylocalsite/logs/error.log<br />
CustomLog C:/wamp/www/mylocalsite/logs/access.log common<em><br />
&#60;/VirtualHost&#62;</em></span><span style="color:#999999;"><br />
</span></p>
<p><span style="color:#999999;"><em>&#60;VirtualHost *:80&#62;<br />
ServerName localhost<br />
DocumentRoot C:/wamp/www<br />
ErrorLog C:/wamp/www/logs/error.log<br />
CustomLog C:/wamp/www/logs/access.log common<br />
&#60;/VirtualHost&#62;</em></span></li>
<li>C:\windows\system32\drivers\etc\ доторх hosts файлыг нээгээд файлын төгсгөлд доорх мөрүүдийг нэмнэ.<br />
<span style="color:#999999;"><em>127.0.0.1       localhost<br />
127.0.0.1    www.mylocalsite.com</em></span></li>
<li>WAMP-аа дахин ачааллана.</li>
<li>Одоо веб толилуур дээрээ <a href="www.mylocalsite.com" target="_blank">www.mylocalsite.com</a> эсвэл <a href="mylocalsite.com" target="_blank">mylocalsite.com</a> эсвэл  <a href="mylocalsite" target="_blank">mylocalsite</a> гээд enter дарахад ид шидийг үзнэ дээ <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to create virtualhosts on WAMP?]]></title>
<link>http://mitulmpatel.wordpress.com/2009/12/05/how-to-create-virualhosts-on-wamp/</link>
<pubDate>Sat, 05 Dec 2009 19:29:30 +0000</pubDate>
<dc:creator>mitulmpatel</dc:creator>
<guid>http://mitulmpatel.wordpress.com/2009/12/05/how-to-create-virualhosts-on-wamp/</guid>
<description><![CDATA[Let me explain virulhosts creation by taking example.  Lets say you want to create an virualhost for]]></description>
<content:encoded><![CDATA[Let me explain virulhosts creation by taking example.  Lets say you want to create an virualhost for]]></content:encoded>
</item>
<item>
<title><![CDATA[Cache me not]]></title>
<link>http://memohnish.wordpress.com/2009/12/03/cache-me-not/</link>
<pubDate>Thu, 03 Dec 2009 07:00:16 +0000</pubDate>
<dc:creator>mohnish ghodekar</dc:creator>
<guid>http://memohnish.wordpress.com/2009/12/03/cache-me-not/</guid>
<description><![CDATA[What does browser caching means? Answer is save a copy of the web page  visited by the browser for a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>What does browser caching means? Answer is save a copy of the web page  visited by the browser for a temporary period.So that any further  access to the same web page does not require the browser to repeatedly collect all the content from the webserver again.But This tends to create problem in case of Dynamic website where content tends to change in minutes time (or even in seconds time).  With browser cache enabled there might be chances that the old content is shown in the same page wheres the previous content has already been updated. There are two ways you can prevent a browser from caching a web page.</p>
<h2>1. Meta tags</h2>
<p>We use the following lines of htl code to prevent the browser from caching.</p>
<p><code>&#60;meta http-equiv="expires" content="Fri, 05 Dec 2008 01:00:00 GMT"/&#62;<br />
&#60;meta http-equiv="pragma" content="no-cache" /&#62;</code></p>
<p>This tells the browser that the cached copy of the we page is already  out of date. hence the on reaching this tag the browser will prevent itself from caching the page. The <i>http-equiv=&#8221;pragma&#8221;</i>  plays the same role but is guaranteed to work on different browsers.</p>
<h2>2. HTTP Headers</h2>
<p>The other way around would be through the dynamic scripting language (like PHP)  header functions (Cache-Control) as shown below.HTTP 1.1 compliant browsers.</p>
<p><code>&#60;?php<br />
header('Expires: </code><code>Fri, 05 Dec 2008 01:00:00</code><code> GMT');<br />
header('Cache-Control: no-store, no-cache, must-revalidate');<br />
header('Cache-Control: post-check=0, pre-check=0', FALSE);<br />
header('Pragma: no-cache');<br />
?&#62;</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WAMP meets Wordpress]]></title>
<link>http://thewebbies.wordpress.com/2009/11/22/wamp-meets-wordpress/</link>
<pubDate>Sun, 22 Nov 2009 21:15:23 +0000</pubDate>
<dc:creator>voicualexandruteodor</dc:creator>
<guid>http://thewebbies.wordpress.com/2009/11/22/wamp-meets-wordpress/</guid>
<description><![CDATA[Dupa numeroase cautari a celei mai simple metode de a crea un blog am ajuns la trei variante: gasit ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dupa numeroase cautari a celei mai simple metode de a crea un blog am ajuns la trei variante:</p>
<ol>
<li>gasit pe net un tutorial cu cod sursa pentru un blog scris in PHP si compania.</li>
<li>folosit un framework de PHP.</li>
<li>folosit wordpress ca tot avem un blog pe el.</li>
</ol>
<p>Dupa cateva search-uri pe google prima varianta a cam cazut, negasind nimic destul de complex (trebuia sa foloseasca si MySQL) si destul de simplu explicat sa priceapa si mintile noastre de n00bs in ale programarii pe web.</p>
<p>Legat de framework-uri de PHP totul suna foarte bine, chiar incepusem sa ne documentam despre care framework ar fi mai bun: <a href="http://www.phpframeworks.com/" target="_blank">http://www.phpframeworks.com</a>, preferatul nostru fiind <a href="http://codeigniter.com/" target="_blank">codeigniter</a>. Chiar vazusem un filmulet: how to create a blog in 20 minutes, pe care chiar as fi vrut sa il vizionez (<a href="http://codeigniter.com/tutorials/watch/blog/" target="_blank">http://codeigniter.com/tutorials/watch/blog/</a>).  Aici aveam insa mici dubii cu privire la necesitatea sau nu a acestui framework pe serverul de PHP (inca nu m-am lamurit).</p>
<p>Astazi insa am dat peste un blog foarte frumos realizat de catre colegii nostri de la <a title="Tips and tricks pentru studentii de la Calculatoare UPB" href="http://qwertyrus.wordpress.com/" target="_blank">qwerty</a>: <a href="http://cstips.info/" target="_blank">http://cstips.info/</a>. Am discutat cu ei si am aflat ca au plecat de la un blog de wordpress (care se poate downloada de <a href="http://wordpress.org/download/" target="_blank">aici</a>) pe care l-au pus si integrat foarte rapid pe serverul care le face host-ing, si au putut sa isi configureze aspectul blogului si anumite accesorii din ele cum au vrut (doar aveau codul sursa la dispozitie acum).</p>
<p>Asa ca ne-am gandit si noi ca ar fi o idee foarte buna sa pastram CMS celor de la WordPress si sa trecem pe &#8220;versiunea .org&#8221;. Pe langa codul sursa la care avem acces, acum am citit pe net si de existenta a numeroase teme care pot fi integrate usor pe wordpress.org si a Plugins care apare la setarile blogului pentru admin.</p>
<p>Nerabdatori sa incercam noua descoperire, si dat fiind faptul ca nu aveam inca suport de MySQL pe server (ne lipseste doar baza de date din cate am intels, serverul/daemonul este instalat), am incercat (si reusit) sa integram acest blog nou de WordPress cu serverul de WAMP instalat local, rezultand un blog host-uit local (si private) de moi.</p>
<p>Setarea unui blog de WordPress se face foarte usor (<a href="http://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install" target="_blank">5 minute</a>) de indata ce ai cateva detalii despre baza de date pe care o vei folosi. Aici treaba a fost putin complicata pana m-am prins la ce e bun utilitarul phpmyadmin care vine pe langa PHP, MySQL si Apache Server instaland WAMP. Din phpmyadmin se poate crea o noua baza de date si seta un user si password pe aceasta (exact ce trebuie pentru setarea blogului de WordPress). Apoi dupa un copy-paste in directorul www, gata blog-ul, care nu mai depinde de wordpress (putem modifica fisierele .CSS si .php astfel incat sa adaugam ce functionalitati consideram noi ca ar mai trebuie sa aveam in plus sau in minus).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mokojoe]]></title>
<link>http://wherearemypics.com/2009/11/22/mokojoe/</link>
<pubDate>Sun, 22 Nov 2009 03:00:41 +0000</pubDate>
<dc:creator>wherearemypics</dc:creator>
<guid>http://wherearemypics.com/2009/11/22/mokojoe/</guid>
<description><![CDATA[Particular, Porto Alegre, RS Acesse nosso SITE | FOTOLOG | ORKUT | TWITTER]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#f9c424;">Particular, Porto Alegre, RS</span></p>
<p>Acesse nosso <a title="WAMP no WordPress" href="http://www.wherearemypics.com/">SITE </a>&#124; <a title="WAMP no Fotolog" href="http://www.fotolog.com.br/wherearemypics">FOTOLOG </a>&#124; <a title="WAMP no Orkut" href="http://www.orkut.com.br/Main#Community.aspx?cmm=73939821">ORKUT </a>&#124; <a title="WAMP no Twitter" href="http://www.twitter.com/giulianocecatto">TWITTER </a></p>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Danilo Gentili]]></title>
<link>http://wherearemypics.com/2009/11/21/danilo-gentili/</link>
<pubDate>Sat, 21 Nov 2009 03:00:39 +0000</pubDate>
<dc:creator>wherearemypics</dc:creator>
<guid>http://wherearemypics.com/2009/11/21/danilo-gentili/</guid>
<description><![CDATA[Teatro da PUC, Porto Alegre, RS Acesse nosso SITE | FOTOLOG | ORKUT | TWITTER]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#f9c424;">Teatro da PUC, Porto Alegre, RS</span></p>
<p>Acesse nosso <a title="WAMP no WordPress" href="http://www.wherearemypics.com/">SITE </a>&#124; <a title="WAMP no Fotolog" href="http://www.fotolog.com.br/wherearemypics">FOTOLOG </a>&#124; <a title="WAMP no Orkut" href="http://www.orkut.com.br/Main#Community.aspx?cmm=73939821">ORKUT </a>&#124; <a title="WAMP no Twitter" href="http://www.twitter.com/giulianocecatto">TWITTER </a></p>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LocaL Hosta Vbulletin Kurulumu]]></title>
<link>http://bycr4zy.wordpress.com/2009/11/19/vbulletine-local-host-kurulumu/</link>
<pubDate>Thu, 19 Nov 2009 15:33:29 +0000</pubDate>
<dc:creator>bycr4zy</dc:creator>
<guid>http://bycr4zy.wordpress.com/2009/11/19/vbulletine-local-host-kurulumu/</guid>
<description><![CDATA[VB yi localde tasarlarken arkadaşlar hep aa nası locale vb kurdun gibi sinden basit sorular soruyola]]></description>
<content:encoded><![CDATA[VB yi localde tasarlarken arkadaşlar hep aa nası locale vb kurdun gibi sinden basit sorular soruyola]]></content:encoded>
</item>
<item>
<title><![CDATA[Tehnologii folosite (II)]]></title>
<link>http://thewebbies.wordpress.com/2009/11/17/tehnologii-folosite-ii/</link>
<pubDate>Tue, 17 Nov 2009 08:55:41 +0000</pubDate>
<dc:creator>voicualexandruteodor</dc:creator>
<guid>http://thewebbies.wordpress.com/2009/11/17/tehnologii-folosite-ii/</guid>
<description><![CDATA[Cea mai buna solutie pentru a putea lucara in paralel la dezvolatarea site-ului, o consideram a fi f]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Cea mai buna solutie pentru a putea lucara in paralel la dezvolatarea site-ului, o consideram a fi folosirea SVN, si instalarea pe sistem local a unui server de Apache, PHP si MySQL. Deoarece acestea sunt printre cele mai populare optiuni exista niste programe care permit instalarea si configurarea comuna a acestor trei utilitare. Voi prezenta in continuare doua dintre ele destinate sistemului de operare Windows.</p>
<p>Primul este <a href="http://www.easyphp.org/" target="_blank">Easy PHP</a>, care are diferite versiuni denumite dupa veriunea de PHP pe care o instaleaza. Astfel veriunea recomandata 5.3.0 contine PHP 5.3.0, Apache 2.2.13 si MySQL 5.1.37 (versiunile de Apache si MySQL sunt in principiu aceleasi pentru toate distributiile). De asemena acest pachet mai contine si PhpMyAdmin 3.2.1 destinat administrarii MySQL pentru web.</p>
<p><a href="http://www.wampserver.com/en/" target="_blank">WAMP </a>(Windows Apache MySQL PHP) este utiliarul care personal mi s-a parut mai bun, deoarece pe langa faptul ca instaleaza veriuni destul de recente pentru cele trei ultilitare:  Apache 2.2.11,  MySQL 5.1.36, PHP 5.3.0 permite utilizatorului sa instaleze si versiuni mai noi pentru fiecare utilitar in parte. De asemenea folosind WAMP am reusit sa imi configurez serverul de Apache sa asculte pe 8080 (portul 80 era deja ocupat si nu prea am reusit sa vad de cine: netstat -o), in timp ce Easy PHP nu prea se intelegea prea bine cu faptul ca Windows 7 nu te lasa sa modifici fisiere din Program Files daca nu iti pui drepturi pe ele (eventual change owner).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Biggest ever online painting competition?]]></title>
<link>http://sheffieldirregulars.wordpress.com/2009/11/16/biggest-ever-online-painting-competition/</link>
<pubDate>Mon, 16 Nov 2009 19:35:26 +0000</pubDate>
<dc:creator>sheffieldirregulars</dc:creator>
<guid>http://sheffieldirregulars.wordpress.com/2009/11/16/biggest-ever-online-painting-competition/</guid>
<description><![CDATA[As a member of WAMP, and as a miniature painter, I am delighted to let you all know about this fanta]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://wamp-forum.com/phpBB2/viewtopic.php?t=1733"><img class="alignnone" title="Wamp comp" src="http://i833.photobucket.com/albums/zz252/wamp-forum/banner2.gif" alt="" width="468" height="60" /></a></p>
<p>As a member of WAMP, and as a miniature painter, I am delighted to let you all know about this fantastic event organised by Brett Johnson of WAMP.</p>
<blockquote><p>Over at <a title="Wamp - a friendly place to improve your painting" href="http://wamp-forum.com" target="_blank">Wamp</a> we decided for our charity event this year we would think big. So to raise money for <a title="Tommy's charity" href="http://tommys.org/wamp" target="_blank">Tommy&#8217;s</a> a charity that helps prevent miscarriages and stillbirth we created what we believe is the <strong>largest online miniature painting contest ever!</strong><br />
We have a prize fund that currently sits at £1550!! and is growing all the time! Best in show winner will receive a prize pot worth over £300 including, cash, miniatures,bases, brushes and store credit at a several suppliers.<br />
You can enter anything you like &#8211; the only stipulation is that you auction any entry and donate it to the campaign.<br />
You can enter as many times as you like.<br />
To find out more and see the up to date prize list and categories please visit <a title="Little Angels prizes and categories" href="http://www.wamp-forum.com/phpBB2/viewtopic.php?t=1733" target="_blank">Little Angels</a>.<br />
Please help support this cause by entering or donating a prize for the contest, putting a link in your forum sigs, even just spreading the word or donating cash &#8211; it all helps.</p>
<p><!--more--><br />
If you can post this announcement where you can forums, your own site etc. maybe you know a company that could help us out too.<br />
If you can help or have any questions then contact me <a href="mailto:brett.johnson@mypostoffice.co.uk">brett.johnson@mypostoffice.co.uk</a><br />
thanks,<br />
Brett</p></blockquote>
<p>Some of you may have met Brett at IMP this summer, he won the Best in Show trophy with his beastman entry. He is a dedicated hobbyist, and this is a cause close to his heart.</p>
<p>This painting competition is open to EVERYONE, and it&#8217;s not just figures you can enter scenery too! The deadline is Feb 14th 2010, so there is plenty of time to dig out some old models you are happy to part with, or paint up some new ones. YES, that&#8217;s right! You can enter OLD models, even if they&#8217;ve won prizes in competitions in the past!</p>
<p>Think you&#8217;re not good enough? This competition has so many prizes it&#8217;s scary! There are random prizes that will be awarded to a lucky few who HAVEN&#8217;T won prizes already &#8211; there is even a prize for the entry with the lowest auction price!</p>
<p>Can you think of a reason NOT to enter?</p>
<p><strong>It would be awesome to pool resources and see how much Sheffield Irregulars members have raised for this comp &#8211; so if you are able to auction models on behalf of others, either online,  or at a real life venue, get in touch!</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Installing WordPress Locally Using WampServer]]></title>
<link>http://wordpress.tv/2009/11/12/installing-wordpress-locally-using-wampserver/</link>
<pubDate>Thu, 12 Nov 2009 05:40:00 +0000</pubDate>
<dc:creator>Ryan Markel</dc:creator>
<guid>http://wordpress.tv/2009/11/12/installing-wordpress-locally-using-wampserver/</guid>
<description><![CDATA[WordPress video]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><span id='plh-loop-video-embed-0' class='hidden'>done</span><ins style='text-decoration:none;'>
<div class='video-player' id='x-video-0'>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="224" id="video-0" standby="">
  <param name="movie" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.11" />
  <param name="quality" value="best" />
  <param name="seamlesstabbing" value="true" />
  <param name="allowfullscreen" value="true" />
  <param name="allowscriptaccess" value="always" />
  <param name="overstretch" value="true" />
  <param name="flashvars" value="guid=ejd3ak8p&amp;javascriptid=video-0&amp;width=400&amp;height=224&amp;locksize=no" />
  <!--[if !IE]>-->
  <object type="application/x-shockwave-flash" data="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.11" width="400" height="224" standby="">
    <param name="quality" value="best" />
    <param name="seamlesstabbing" value="true" />
    <param name="allowfullscreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <param name="overstretch" value="true" />
    <param name="flashvars" value="guid=ejd3ak8p&amp;javascriptid=video-0&amp;width=400&amp;height=224&amp;locksize=no" />
  <!--<![endif]-->
  <img alt="" src="http://cdn.videos.wordpress.com/ejd3ak8p/installwordpresslocally_html_std.original.jpg" width="400" height="224" /><p><strong></strong></p><p>This movie requires <a rel="nofollow" href="http://www.adobe.com/go/getflashplayer">Adobe Flash</a> for playback.</p>
  <!--[if !IE]>-->
  </object>
  <!--<![endif]-->
</object></div></ins>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Setting PHP Informix di windows]]></title>
<link>http://umaraffandhi.wordpress.com/2009/11/11/setting-php-informix-di-windows/</link>
<pubDate>Wed, 11 Nov 2009 22:18:17 +0000</pubDate>
<dc:creator>umaraffandhi</dc:creator>
<guid>http://umaraffandhi.wordpress.com/2009/11/11/setting-php-informix-di-windows/</guid>
<description><![CDATA[Kebetulan kemaren dapet jatah ngajar PHP + Informix. Akhirnya coba2 di virtual mulai dari install, s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Kebetulan kemaren dapet jatah ngajar PHP + Informix. Akhirnya coba2 di virtual mulai dari install, sampe konfigurasinya. Sempet tanya2 karena nemu beberapa pesen, yah, kalo gak mau dibilang error yang muncul.</p>
<p>1. Tahap pertama, Install windows server 2003 di Virtual PC.<br />
2. Langkah berikutnya, Install WampServer 2.0 / Wamp 5.<br />
3. Install Informix. Untuk versi trial, atau versi gratis nya, bisa coba download di sini: <a href="http://www.ibm.com/software/data/informix">http://www.ibm.com/software/data/informix</a>. Buat proses instalasi informix, bisa dilihat di sini.<br />
Untuk kasus di sini, kita sudah memiliki 1 instance Informix, namanya <strong>svr_informix</strong>. User name buat akses nya: <strong>user</strong>, Password nya: <strong>password</strong>. Dan sudah tersedia sebuah Database dengan nama <strong>DBSipeg</strong>, dengan beberapa tabel di dalamnya.<br />
4. Install CSDK &#8211; Client SDK punya nya Informix, bisa download di <a title="Informix CSDK" href="http://www-01.ibm.com/software/data/informix/tools/csdk/">sini</a>.<br />
5. Setting Environment Variables: Klik kanan My Computer &#62; Properties. Di Tab Advance &#62; Klik tombol Environment Variables. Klik New di bagian System Variables. Pada kotak Variable Name isikan: <strong>INFORMIXSERVER</strong>. Pada kotak Variable Value, isikan nama server, <strong>svr_informix</strong>.<br />
6. Pastiin PHP extension dengan nama <strong>php_ifx</strong> udah di aktifin. Itu berarti file php_ifx.dll harus udah ada di folder ext dari program PHP, dan di file php.ini, di depan deklarasi <strong>extension=php_ifx.dll</strong> gak lagi dikasi tanda &#8220;;&#8221;.<br />
7. Entah ada pengaruhnya ato gak, saya juga set di file php.ini, di bagian [Informix], saya tambahin keterangan di: <strong>ifx.default_host = svr_informix</strong>.</p>
<p>Abis itu, coba buat koneksi ke Informix nya dari PHP.</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to install pear packages on WAMP/window? ]]></title>
<link>http://mitulmpatel.wordpress.com/2009/11/10/how-to-install-pear-packages-on-wampwindow/</link>
<pubDate>Tue, 10 Nov 2009 10:10:46 +0000</pubDate>
<dc:creator>mitulmpatel</dc:creator>
<guid>http://mitulmpatel.wordpress.com/2009/11/10/how-to-install-pear-packages-on-wampwindow/</guid>
<description><![CDATA[Follow following steps to install any pear package on window using WAMP architecture: Go to command ]]></description>
<content:encoded><![CDATA[Follow following steps to install any pear package on window using WAMP architecture: Go to command ]]></content:encoded>
</item>
<item>
<title><![CDATA[Republican Gubernatorial Candidates Speak on Education]]></title>
<link>http://nashvillejefferson.wordpress.com/2009/11/08/reagan-day-dinner-in-dyersburg/</link>
<pubDate>Sun, 08 Nov 2009 23:09:26 +0000</pubDate>
<dc:creator>nashvillejefferson</dc:creator>
<guid>http://nashvillejefferson.wordpress.com/2009/11/08/reagan-day-dinner-in-dyersburg/</guid>
<description><![CDATA[Republican candidates for Governor (as well as for the 8th District congressional seat) spoke on a n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Republican candidates for Governor (as well as for the 8th District congressional seat) spoke on a number of issues, education included, at the annual Reagan Day Dinner in Dyersburg, TN yesterday (via the <a href="http://www.stategazette.com/story/1585387.html">Dyersburg State Gazette</a>; h/t <a href="http://politics.nashvillepost.com/2009/11/08/the-man-who-wants-to-take-down-john-tanner/">Kleinheider</a>):</p>
<p>Zach Wamp (spoken for by Maj. Gen. Dan Wood):</p>
<blockquote><p>&#8220;Bottom line is if we have better schools, we have better education,&#8221; said Wood. &#8220;Our young men and women have a chance to financially improve their situation. If they improve their situation, they make more money, they spend more money and in essence that helps the entire state.&#8221;</p></blockquote>
<p>Bill Gibbons:</p>
<blockquote><p>&#8220;I&#8217;ll be a governor who encourages more of our best and brighter to become teachers and then rewards good teachers and makes it easier to get rid of the teachers who aren&#8217;t that good,&#8221; said Gibbons. &#8220;I&#8217;ll make it easier for retirees to choose teaching as a second career if they would like to do that.&#8221;</p></blockquote>
<p>Bill Haslam:</p>
<blockquote><p>Haslam outlined five priorities for districts and schools in Tennessee:</p>
<ol>
<li>Raise standards</li>
<li>Increase training for local principals and give them more authority</li>
<li>Create a strategy for great teachers</li>
<li>Use data</li>
<li>Expand parental choice through charters and home schooling</li>
</ol>
</blockquote>
<p>Ron Ramsey (who <a href="http://www.knoxnews.com/news/2009/nov/07/ramsey-picked-straw-poll-reagan-day-dinner/">won the straw poll</a> for governor taken at the dinner):</p>
<blockquote><p>&#8220;There&#8217;s nothing better than competition. If I was [sic] the only surveyor and only auctioneer in Northeast Tennessee I could provide a lousy service and charge whatever I wanted to for it. That&#8217;s exactly what&#8217;s happening in some public schools in Tennessee. It&#8217;s a monopoly that needs to be broken.&#8221;</p>
<p>Ramsey said he was a huge advocate for charter schools and home schooling. He said when parents have their children trapped in failing schools, they deserve the right to send them somewhere else.</p>
<p>He also said he would put home-school test scores against any others in the state.</p>
<p>&#8220;When parents take the time to educate kids they will do a good job every time,&#8221; said Ramsey.</p></blockquote>
<p>All fine and dandy, but what&#8217;s with the focus on home-schooling?  I would think the generally pro-market republicans would recognize that if we all had to stay home to educate our children (aside from whether we would do a good job &#8212; some would and some wouldn&#8217;t), it would bring our economy to a <strong>screeching halt</strong>.  Other than that, no real news here &#8212; lots of well-ridden hobbyhorses like choice and charters.  Good on Haslam, though, for pointing out that principals need more training (he needs to elaborate on what kind of training) and to mention the need to use data.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Darvin e Scracho]]></title>
<link>http://wherearemypics.com/2009/11/07/darvin-e-scracho/</link>
<pubDate>Sat, 07 Nov 2009 03:01:52 +0000</pubDate>
<dc:creator>wherearemypics</dc:creator>
<guid>http://wherearemypics.com/2009/11/07/darvin-e-scracho/</guid>
<description><![CDATA[HD Sport Center, Porto Alegre, RS Acesse nosso SITE | FOTOLOG | ORKUT | TWITTER]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#f9c424;">HD Sport Center, Porto Alegre, RS</span></p>
<p>Acesse nosso <a title="WAMP no WordPress" href="http://www.wherearemypics.com/">SITE </a>&#124; <a title="WAMP no Fotolog" href="http://www.fotolog.com.br/wherearemypics">FOTOLOG </a>&#124; <a title="WAMP no Orkut" href="http://www.orkut.com.br/Main#Community.aspx?cmm=73939821">ORKUT </a>&#124; <a title="WAMP no Twitter" href="http://www.twitter.com/giulianocecatto">TWITTER </a></p>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aniversário da Monique]]></title>
<link>http://wherearemypics.com/2009/11/07/aniversario-da-monique/</link>
<pubDate>Sat, 07 Nov 2009 03:00:23 +0000</pubDate>
<dc:creator>wherearemypics</dc:creator>
<guid>http://wherearemypics.com/2009/11/07/aniversario-da-monique/</guid>
<description><![CDATA[Particular, Porto Alegre, RS Acesse nosso SITE | FOTOLOG | ORKUT | TWITTER]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#f9c424;">Particular, Porto Alegre, RS</span></p>
<p>Acesse nosso <a title="WAMP no WordPress" href="http://www.wherearemypics.com/">SITE </a>&#124; <a title="WAMP no Fotolog" href="http://www.fotolog.com.br/wherearemypics">FOTOLOG </a>&#124; <a title="WAMP no Orkut" href="http://www.orkut.com.br/Main#Community.aspx?cmm=73939821">ORKUT </a>&#124; <a title="WAMP no Twitter" href="http://www.twitter.com/giulianocecatto">TWITTER </a></p>

<p><img style="border:1px solid blue;z-index:90;position:absolute;left:28px;top:33px;" src="//dictionarytip/skin/book.png" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What Will Today's Elections Mean to Tennessee?]]></title>
<link>http://thecoolestgeneration.wordpress.com/2009/11/03/todays-elections-mean-tennesse/</link>
<pubDate>Wed, 04 Nov 2009 02:01:01 +0000</pubDate>
<dc:creator>robertasburyrussell</dc:creator>
<guid>http://thecoolestgeneration.wordpress.com/2009/11/03/todays-elections-mean-tennesse/</guid>
<description><![CDATA[With no elections in our state today, I quite literally don&#8217;t have a horse in this race. Howev]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>With no elections in our state today, I quite literally don&#8217;t have a horse in this race. However, living close to the Virginia border we&#8217;ve been inundated with TV commercials for <a href="http://www.wset.com/news/stories/1109/674272.html" target="_blank">Bob McDonnell and Creigh Deeds</a>, locked in an unnecessarily awful Governor&#8217;s race that seems to presage what we&#8217;ll be seeing next fall in Tennessee.<br />
<a href="http://www.wset.com/news/stories/1109/674741.html" target="_blank">Poll numbers have shown McDonnell way ahead in terms of committed voters</a>, but with a significant block of uncommitteds left to be swayed. McDonnell has the money to not have to risk it, so he&#8217;s poured millions into negative attack ads which may (but probably won&#8217;t) turn these uncommitteds either toward him, away from him, or more likely, away from the polls entirely.<br />
So, what does this mean for politics in Tennessee? What are the parallels that can give us a glimpse of fall &#8216;10?</p>
<p>Well, first off, like Virginia we&#8217;ve had a successful and popular Democrat in the executive role for the past 8 years (TN = Phil Bredesen, two terms; VA = Mark Warner and Tim Kahne, back-to-back single terms &#8212; VA governors can&#8217;t run for re-election), and like VA, it is considered almost a given that TN&#8217;s next Governor will be a Republican.</p>
<p>Why? Two facts: there is no popular, incumbent Democrat running; and the mood of these &#8220;border&#8221; states got redder during/after the Presidential election of &#8216;08. Probably because of this fact, the Democratic candidates for Governor in Tennessee have kept a remarkably low profile, hoping that the Republicans will simply tear each other apart and the remaining Dem will be able to make a decent showing as a result. This didn&#8217;t seem to work for Deeds; I don&#8217;t see how it could possibly work for <a href="http://www.tndp.org/page/governor-2" target="_blank">Tennessee&#8217;s zero-name-recognition cast of Democratic hopefuls.</a></p>
<p>While Dems can expect more than a half-hearted attempt at keeping the Governor&#8217;s mansion by the new blood that&#8217;s running things at TDP HQ, like McDonnell, the Repubs running in TN will have a lot of money to throw around. Millionaire Knoxville Mayor Bill Haslam will spend all he can to get the nod against Wamp and Ramsey, who have Tea Partiers and church-going folks creaming in their, uh, slacks.</p>
<p>Whoever wins the nod (I&#8217;m betting on Haslam; money is usually the deciding factor in these primary contests, and <a href="http://politics.nashvillepost.com/2009/10/10/wamp-ramsey-made-a-foolish-comment/" target="_blank">Ramsey &#38; Wamp will battle it out over the Christian Conservative vote</a>), will have plenty of resources to rebuild their coffers for the general election. With it being a non-Presidential election year there will certainly be less hype and enthusiasm from both the Obama and anti-Obama folks, so Repubs and Dems will both be trying to motivate their core constituencies. Like McDonnell vs. Deeds, it is bound to get dirty, and it is bound to alienate folks on both sides of the political fence.</p>
<p>What is different about Tennessee is that, while McDonnell has gone to the middle in the general election, <a href="http://nashvillecitypaper.com/content/city-news/tndp-chair-says-haslam-more-electable-ramsey-or-wamp" target="_blank">Wamp and Ramsey have left themselves absolutely NO room to manuvere to the left: they&#8217;ve staked their camp on the far right. </a>Haslam might move back to the moderate views he seemed to represent in Knoxville, but then again, fearing a right-wing backlash, he might not.</p>
<p>One thing is for sure, a Democratic candidate won&#8217;t stand a chance of winning if they run like Creigh Deeds has &#8212; <a href="http://wwww.dailykos.com/storyonly/2009/10/23/796325/-Deeds-runs-ad-against-cap-and-trade" target="_blank">trying to go conservative</a>, holding back in hopes <a href="http://www.bluecommonwealth.com/diary/1204/a-foulmouthed-bob-mcdonnell-loses-his-cool-on-live-radio-broadcast" target="_blank">McDonnell will lose </a>instead of trying to win. That&#8217;s at least one of the lessons here.</p>
<p>It&#8217;s very likely that whoever comes out of the Republican primary the victor will be bruised and bloody &#8212; and compromised. He&#8217;ll have made enemies of either moderates or conservatives in his party. The best thing Democrats can do is put a candidate out there who says what he or she means, doesn&#8217;t try to pander, and looks like a leader. None of the current Repubs running can be described in those words.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to install PEAR on WAMP?]]></title>
<link>http://mitulmpatel.wordpress.com/2009/11/02/how-to-install-pear-on-wamp/</link>
<pubDate>Mon, 02 Nov 2009 11:22:19 +0000</pubDate>
<dc:creator>mitulmpatel</dc:creator>
<guid>http://mitulmpatel.wordpress.com/2009/11/02/how-to-install-pear-on-wamp/</guid>
<description><![CDATA[Follow following steps to install pear on window using WAMP architecture: Go to command prompt using]]></description>
<content:encoded><![CDATA[Follow following steps to install pear on window using WAMP architecture: Go to command prompt using]]></content:encoded>
</item>
<item>
<title><![CDATA[Halloween das Escolas]]></title>
<link>http://wherearemypics.com/2009/11/01/halloween-das-escolas/</link>
<pubDate>Sun, 01 Nov 2009 03:00:06 +0000</pubDate>
<dc:creator>wherearemypics</dc:creator>
<guid>http://wherearemypics.com/2009/11/01/halloween-das-escolas/</guid>
<description><![CDATA[Platinum, Porto Alegre, RS Área Restrita, Fused e Os Filés Acesse nosso SITE | FOTOLOG | ORKUT | TWI]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#f9c424;">Platinum, Porto Alegre, RS</span></p>
<p>Área Restrita, Fused e Os Filés</p>
<p>Acesse nosso <a title="WAMP no WordPress" href="http://www.wherearemypics.com/">SITE </a>&#124; <a title="WAMP no Fotolog" href="http://www.fotolog.com.br/wherearemypics">FOTOLOG </a>&#124; <a title="WAMP no Orkut" href="http://www.orkut.com.br/Main#Community.aspx?cmm=73939821">ORKUT </a>&#124; <a title="WAMP no Twitter" href="http://www.twitter.com/giulianocecatto">TWITTER </a></p>

<p><img style="border:1px solid blue;z-index:90;position:absolute;left:135px;top:35px;" src="//dictionarytip/skin/book.png" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rafinha Bastos]]></title>
<link>http://wherearemypics.com/2009/11/01/rafinha-bastos/</link>
<pubDate>Sun, 01 Nov 2009 03:00:02 +0000</pubDate>
<dc:creator>wherearemypics</dc:creator>
<guid>http://wherearemypics.com/2009/11/01/rafinha-bastos/</guid>
<description><![CDATA[Sociedade de Ginástica de Novo Hamburgo, Novo Hamburgo, RS Acesse nosso SITE | FOTOLOG | ORKUT | TWI]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="color:#f9c424;">Sociedade de Ginástica de Novo Hamburgo, Novo Hamburgo, RS</span></p>
<p>Acesse nosso <a title="WAMP no WordPress" href="http://www.wherearemypics.com/">SITE </a>&#124; <a title="WAMP no Fotolog" href="http://www.fotolog.com.br/wherearemypics">FOTOLOG </a>&#124; <a title="WAMP no Orkut" href="http://www.orkut.com.br/Main#Community.aspx?cmm=73939821">ORKUT </a>&#124; <a title="WAMP no Twitter" href="http://www.twitter.com/giulianocecatto">TWITTER </a></p>

</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wamp Error -  [EparseError] No tray Icon was specified]]></title>
<link>http://arnelbornales.wordpress.com/2009/10/30/wamp-error-eparseerror-no-tray-icon-was-specified/</link>
<pubDate>Fri, 30 Oct 2009 05:59:07 +0000</pubDate>
<dc:creator>arnelbornales</dc:creator>
<guid>http://arnelbornales.wordpress.com/2009/10/30/wamp-error-eparseerror-no-tray-icon-was-specified/</guid>
<description><![CDATA[I had an error about wamp recently: [EparseError] No tray Icon was specified I almost tried to re-in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I had an error about wamp recently: <strong>[EparseError] No tray Icon was specified</strong><br />
I almost tried to re-install my wamp server, but stumbled upon finding things from google.</p>
<p>The problem is in <strong>wampmanager.ini</strong>.<br />
check out your  wampmanager.ini if it&#8217;s WHOLE EMPTY,<br />
then this would be a great solution for that problem.</p>
<p>Now, </p>
<p>paste this code inside your <strong>wampmanager.ini</strong> file (usually located at C:\wamp\wampmanager.ini)</p>
<blockquote><p>
[Config]<br />
ImageList=images_on.bmp<br />
ServiceCheckInterval=1<br />
ServiceGlyphRunning=13<br />
ServiceGlyphPaused=14<br />
ServiceGlyphStopped=15<br />
TrayIconAllRunning=16<br />
TrayIconSomeRunning=17<br />
TrayIconNoneRunning=18</p>
<p>[Services]<br />
Name: wampapache<br />
Name: wampmysqld</p>
<p>[StartupAction]<br />
Action: run; FileName: &#8220;c:/wamp/bin/php/php5.2.5/php-win.exe&#8221;;Parameters: &#8220;refresh.php&#8221;;WorkingDir: &#8220;c:/wamp/scripts&#8221;; Flags: waituntilterminated<br />
Action: resetservices<br />
Action: readconfig;<br />
Action: service; Service: wampapache; ServiceAction: startresume; Flags: ignoreerrors<br />
Action: service; Service: wampmysqld; ServiceAction: startresume; Flags: ignoreerrors
</p></blockquote>
<p>Save the file and click Start Wampserver</p>
<p>There you go! </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[WAMP (Windows Apache Mysql PHP) dengan AppServ ..]]></title>
<link>http://henzoanima.wordpress.com/2009/10/26/wamp-windows-apache-mysql-php-dengan-appserv/</link>
<pubDate>Mon, 26 Oct 2009 06:09:45 +0000</pubDate>
<dc:creator>henzoanima</dc:creator>
<guid>http://henzoanima.wordpress.com/2009/10/26/wamp-windows-apache-mysql-php-dengan-appserv/</guid>
<description><![CDATA[Untuk dapat menggunakan WAMP (Windows Apache MySQL PHP) di mesin windows, cara yang paling mudah ada]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-full wp-image-115" title="Apache" src="http://henzoanima.wordpress.com/files/2009/10/apache.png" alt="Apache" width="150" height="150" />Untuk dapat menggunakan <em><strong>WAMP</strong></em> (<em>Windows Apache MySQL PHP</em>) di mesin windows, cara yang paling mudah adalah dengan menggunaan paket-paket WAMP yang sudah membundle Apache, Mysql, PHP, dan PHPMyAdmin dalam satu paket installer seperti<em><strong> PHP Triad</strong></em>, <em><strong>XAMPP Server</strong></em>, <em><strong>AppServ</strong></em> dll. Paket-paket installer tersebut memiliki kelebihan dan kekurangan masing-masing namun tetap dapat memenuhi kebutuhan-kebutuhan dalam penerapan Pemrograman Berbasis Web dengan <em><strong>Apache</strong></em>, <em><strong>MySQL</strong></em>, dan <em><strong>PHP</strong></em>.</p>
<p>Pada kesempatan ini akan di bahas mengenai instalasi WAMP dengan menggunakan <em><strong>AppServ</strong></em> versi <em><strong>2.5.10</strong></em> yang dapat di peroleh dengan gratis di <a rel="nofollow" href="http://www.appservnetwork.com/" target="_blank">AppServNetwork</a>. Pada versi tersebut AppServ membundle <em><strong>Apache</strong></em> Versi <em><strong>2.2.8</strong></em> lengkap dengan <em>module</em> <em><strong>PHP 5.2.6</strong></em> disertai dengan <em><strong>MySQL 5.0.51b-community-nt-log</strong></em> dan <em><strong>PHP MyAdmin</strong></em> versi <em><strong>2.10.3</strong></em>. Paket installer yang dimiliki AppServ tergolong sangat <em>User Friendly</em>, karena menggunakan <em>Wizard</em> dalam konfigurasi dari setiap komponen pendukungnya, sehingga memungkinkan bagi pengguna yang masih baru sekalipun untuk memasangkan WAMP pada komputer kesayanganya.</p>
<p>Berikut Step-by-step instalasi WAMP (<em>Windows Apache MySQL PHP</em>) dengan <em><strong>AppServ 2.5.10</strong></em>. Pertama siapkan paket installer <em>appserv-win32-2.5.10.exe</em>, double click paket installer tersebut hingga muncul sebuah Wizard Dialog Sebagai berikut.</p>
<p><img class="aligncenter size-thumbnail wp-image-87" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index2.png?w=147" alt="index" width="299" height="307" /></p>
<p style="text-align:center;">Setelah muncul Wizard awal dari paket installer AppServ, klik tombol <em>Next </em>untuk meneruskan proses instalasi, hingga ditampilkan <em>License Agreement</em> dari paket tersebut.</p>
<p style="text-align:center;">
<p style="text-align:center;"><img class="aligncenter size-thumbnail wp-image-88" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index3.png?w=147" alt="index" width="331" height="338" /></p>
<p style="text-align:center;"><a rel="lightbox[madeeasy]" href="http://static.lampungcamp.com/images/post/2009/05/02-agreement-wizard.jpg"></a></p>
<p style="text-align:center;">Klik tombol <em><strong>I Agree</strong></em> jika menyetujui agreement tersebut untuk dapat melanjutkan proses instalasi. Jika license agreement disetujui dengan mengclick tombol <em><strong>I Agree</strong></em>, maka instalasi akan dilanjutkan ke tahap menentukan path atau lokasi instalsi kedalam harddisk pada computer, default instalsi akan di letakan di C:\AppServ, namun dapat dilakukan customize sesuai dengan keinginan.</p>
<p style="text-align:center;"><img class="aligncenter size-thumbnail wp-image-89" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index4.png?w=147" alt="index" width="318" height="325" /></p>
<p style="text-align:center;">Setelah menentukan lokasi instalsi, klik tombol Next untuk melanjutkan proses instalasi ke tahap selanjutnya yaitu pemilihan komponen-komponen yang akan diinstallkan. Disini kita dapat memilih komponen tertentu atau semua komponen yang ada untuk diinstallkan.</p>
<p style="text-align:center;"><img class="aligncenter size-thumbnail wp-image-90" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index5.png?w=147" alt="index" width="303" height="310" /></p>
<p style="text-align:center;">Setelah menentukan komponen yang akan diinstallkan, klik tombol Next untuk melanjutkan installasi ketahap berikutnya, yaitu konfigurasi dasar Apache HTTP Server, dialog wizard akan meminta kita memasukan <em><strong>Server Name</strong></em>, <em><strong>Administrator Email</strong></em>, dan  <em><strong>Port</strong></em> yang akan digunakan oleh Apache. Isikan localhost atau Hostname dari mesin yang digunakan pada input text <em><strong>Server Name</strong></em>, Alamat Email dengan format yang benar pada input  text <em><strong>Administrator Email</strong></em>, dan 80 sebagai standar port yang digunakan, Kemudian Klik tombol Next untuk melanjutkan proses instalasi ketahap selanjutnya yaitu konfigurasi <em><strong>MySQL Database Server</strong></em>.</p>
<p style="text-align:center;"><img class="aligncenter size-thumbnail wp-image-91" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index6.png?w=147" alt="index" width="343" height="349" /></p>
<p style="text-align:center;">Pada dialog wizard <em><strong>MySQL Server Configuration</strong></em> kita diminta mengisikan password yang akan digunakan sebagai password user root dari <em><strong>MySQL Server</strong></em> tersebut. Selain itu juga terdapat beberapa optional setting yang bias diberikan seperti <em>Char Set</em> dan <em>Collations</em> serta aktifasi <em>InnoDB Engine</em> pada MySQL, Namun hal yang paling penting pada tahap ini adalah pada password root MySQL.</p>
<p style="text-align:center;"><img class="aligncenter size-thumbnail wp-image-92" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index7.png?w=147" alt="index" width="356" height="364" /></p>
<p style="text-align:center;"><em><strong><span style="font-family:&#38;">MySQL</span></strong></em><span style="font-family:&#38;"><em><strong> Server Configuration</strong></em> merupakan Interaktif wizard terakhir, setelah selesai melakukan customize dari <em><strong>MySQL Server</strong></em> lanjutkan Proses instalasi dengan mengklik tombol Install, dan proses instalasi pun dilakukan, seperti pada gambar berikut.</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><img class="aligncenter size-thumbnail wp-image-93" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index8.png?w=147" alt="index" width="317" height="324" /></span></p>
<p style="text-align:center;"><span style="font-family:&#38;">Untuk melihat detail proses instalasi dapat dilakukan dengan mengklik tombol Show details, dan hasilnya sebagai berikut.</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><br />
</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><img class="aligncenter size-thumbnail wp-image-94" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index9.png?w=147" alt="index" width="338" height="348" /></span></p>
<p style="text-align:center;"><span style="font-family:&#38;">Setelah</span><span style="font-family:&#38;"> semua proses instalasi selesai dilakukan maka installer akan menampilkan dialog finishing, check list option start pada Apache dan MySQL agar kedua service tersebut langsung di jalankan setelah tombol Finish di klik</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><img class="aligncenter size-thumbnail wp-image-95" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index10.png?w=147" alt="index" width="351" height="359" /></span></p>
<p style="text-align:center;"><span style="font-family:&#38;">Setelah</span><span style="font-family:&#38;"> semua tahap instalasi selesai, maka dapat diasumsikan Apache dan MySQL Service sudah berjalan sesuai dengan konfigurasi yang dimasukan pada saat instalasi.</span><span style="font-family:&#38;"> Untuk mengetahui hal tersebut dapat dilakukan dengan membuka sebuah web browser (<em>Firefox, Safari Web Browser</em>, atau <em>Internet Explorer</em>), kemudian mengetikan alamat url <span style="background:yellow none repeat scroll 0 0;">http://localhost/</span> pada <strong><em>location bar</em></strong> atau <strong>address bar</strong> web browser tersebut. Jika web browser menampilkan halaman seperti pada gambar di bawah, maka kemungkinan besar proses instalasi berjalan dengan sempurna.</span></p>
<p style="text-align:center;">
<p style="text-align:center;"><span style="font-family:&#38;"><img class="aligncenter size-thumbnail wp-image-96" title="index" src="http://henzoanima.wordpress.com/files/2009/10/index11.png?w=150" alt="index" width="335" height="327" /></span></p>
<p style="text-align:center;"><span style="font-family:&#38;">Gambar tersebut adalah halaman awal yang dibuat oleh <em><strong>AppServ</strong></em>, dimana pada halaman tersebut juga disertakan link untuk mengetahui Informasi lengkap dari PHP yang digunakan, serta link yang mengarah ke <em><strong>PHP MyAdmin</strong></em> sebagai <em>MySQL Administration tools</em>. Default root directory yang dihasilkan dari instalasi tersebut adalah pada folder </span><span style="font-family:&#38;"><span style="background:yellow none repeat scroll 0 0;">C:\AppServ\www\</span></span><span style="font-family:&#38;">. Pada direktory tersebutlah web aplikasi ditempatkan nantinya.</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><br />
</span></p>
<p><span style="font-family:&#38;"><br />
</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><br />
</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><br />
</span></p>
<p style="text-align:center;"><span style="font-family:&#38;"><br />
</span></p>
<p style="text-align:center;">
<p style="text-align:center;"><span style="font-family:&#38;"><br />
</span></p>
<p><span style="font-family:&#38;"><br />
</span></p>
<p style="text-align:center;"><a rel="lightbox[madeeasy]" href="http://static.lampungcamp.com/images/post/2009/05/05-apache-wizard.jpg"></a></p>
<p style="text-align:center;">
<p style="text-align:center;">
</div>]]></content:encoded>
</item>

</channel>
</rss>
