Showing posts with label error. Show all posts
Showing posts with label error. Show all posts

Friday, March 5, 2021

 

Pada saat akan menjalankan WSL Ubuntu Bash, muncul pesan Error seperti berikut 

Unsupported console settings. In order to use this feature, the legacy console must be disabled.


😁 Jangan pusing untuk mengatasinya, buka properties command Prompt, dengan cara klik kanan pada tittle bar, kemudian pilih Properties

kemudian uncek, Use legacy console (requires relaunch, after all consoles)

Menjadi Seperti ini kemudian OK, dan tutup command prompt dan jalankan lagi.


Kini WSL Ubuntu Bash sudah normal kembali dan siap beraksi 😃


Monday, February 8, 2021

 


😅 Entah kenapa tiba-tiba muncul pesan error berikut, pada saat merubah settingan php.ini dan mereload XAMPP ,

XAMPP is currently only available as 32 bit application. Please use a 32 bit compatibility library for your system.


Dengan berbekal google, akhirnya dapat solusi cepat dan praktis
A. Merubah /opt/lampp/lampp

Menggunakan Nano edit ,

/opt/lampp/lampp

nano /opt/lampp/lampp

Cari baris

# XAMPP is currently 32 bit only
case `uname -m` in
        *_64)
        if $XAMPP_ROOT/bin/php -v > /dev/null 2>&1
        then
                :
        else
         $GETTEXT -s "XAMPP is currently only availably as 32 bit application. Please use a $
                exit 1
        fi
        ;;
esac


Tambahkan tanda komentar didepanya menjadi :

# XAMPP is currently 32 bit only
#case `uname -m` in
#        *_64)
#        if $XAMPP_ROOT/bin/php -v > /dev/null 2>&1
#        then
#                :
#        else
#        $GETTEXT -s "XAMPP is currently only availably as 32 bit application. Please use a $
#                exit 1
#        fi
#        ;;
#esac


Sebelum

Sesudah

kemudian Simpan, 😁

Setelah itu jalankan perintah kembali,


 dan errorpun pergi..  😙