Fix masalah Apache Xampp di Windows 10 - Amounthnia

15 Januari, 2016

Fix masalah Apache Xampp di Windows 10

Local Database
Xampp adalah server yang berdiri sendiri (localhost), yang terdiri atas program Apache HTTP Server, MySQL database, dan penerjemah bahasa yang ditulis dengan bahasa pemprograman PHP dan Perl.

Biasa dipakai sebagai simulasi server untuk praktik, biasanya dipakai oleh siswa SMK jurusan TKJ karna gua juga pake xampp waktu sekolah dulu untuk membuat server localhost JOOMLA dan WORDPRESS.

Tapi untuk pengguna Windows 8 dan 10 ini menjadi dilema karna service Apache pada xampp tidak berjalan, untuk menjalankan service Apache perlu beberapa perubahan pada konfigurasi jadi tidak bisa otomatis langsung berjalan seperti di Windows 7, berikut langkah-langkahnya :

1. Buka Xampp contol panel, klik config lalu pilih Apache (httpd.conf)
2. Cari Listen 80 ganti menjadi Listen 8080
# Change this to Listen on spesific IP address as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 80
Menjadi
# Change this to Listen on spesific IP address as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#Listen 12.34.56.78:80
Listen 8080
3. Lalu cari ServerName localhost:80 ganti menjadi ServerName localhost:8080 lalu save
# If your host doesn't have a registration DNS name, enter its IP address here.
#
ServerName localhost:80
Menjadi
# If your host doesn't have a registration DNS name, enter its IP address here.
#
ServerName localhost:8080
 4. Pilih Apache (httpd-ssl.conf) lalu cari Listen 443 ganti menjadi Listen 4433
# When we also provide SSL we have to listen to the
# standard HTTP port (see above) and to the HTTPS port
#
Listen 443
Menjadi
# When we also provide SSL we have to listen to the
# standard HTTP port (see above) and to the HTTPS port
#
Listen 4433
5. Cari <VirtualHost_default_:443> ganti menjadi <VirtualHost_default_:4433>
6. Save, lalu coba "start"

Kalo kurang jelas, berikut videonya :


Itulah trik menjalankan xampp apache di Windows 10, semoga bisa bermanfaat untuk kalian,.
So ... Keep calm, stay healthy and respect, cheer ...

Share with your friends