Friday, July 19, 2019

413 Request Entity Too Large - File Upload Issue for installing theme in Wordpress

Edit the conf file of nginx:
nano /etc/nginx/nginx.conf
Add a line in the http section:
http {
    client_max_body_size 100M;
}
Doen't use MB it will not work, only the M!
Also do not forget to restart nginx
systemctl restart nginx

Wednesday, July 3, 2019

How to use Nslookup to verify MX record configuration

  • Go to Start > Run and type cmd.
  • At a command prompt, type nslookup , and then press Enter.
  • Type server <IP address> ;,where IP address is the IP address of your external DNS server.
  • Type set q=M X, and then press Enter.
  • Type <domain name> , where domain name is the name of your domain, and then press Enter.