WordPress Protect

Protect WordPress1. Jangan gunakan user admin.2. Gunakan password sulit ditebak3. Batasi login : https://wordpress.org/plugins/login-lockdown/4. Batasi hak akses file penting :.htacces > ubah permisionnya menjadi 0404 (644)wp-config.php > ubah permisionnya menjadi 0400 (644)index.php > ubah permisionnya menjadi 0400 (604)wp-blog-header.php > ubah permisionnya menjadi 0400 (644)wp-admin > ubah permisionnya menjadi 0705 (755)wp-includes > ubah permisionnya menjadi 0705 (755)wp-content > ubah permisionnya menjadi 0705 (755)5. Hapus File Tak Berguna : Hapuslah … Continue reading WordPress Protect

Menambah Icon ke Unity Launcher (Dash) Ubuntu

1. Menggunakan terminal, Mount ke direktori dimana shell script atau file execute berada. 2. Ketikkan di terminal : gedit nama_aplikasi.desktop 3. Gedit text editor akan terbuka, masukkan kode dibawah ini: [Desktop Entry]Name=Eclipse Type=ApplicationExec=/path/to/file/eclipseTerminal=falseIcon=/path/to/icon/eclipse.svgComment=Integrated Development EnvironmentNoDisplay=falseCategories=Development;IDE;Name[en]=Eclipse edit Icon= and Exec= and Name= *also Terminal=True/false determines weather the terminal opens a window and displays output or runs in … Continue reading Menambah Icon ke Unity Launcher (Dash) Ubuntu

How To Use Roles and Manage Grant Permissions in PostgreSQL on a VPS

What is PostgreSQL PostgreSQL is an open source database management system that uses the SQL querying language. PostgreSQL is a powerful tool that can be used to manage application and web data on your VPS. In this gude, we will discuss how to properly manage privileges and user grant permissions. This will allow you to … Continue reading How To Use Roles and Manage Grant Permissions in PostgreSQL on a VPS

Fix Problem After Upgrade/Install Ubuntu

1. Boot successfully repaired.https://help.ubuntu.com/community/Boot-Repair2. https://www.fosslinux.com/3041/how-to-move-the-window-titlebar-buttons-to-left-in-ubuntu-17-10.htm/ 3. https://stackoverflow.com/questions/37879448/mysql-fails-on-mysql-error-1524-hy000-plugin-auth-socket-is-not-loaded 4. switch versi PHP =>https://tecadmin.net/install-php5-on-ubuntu/Please write on a paper the following URL:http://paste.ubuntu.com/p/bKmcQgxj7W/ In case you still experience boot problem, indicate this URL to:boot.repair@gmail.com or to your favorite support forum. You can now reboot your computer. The boot files of [Ubuntu 18.04 LTS] are far from the start of the disk. Your … Continue reading Fix Problem After Upgrade/Install Ubuntu

git – panduan ringkas

persiapan Unduh git untuk OSX Unduh git untuk Windows Unduh git untuk Linux buat repositori baru buat lah direktori baru, buka dan jalankan git inituntuk membuat repositori git baru. periksa repositori buat lah salinan kerja dari repositori lokal dengan menjalankan perintahgit clone /jalur/ke/repositorisaat menggunakan server jarak-jauh, perintahnya menjadigit clone namapengguna@host:/jalur/ke/repositori alur-kerja repositori lokal kamu terdiri dari … Continue reading git – panduan ringkas

Dasar-dasar Git – Merekam Perubahan ke dalam Repositori

Merekam Perubahan ke dalam Repositori Anda sudah memiliki repositori Git yang bonafide dan sebuah salinan kerja dari semua berkas untuk proyek tersebut. Anda harus membuat beberapa perubahan dan commit perubahan tersebut ke dalam repositori setiap saat proyek mencapai sebuah keadaan yang ingin Anda rekam. Ingat bahwa setiap berkas di dalam direktori kerja Anda dapat berada … Continue reading Dasar-dasar Git – Merekam Perubahan ke dalam Repositori

Mengenal List dan Berbagai Operasinya di Python

List adalah salah satu tipe data built-in Python, yang dapat digunakan kapan saja tanpa harus meng-import modul terlebih dahulu. List sebenarnya bukan arraymelainkan sebuah collection yang dapat menampung berbagai objek dengan tipe data. Biasanya array berisi nilai yang hanya satu tipe data saja. Beberapa operasi dan method yang dapat digunakan untuk memanipulasi python antara lain: akses elemen dengan indeksmengiterasi isi listmenghitung panjang list dengan len()menghitung kemunculan nilai tertentu dengan count()menambah nilai baru dengan append()mencari posisi suatu … Continue reading Mengenal List dan Berbagai Operasinya di Python