Read mails in Maildir folder
To read mail from Maildir folder, use mutt. You can run mutt -f /home/user/Maildir To install mutt on Ubuntu/Debian, run apt install…
To read mail from Maildir folder, use mutt. You can run mutt -f /home/user/Maildir To install mutt on Ubuntu/Debian, run apt install…
To enable CORS in nginx, add the following inside web sites server config. Restart nginx See CORS
To enable CORS in apache, add the following in VirtualHost or .htaccess If your apache installation don’t have mod_headers installed, you need…
To list modules compiled with nginx, you can run nginx -V nginx -V This print nginx version along with configuration used to…
On a Ubuntu server, run i run apachectl status, i get following error. root@server:~# apachectl status /usr/sbin/apachectl: 113: /usr/sbin/apachectl: www-browser: not found…
To check if an IP is banned by fail2ban, run To unblock an IP, you should find the jail that caused the…
When restoring a MySQL database, i get error root@server:~# mysql production < db.sql ERROR 1118 (42000) at line 733: Row size too…
After upgrading MariaDB on Ubuntu server, i got following error root@server:~# mysql ERROR 1524 (HY000): Plugin ‘unix_socket’ is not loaded root@server:~# Users…
To enable debug mode in Prestashop, edit the file Find Replace with Enable debug mode only for your IP Find Add above.…
First you need to add VirtualBox repository sudo echo “deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib” > /etc/apt/sources.list.d/virtualbox.list Add Keys wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O-…
To install Vagrant on CentOS, go to https://www.vagrantup.com/downloads Get link to latest version, then run “rpm -ivh URL_TO_RPM_FILE”. At time of writing…