Cara Install XAMPP

Langkah pertama ialah menyiapkan file .exe XAMPP CONTROL PANEL  atau bisa disebut juga file instalasi XAMPP.

Bagi yang belum punya dapat di download disini

Setelah file aplikasi XAMPP tersedia, kita akan mulai menginstall aplikasi ini. 

1. klik dua kali pada File instalasi XAMPP

Jika anda menggunakan anti-virus, akan tampil jendela berikut:


Jendela diatas hanya peringatan bahwa jika program anti virus sedang berjalan, proses instalasi mungkin akan berjalan lambat atau mengganggu proses instalasi XAMPP. Jika perlu, anda bisa mematikan anti virus untuk sementara, atau klik saja tombol Yes.

Jendela peringatan berikutnya adalah tentang UAC (User Account Control):



Peringatan ini berkaitan dengan proteksi pada Windows Vista  keatas dimana jika XAMPP diinstall pada folder C:\Program Files (x86) mungkin akan terjadi pembatasan hak akses yang menyebabkan XAMPP tidak berjalan dengan normal. Karena alasan ini, saya akan memindahkan file instalasi XAMPP ke folder lain. Silahkan klik tombol OK untuk melanjutkan.

Setelah beberapa tahap anda akan dihadapkan pada jendela berikut : 


Tampilan berikutnya adalah “Bitnami for XAMPP”. XAMPP menawarkan Bitnami sebagai cara cepat menginstall CMS seperti wordpress, joomla dan drupal. Tetapi kita akan menginstall wordpress secara manual, sehingga hapus pilihan “learn more about Bitnami for XAMPP”, kemudian klik Next.

2. Setelah ter install

klik start pada Apache
klik start pada MySQL

#jika Apache tidak Running anda bisa beralih ke masalah penginstallan XAMPP

3 .       Lalu buka browser
Dan ketik http://localhost:8080/phpmyadmin/

8080 adalah port yang sedang running di Apache
Jika yang running port 80 , Maka ketik kan http://localhost:80/phpmyadmin/

4 .       -   Klik New
           -   Masukan nama database “bwapp”
           -   Lalu Create

5 .       Klik Menu bar SQL
Lalu ketikan kode berikut :

DROP TABLE IF EXISTS `blog`;
CREATE TABLE `blog` (
  `id` int(10) NOT NULL ,
  `owner` varchar(100) DEFAULT NULL,
  `entry` varchar(500) DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
);
DROP TABLE IF EXISTS `heroes`;
CREATE TABLE `heroes` (
  `id` int(10) NOT NULL ,
  `login` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `secret` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
);
INSERT INTO `heroes` VALUES(1,'neo','trinity','Oh why didn''t I took that BLACK pill?');
INSERT INTO `heroes` VALUES(2,'alice','loveZombies','There''s a cure!');
INSERT INTO `heroes` VALUES(3,'thor','Asgard','Oh, no... this is Earth... isn''t it?');
INSERT INTO `heroes` VALUES(4,'wolverine','Log@N','What''s a Magneto?');
INSERT INTO `heroes` VALUES(5,'johnny','m3ph1st0ph3l3s','I''m the Ghost Rider!');
INSERT INTO `heroes` VALUES(6,'seline','m00n','It wasn''t the Lycans. It was you.');
DROP TABLE IF EXISTS `movies`;
CREATE TABLE `movies` (
  `id` int(10) NOT NULL ,
  `title` varchar(100) DEFAULT NULL,
  `release_year` varchar(100) DEFAULT NULL,
  `genre` varchar(100) DEFAULT NULL,
  `main_character` varchar(100) DEFAULT NULL,
  `imdb` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
);
INSERT INTO `movies` VALUES(1,'G.I. Joe: Retaliation','2013','action','Cobra Commander','tt1583421');
INSERT INTO `movies` VALUES(2,'Iron Man','2008','action','Tony Stark','tt0371746');
INSERT INTO `movies` VALUES(3,'Man of Steel','2013','action','Clark Kent','tt0770828');
INSERT INTO `movies` VALUES(4,'Terminator Salvation','2009','sci-fi','John Connor','tt0438488');
INSERT INTO `movies` VALUES(5,'The Amazing Spider-Man','2012','action','Peter Parker','tt0948470');
INSERT INTO `movies` VALUES(6,'The Cabin in the Woods','2011','horror','Some zombies','tt1259521');
INSERT INTO `movies` VALUES(7,'The Dark Knight Rises','2012','action','Bruce Wayne','tt1345836');
INSERT INTO `movies` VALUES(8,'The Incredible Hulk','2008','action','Bruce Banner','tt0800080');
INSERT INTO `movies` VALUES(9,'World War Z','2013','horror','Gerry Lane','tt0816711');
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
  `id` int(10) NOT NULL ,
  `login` varchar(100) DEFAULT NULL,
  `password` varchar(100) DEFAULT NULL,
  `email` varchar(100) DEFAULT NULL,
  `secret` varchar(100) DEFAULT NULL,
  `activation_code` varchar(100) DEFAULT NULL,
  `activated` tinyint(1) DEFAULT '0',
  `reset_code` varchar(100) DEFAULT NULL,
  `admin` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
);
INSERT INTO `users` VALUES(1,'A.I.M.','6885858486f31043e5839c735d99457f045affd0','bwapp-aim@mailinator.com','A.I.M. or Authentication Is Missing',NULL,1,NULL,1);
INSERT INTO `users` VALUES(2,'bee','6885858486f31043e5839c735d99457f045affd0','bwapp-bee@mailinator.com','Any bugs?',NULL,1,NULL,0);



Lalu, klik Go.

Nah, sekarang database bwapp sudah di buat,
Dan tidak selalu berpatok kode diatas, bisa kita ubah-ubah sendiri

6.       Buka tab baru
Ketik http://localhost:8080/bwapp/login.php

Masukan username : bee
Masukan password : bug



Sekarang kita sudah masuk ke bwapp, sampai pada tahap ini kita sudah siap mencoba salah satu tipe hack yang tersedia di Portal.

#jika Apache tidak Running anda bisa beralih ke masalah penginstallan XAMPP
Hajriah Fajar is a multi-talented Indonesian artist, writer, and content creator. Born in December 1987, she grew up in a village in Bogor Regency, where she developed a deep appreciation for the arts. Her unconventional journey includes working as a professional parking attendant before pursuing higher education. Fajar holds a Bachelor's degree in Computer Science from Nusamandiri University, demonstrating her ability to excel in both creative and technical fields. She is currently working as an IT professional at a private hospital in Jakarta while actively sharing her thoughts, artwork, and experiences on various social media platforms.

Thank you for stopping by! If you enjoy the content and would like to show your support, how about treating me to a cup of coffee? �� It’s a small gesture that helps keep me motivated to continue creating awesome content. No pressure, but your coffee would definitely make my day a little brighter. ☕️ Buy Me Coffee

Posting Komentar untuk "Cara Install XAMPP"