Skip to main content

Posts

Lumen Laravel Error Fixed Collections

1. Warning: Accessing repo.packagist.org over http which is an insecure protocol. fixed with : composer config -g -- disable-tls false noted "use get the insecure network to get the package" 2. Checking health of composer configuration : curl -sS https://getcomposer.org/installer | php -- --check 3.  Client error: `POST https://www.googleapis.com/oauth2/v4/token` resulted in a `401 Unauthorized` response: { "error": "invalid_client", "error_description": "Unauthorized" } this error because the client id and client secret is not match, please check the credential. 4.  Target [Laravel\Socialite\Contracts\Factory] is not instantiable fixed with :  //socialite $app -> register (Laravel\Socialite\ SocialiteServiceProvider :: class );

[Solved] Mysql 8.0.18 can't connect by laravel

Jika Anda masalah koneksi laravel misalnya, mencoba menjalankan migrasi melalui aplikasi laravel, itu dikarenakan oleh mekanisme otentikasi standar dari mysql_native_password ke caching_sha2_password , oleh karena itu perlu dirubah dari caching_sha2_password menjadi mysql_native_password caranya yaitu: buka mysql di terminal (cukup ketik mysql -u root -p kemudian enter dan masukan password nya.) Gunakan perintah berikut ALTER USER 'username here'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password here'; Biarkan kata sandi kosong jika Anda tidak ingin kata sandi. and enjoy...

I have an Issue in Debian : User is not in the sudoers file. This incident will be reported.

I installed the Debian of linux distribution, but after the installation I have a trouble with my command when I try to install some firmware, "User is not in the sudoers file. This incident will be reported". how to fix it? just  easy the way guys: 1. open yout terminal with command ctrl + alt +t 2. you should as super user type this  : su - 3. Enter your password 4. type  : nano /etc/sudoers 4. add the line : [your username] [space] =(ALL:ALL) [space] ALL     example : fiki ALL=(ALL:ALL) ALL 5. ctrl + x 6. Y 7. Enter Enjoy your debian :) credit : https://www.youtube.com/watch?v=fo4SZQng4qc

Debian Wireless is unavailable (how to solve Debian Wireles is unavailable)

I installed the Debian of linux distribution, but after the installation I have a trouble with my wireless connection, the wireless show unavailable. how to fix it? 1. open yout terminal with command ctrl + alt +t 2. you should as super user type this  : sudo su 3. Enter your password 4. after that type and enter this command: echo 'deb http://ftp.debian.org/debian/ stretch main contrib non-free' >/etc/apt/sources.list 3.  you should update resource list  was change with this command : apt-get update 4. and the last type this : apt-get install firmware-realtek 5. FINALI enjoy your connection :) credit: https://unix.stackexchange.com/questions/487048/how-do-i-fix-wifi-in-debian-9

cara Ambil Data dari API twitter dengan Menggunakan Library Tweepy Menggunakan Bahasa Python

selamat malam, twitter saat ini digunakan untuk melakukan penelitian mengenai politik, review produk atau perusahaan dll. nah saat ini saya akan share codingan untuk mengambil data tapi twitter hanya membolehkan mengambil data tujuh hari kebelakang, ingat tujuh hari kebelakang ya.. jadi kalo mau copas codingan ini maka harus diganti tanggalnya sesuai codingan ini digunakan. Dengan bahasa yang digunakan yaitu python versi 3.7 kalo saya, tapi ini bisa dijalankan di python meski beda versi. pertama adalah install python nya ( saya anggap anda sudah menginstall python ) kedua install pip dengan cara download di web https://pip.pypa.io/en/stable/installing/ kemudian setelah ter download double click pip nya sampai finish installation. ketiga adalah menginstall requirements:            masuk ke terminal (cmd) ketikan pip install tweepy kemudian enter            masih di terminal keti...

Cara Upgrade Versi xampp, php, dan mysql Tanpa Kehilangan Database dari Versi Sebelumnya

Cara Upgrade Versi xampp, php, dan mysql Tanpa Kehilangan Database dari Versi Sebelumnyaaption setiap software akan terus dilakukan pengembangan sampai akhir yang tak terhingga, karena software yang baik adalah software yang dapat digunakan dengan sesuai ekspektasi penggunanya, oleh karena itu ketika perkembangan teknologi kian hari kian mutakhir sehingga software yang sudah dibangun dilakukan pembaharuan sesuai dengan kondisi perkembangan perangkat lunak yang lainnya. seperti hal nya xampp, perangkat lunak ini merupakan salah satunya yang melakukan perubahan - perubahan pada fitur yang disediakan, sehingga pengguna perlu melakukan reinstall versi terbaru, selain itu upaya untuk reinstall versi baru juga disebabkan oleh dukungan software ini terhadap perangkat lunak yang lainnya seperti versi php, ada beberapa perangkat lunak yang membutuhkan versi php diatas versi php 7.0 maka pengguna harus menginstallnya kembali (upgrade). nah, biasanya muncul pertanyaan bagaimana car...