• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Recent content by Raul A.

  1. R

    Resolved Cronjob problem

    Hi Henk, Can you share with us how it was resolved?
  2. R

    Question SPF Spam Protection: is it working ?

    Hi, The SPF Checking mode indicated in your screenshot will result in an SPF reject only when the sending domain has an SPF record and checks against that record result in fail. You might want "Reject mail when SPF does not resolve to pass", but that will also reject any emails from domains...
  3. R

    Question Nginx server-wide location directives without using "Additional nginx directives "

    Module ngx_http_limit_req_module indicates limit_req can be set in ``http, server, location``. /etc/nginx/conf.d/*conf get included in the http block. You should be able to declare the zone and set the limit in /etc/nginx/conf.d/limit.conf The following applies the limit to all hosted...
  4. R

    Question Nginx server-wide location directives without using "Additional nginx directives "

    How do you apply the rate limit? As far as I know, you need the limit zone declared globally and the actual limit triggered in the server/location block.
  5. R

    Issue AH01071 Failed to open stream: Too many open files in ...

    Thank you for the provided context. I suspect the system user running the PHP code hits the default 1024 nofile limit. You can increase the limit with /etc/sysctl.conf or /etc/sysctl.d/website_name and instead of nginx, set the system user used by the website (default FTP user) You can also...
  6. R

    Issue AH01071 Failed to open stream: Too many open files in ...

    How is PHP run? CGI, FastCGI or FPM application served by Apache?
  7. R

    Question How to change the plesk auto-generated server host public home page?

    Hi, Try to access https://hostname.org:8443/admin/server/tools?modals[customize-panel-access]=true and set No custom URLs. Only https://<server-IP-or-hostname>:8443
  8. R

    Issue NPM build actions in Deploy Actions w the Git Extension

    The simplest approach is moving from the chrooted shell to /bin/bash. If you must use the chrooted shell, you will need to copy the Node.js dependencies to the chrooted shell.
  9. R

    Issue Password for admin has Changed

    Can you SSH to the server using root or some other SSH user that has sudo access?
  10. R

    Issue Password for admin has Changed

    Hi, The admin user is a Plesk only user. You can't SSH to the server using the user admin. For SSH you will have to use root or some other user which has sudo access. If you have access to Plesk using the admin user, you can use SSH Terminal extension - Plesk to access the server via SSH using...
  11. R

    Issue to add email in outlook or iphone

    systemctl status dovecot indicated /etc/dovecot/private/ssl-cert-and-key.pem was missing. After /etc/dovecot/private/dovecot.pem was copied to /etc/dovecot/private/ssl-cert-and-key.pem, the Dovecot service started properly.
  12. R

    Question Developing a Plesk Extension to Serve Dynamic Content for roblaxmod Pages

    Interesting. Do you pull the api response in a variable? How do you present the API response in the view file?
  13. R

    Issue to add email in outlook or iphone

    Hey, The output indicates Dovecot is not starting. Change back to courier, if you haven't already, rename /etc/dovecot to /etc/dovecot_broken. This will ensure Plesk installer will generate fresh config files. Switch back to Dovecot. Check if the dovecot service is working. You can also run...
  14. R

    Question Imunify has detected malware

    The injected code might not be detected as malicious by a PC antivirus. However, the malicious code can potentially be used to execute arbitrary code on your website. That is why I suggested comparing it against an older version of the same file.
Back
Top