Pemilu presiden kali ini (2014) menyisakan kerusakan yang masif sekali di Internet. Kerusakannya bukanlah fisik, tetapi berupa penyesatan berbagai informasi ( disinformasi) yang dipaket kedalam situs-situs berita yang muncul secara instan. Sebut sajalah situs itu situs serampangan karena tidak memilki informasi redaksi yang memadai (nama organisasi, alamat, nama penulis, dll) dan informasinya asal-asalan. Pagi ini, … Continue reading
Date archives "July 2014"
Protect Apache with .HTACCESS files
If you’re using Apache web server, this is the first and basic step to protect your web application using .htaccess file. create and put the .htaccess file in root folder of your application and write the code;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Protect the files that important and contain sensitive information such as database username and password <files my-database-files.php> Order allow,deny Deny from all </files> # Protect .htaccess files it self <files .htaccess> Order allow,deny Deny from all </files> # protect development folder and files <files my-dev-files.php> Order deny,allow Allow from xx.xx.xx.xx Deny from all </files> # Rules to disable directory browsing Options -Indexes |
Persiapan Mudik, Mencegah Rem Blong
Hari lebaran tahun 2014 akan segera tiba, dan hampir dipastikan banyak warga Indonesia yang melakukan perjalanan mudik ke kampung halaman. Selain menggunakan transportasi umum, penggunaan kendaraan pribadi seperti mobil dan motor juga masih menjadi pilihan primadona bagi sebaian besar pemudik. Pada musim mudik tahun 2013 lalu 686 orang telah meninggal dalam 3.061 peristiwa kecelakaan. Penyebab… Continue reading