• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Search results

  1. W

    Question Apache & PHP-FPM memory usage spike and no CPU usage

    Are you running on a 512MB server?
  2. W

    Issue 421-4.7.28 error when sending mail to Google server

    Unfortunately, I can only speculate what's wrong. Spam filters are black boxes, especially Gmail. Sending 3.1 messages/hr only shouldn't get an IP rate limited. However, from what I've seen, these rate limits are done on a IP reputation basis. If your IP has a history of sending "good" email...
  3. W

    Resolved Plesk + Cloudflare - Get visitors real IP without extension

    Got you :) #!/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin CFTEMP=/root/cloudflare-ips.txt curl -sS https://www.cloudflare.com/ips-v4 >$CFTEMP printf "\n" >> $CFTEMP curl -sS https://www.cloudflare.com/ips-v6 >>$CFTEMP sed -i -e 's/^/set_real_ip_from /' $CFTEMP sed -i '1ireal_ip_header...
  4. W

    Question DDos how can i limit number of time a ip can hit the server?

    You'll need to write your own jail filter to track requests by IP. I would just raise the open file limit as a mitigation - you don't want your server going down from the either way. Then consider something like Cloudflare. Rate Limiting is best done as close to the client as possible.
  5. W

    Resolved Run bash script as root from extension

    No. Put the files in /sbin, and it will automatically work on installatino
  6. W

    Question Prevent Nginx for specific URL

    You'll likely need to configure Plesk's serve static files option to not server .js files for the site.
  7. W

    Issue How to disable firewall with no CLI?

    It seems like it would be a lot easier just to use a VPN, temporarily and whitelist your IP.... If you're in rescue mode, you should have CLI access. From there, just use the firewall CLI to make the changes necessary
  8. W

    Resolved How to clear the Server Cache

    Yes. That is not created by Plesk. W3 Total is responsible if I recall corectly
  9. W

    Question Nginx caching on websites

    This is really one of my biggest gripes. If Plesk offers caching OOTB but not a way to clear it, it's really quite useless except for micro caching. Does Plesk expect everyone to implement purging themselves? I doubt that is properly detecting caching. Look for the x-proxy-cache header to see...
  10. W

    Question wordpress hosting

    Why?
  11. W

    Issue plesk send email and all email go to spam in gmail

    I can't imagine Contabo has a particularity clean IP range - https://talosintelligence.com/reputation_center/lookup?search=173.249.25.59 Spam filters are black boxes and there are a lot of factors. However, I'd look into getting a relay from somewhere that probably has a clean IP range.
  12. W

    Issue how to update plesk core and plugin via proxy ?

    The data has to get into Plesk somehow. Unless you can walk into your DC, pull out the drive, transfer the data and put it back in, you aren't going to easily get plesk core files into the machine at 10kbps
  13. W

    Question How update to Maria DB 10.2 (from 10.1)

    That doesn't actually do anything. MariaDB won't just update to a minor release by itself.
  14. W

    Question How to make "sites-available" under CentOS 8, Plesk Obsidian and Nginx

    SInce you're using Plesk, forget whatever is being mentioned about sites-available/enabled It should work if you paste it in the "Additional NGINX Directives." Do you have another rule taking precedent? Ie, serve static files via NGINX
  15. W

    Issue Very high CPU usage

    There are some attacks that will slip through cloudflare unfortunately. There is definitely more to do, but it gets progressively more expensive. You could take a look at Sucuri, or StackPath. If that doesn't work, there are other vendors, albeit (very) expensive.
  16. W

    Resolved Plesk Rest API executes the request twice

    Your code should be: $result = curl_exec($ch); $final = json_decode($result,true); curl_close($ch);
  17. W

    Issue Very high CPU usage

    Could you be under a DDoS/resource exhaustion attack?
  18. W

    Question Prevent outbound spam from Plesk

    Mailchannels + Spam Experts are very very popular commercial outbound scanning relays. You could also consider running a separate relay. Postfix has smarthosts support so we just funnel everything to load-balanced external relays that handle filtering for outbound spam. Worst case, an IP gets...
  19. W

    Question How to prevent backup from saving locally when I have remote storage setup?

    Yeah. Just choose only the remote directly when you schedule a backup in Plesk -> Backup Manager -> Schedule
  20. W

    Input I wrote a tutorial on how to redirect port 8443 to something more user friendly

    Uh, what's stopping you from just setting the hostname to the main server's hostname, and issuing a SSL cert for that? Generating custom vhost templates, especially for something like domainVirtualHost.php which we've seen change literally every update cycles is a pretty poor idea usually...
Back
Top