I few weeks ago, I have made a tutorial “Langkah Menginstall WAMP“, that’s tutorial is in Indoensian. Now i try to translate that’s tutorial to English, How To Install WAMP.
For you who already friendly to use PHP and ever use phptriad, maybe this istallation is very easy. The first thing you need to do is download the WAMP here. Maybe you can get the latest version of WAMP, but in this tutorial, I use WAMP5, exactly WAMP 5.1.7.0.
After successfylly download WAMP, you will get an executable file (for example wamp5_1.7.0.exe). Now double click to that file and you will see dialogue box like below :

Press the Next button and you will see like the picture below :

Choose I accep the agreement and press the Next button :

Now choose where you want to install the WAMP, my advice leave in the drice C : And press the Next button.

Press the Next button again.

Sign the check box. Its mean the WAMP (including the apache server) will be start immediatelly when teh windows started. If you choose to unsign the check box, when using WAMP you will need to start the WAMP mannually. Now press the Next button again.

Ready to install WAMP on your computer. Press the Next button once again.

Please wait a few minutes during the installation.

After the step above and the installation process finish, now chooce where you want to put your php file. My advice, leave the default location on C:wamp/www and click OK.

Press the Next button

Press the Next button

Finally, you are success to install WAMP and can test WAMP is working properly or not. Open your browser (Internet Explorer, Fire Fox or the others). Try open the URL http://localhost and you will see the WAMP homepage. Good luck..

13 Comment
Maap agak OOT, menurut pak Wira lebih bagus wamp ato xampp yak?
I personally like xampp karena running sbg service dan ga cluttering system tray
terus terang aja, saya ga tau bedanya, sempat nyoba pakai xampp bentar aja, tapi balik lagi pakai wamp.. boleh donk sekalian ceritain apa bedanya tuh?
*jadi malu
nice job bro… btw WAMP tuh apa yah???
apaan ya? apache, mysql, php jadi satu… gitu kali ya
ental wayah pesu nok
ngae ne kanti pesu keringat dingin bli, bahasa linggis benyah latig
Waduh, pke yg mana yach.. jadi bingung.. Ajarin Dong!!!!!
maksudnya bingung WAMP ama XAMPP? sama aja kayaknya, tp saya lebih familiar sama WAMP
saya pake Wamp 5 bro sisa-sisa TA hehehe, lumayan pake utak-atik WP hehehe (baru mau coba T_T )
yup, selamat utak-atik, hehehe
i’m prefer XAMPP
Nice tutorial dud
thanks brother..
ini advertorial ya?
bukan dok, murni karena kehabisan ide mau posting apa, hehehe
WAMP ini pake buat apa yaa pak dosen.??
beh, metakon ne? hahahahaha
mungkin masalah kebiasaan aja sih. kalo saya lebih sering pake xampp. bedanya? kalo wamp nyimpen file webnya di bawah ‘www’, kalo xampp di bawah ‘htdocs’, kakakakaka!
*jawaban bodoh*
hahahaha… ga bodoh kok, itu jawaban paling cerdas
Haloo Pak…..
Pak saya mau tanya…
Saya punya proggram Stack sbb :
//Program Tumpukan/ Stack
#include
#include
//Deklarasi stack dengan struct dan array
struct STACK
{
int data[5];
int atas;
};
//Deklarasi variabel ‘tumpuk’ dari struct
STACK tumpuk;
void main()
{
clrscr();
int pilihan,baru,i;
//Inisialisasi awal
tumpuk.atas=-1;
do
{
clrscr();
cout<<”1. Push Data( masukan data )”<<endl;
cout<<”2. Pop Data( hapus data )”<<endl;
cout<<”3. Print Data”<<endl;
cout<<endl;
cout<>pilihan;
clrscr();
switch(pilihan)
{
case 1:
{
if(tumpuk.atas==5-1)
{
cout<<”Tumpukan penuh”;
getch();
}
else
{
cout<>baru;
tumpuk.atas++;
tumpuk.data[tumpuk.atas]=baru;
}
break;
}
case 2:
{
if(tumpuk.atas==-1)
{
cout<<”Tumpukan kosong”;
getch();
}
else
{
cout<<”Data yang akan di Pop = “<<tumpuk.data[tumpuk.atas];
tumpuk.atas–;
getch();
}
break;
}
case 3:
{
if(tumpuk.atas==-1)
{
cout<<”Tumpukan kosong”;
getch();
}
else
{
cout<<”Data = “;
for(i=0;i<=tumpuk.atas;i++)
{
cout<<tumpuk.data[i]<<” “;
}
getch();
}
break;
}
default:
{
clrscr();
cout<<”Tidak ada dalam pilihan”<=1 && pilihan<=3);
getch();
}
Yang ingin saya tanyakan, kenapa nilai pada (inisialiasasi awal) tumpuk.atas = -1 ?
Apa nilai tersebut baku?
Kalau bisa saya mau minta program stack dari Bapak agar bisa menjadi pembanding…
Sebelumnya saya ucapkan terima kasih…
Sepertinya tidak baku, kalau dirubah, berarti nilai variabel yg lain juga dirubah. Tapi contoh diatas ini banyak yg error. Kalau mau, coba kirim file code-nya ke email saya.
wagh..lom pernah WAMP negh, masih prefer ke phpthriad
btw, thx atas short tutorialnya mas…
ntar degh tak cobain
Kalau tidak salah, phptriad tdk ada versi baru, saya pindah ke WAMP karena ada beberapa sintak php yg tidak bekerja dengan baik di phptriad, mungkin karena versi php di phptriad masih yg lama.
Ada bedanya dengan AppServ gak? Kalo saya paling suka pake AppServ, installnya mudah. Kalo pake PHP Triad sudah pernah, tp kayaknya tetep lebih enak pake AppServ.
awalnya saya juga pakai phtriad, tp skg pakai WAMP, AppServ belum pernah, jadi ga tau bedanya
hiks ga ngertiiiii..perlu belajar lagi…
hehehe, kalau cuma nginstall ini sih gampang
Leave a Reply