{ Berbagi, Menulis, Dan Mengajar } Ilmu… » 7. Operating System
Sentra HAKI – UMM MALANG
http://hki.umm.ac.id/id/pages/tentang-sentra-hki-umm/tentang-sentra-hki-umm-8.html … Read entire article »
Filed under: 7. Operating System
Surat Permohonan Dana KKN Tematik 2019
Pengajuan Dana KKN TEMATIK … Read entire article »
Filed under: 7. Operating System
script error handler dan cek koneksi
<?php set_error_handler(‘PesanKesalahan’); function PesanKesalahan($string){ print ” Data tdk tersinkronisasi : “.”\n”; } $filename = “./asset/koneksi/Bahagia.txt”; $handle = fopen($filename, “r”); if($handle){ $Tanggal = fread($handle, filesize($filename)); $sub_kalimat = substr($Tanggal,20,-39); echo $sub_kalimat .’ – ‘.date(‘Y’); fclose($handle); } else { echo “<h4 style=\”text-align:center;color:red;\”>”.’Billing Off’.”</h4>”;} ?> … Read entire article »
Filed under: 7. Operating System
Adduser di MYSQL dengan menggunakan konsol
DELETE USERNYA KALO SUDAH ADA, ———————– SELECT User,Host FROM mysql.user; DROP USER ‘testuser’@’localhost'; —- mysql> CREATE USER ‘NamaUser’@’localhost’ IDENTIFIED BY ‘passwordnya'; Query OK, 0 rows affected (0.52 sec) mysql> GRANT SELECT ON *.* TO ‘NamaUser’@’localhost'; Query OK, 0 rows affected (0.12 sec) Issue the GRANT command now to grant those permissions: GRANT ALL PRIVILEGES ON *.* TO ‘debian-sys-maint’@’localhost’ IDENTIFIED BY ‘n4aSHUP04s1J32X5′; mysql> GRANT ALL PRIVILEGES ON *.* TO ‘debian-sys-maint’@’localhost’ IDENTIFIED BY ‘n4aSHUP04s1J32X5′; GRANT ALL PRIVILEGES ON *.* TO ‘dimas’@’localhost’ IDENTIFIED BY ‘okedeh'; … Read entire article »
Filed under: 7. Operating System