Tag: fix

  • Solve Letsencrypt (including Certbot) problems caused by rogue .htaccess files

    At RimuHosting we’re enthusiastic about how Let’s Encrypt gives website owners a great way to secure their websites. And certbot is the tool we usually recommend to get a Let’s Encrypt certificate. We find it’s easy to use and works well on recent distributions. However, sometimes issuing or renewing a certificate fails. A common reason…

  • How to restore a WordPress site after hacks or exploits in 10 easy steps

    A lot of people use WordPress, and seemingly a lot forget to click the upgrade button regularly enough and find they are exploited.  In an ideal world, you would click that button whenever you see it needs updates, and have copious amounts of good backups. However, sometimes these things do not happen, and you need…

  • Apache exploit may crash your server – heres how to fix it

    We have picked up that there was an exploit in Apache which can result in your server running out of memory. the discovery was noticed quiet some time ago, but never fixed, and it seems to have reared its head publicly resulting in some people actively attacking. There is no patch for apache as yet,…

  • Debugging broken mail daemons

    Getting bounced mail? here let me try and explain a few of the more common problems. Have you added the domain to accept mail? You need to add the domain into the mail server so it knows to accept email for it. If it accepts mail for every domain then its fairly easy for somebody…

  • Fixing apache file and directory permissions

    I’ve seen this problem a few times, people having trouble getting the permissions right for websites. Heres a quick fix that will sort you in most cases For directories run find /path/to/domain/public_html/ -type d -print0 | xargs -0 chmod 755 Files run this one find /path/to/domain/public_html/ -type f | xargs chmod 644 Make sure you…