Langsung ke konten utama

Postingan

FLUTTER ~ Vertical viewport was given unbounded height

This generally happens when you try to use a ListView/GridView inside a Column, there are many ways of solving it, I am listing few here.  1. Wrap ListView in Expanded Column( children: [ Expanded( // wrap in Expanded child: ListView(...), ), ], ) 2. Wrap ListView in SizedBox and give a bounded height Column( children: [ SizedBox( height: 400, // fixed height child: ListView(...), ), ], ) 3. Use shrinkWrap: true in ListView. Column( children: [ ListView( shrinkWrap: true, // use this ), ], )

case log error pada mail server

pada email client seperti ini : Postfix SMTP server: errors from unknown[104.152.52.208] Transcript of session follows. Out: 220 mail.xxx.xxx ESMTP Postfix (Debian/GNU) In: ??? Out: 502 5.5.2 Error: command not recognized In: ?? Out: 502 5.5.2 Error: command not recognized In: ??????? Out: 502 5.5.2 Error: command not recognized In: Out: 500 5.5.2 Error: bad syntax Session aborted, reason: lost connection For other details, see the local mail logfile pada log server seperti ini : Dec 17 07:57:38 mail postfix/submission/smtpd[401627]: warning: hostname internettl.org does not resolve to address 104.152.52.208 Dec 17 07:57:38 mail postfix/submission/smtpd[401627]: connect from unknown[104.152.52.208] Dec 17 07:57:39 mail postfix/submission/smtpd[401627]: lost connection after UNKNOWN from unknown[104.152.52.208] Dec 17 07:57:39 mail postfix/cleanup[401653]: 2B4871D006F4: message-id=<20221217005739.2B4871D006F4@mail.xxx.xxx> Dec 17 07:57:39 mail postfix/submission

Apache AH00558: Could not reliably determine the server's fully qualified domain name

permasalahan ketika cerbot renew failed http-01 challenge for xyx.someaddress.com Waiting for verification... Challenge failed for domain xyx.someaddress.com Cleaning up challenges sudo systemctl status apache2.service -l --no-pager  sudo journalctl -u apache2.service --since today --no-pager sudo apachectl configtest sudo nano /etc/apache2/apache2.conf ServerName 127.0.0.1

postfixadmin your email address or password is not correct. can't open file letsencrypt privkey.pem

[Wed Feb 02 08:53:49.429318 2022] [php7:notice] [pid 1445731] [client 180.252.186.123:64290] Failed to read password from /usr/bin/doveadm pw -r 5 ... stderr: doveconf: Fatal: Error in configuration file /etc/dovecot/conf.d/10-ssl.conf line 16: ssl_key: Can't open file /etc/letsencrypt/live/mail.binasaranasukses.com/privkey.pem: Permission denied\n, password: , referer: https://postfixadmin.example.com/login.php [Wed Feb 02 08:53:49.429526 2022] [php7:notice] [pid 1445731] [client 180.252.186.123:64290] Error while trying to call pacrypt(), referer: https://postfixadmin.example.com/login.php [Wed Feb 02 08:53:49.429590 2022] [php7:notice] [pid 1445731] [client 180.252.186.123:64290] Exception: /usr/bin/doveadm pw -r 5 failed, see error log for details in /var/www/postfixadmin/functions.inc.php:1060\nStack trace:\n#0 /var/www/postfixadmin/functions.inc.php(1275): _pacrypt_dovecot()\n#1 /var/www/postfixadmin/model/Login.php(36): pacrypt()\n#2 /var/www/postfixadmin/public/login.php

Codeigniter PHP Fatal error: Uncaught Error: Call to undefined function CodeIgniter\locale_set_default()

Apabila terjadi kesalahan pada saat pertama kali setelah instalasi CodeIgniter 4.0.4 seperti ini :   Fatal error: Uncaught Error: Call to undefined function CodeIgniter\locale_set_default() in /home/username/domain/system/CodeIgniter.php:184    Masalah di atas dapat diatasi dengan cara membuka file System->Codeigniter.php   Cari perintah dibawah ini :   locale_set_default($this->config->defaultLocale ?? 'en');   Ganti dengan kode berikut ini  if( function_exists('locale_set_default' ) ) : locale_set_default($this->config->defaultLocale ?? 'en'); endif;