• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Search results

  1. L

    Issue SSL_ERROR_RX_RECORD_TOO_LONG

    I would like to chime in here: Just had this issue, cleared firefox cache, I am on MAC OS. I cleared the dns : terminal -> sudo killall -HUP mDNSResponder CMD SHIFT R in Firefox and this fixed my issue ** this was a newly pointed site via dns to my plesk server
  2. L

    Question Enable bot protection - white list

    Bump? i keep getting this issue
  3. L

    Question API website Description Get

    Thank you that worked.. but what a pain to loop thru all the domains and curl each time for 1 line of text.
  4. L

    Question API website Description Get

    Pulling in domains and status info just fine, I can not find the end point to get a websites description, does anyone know where this is in the rest api endpoints?
  5. L

    Question Enable bot protection - white list

    is it possible to white list ips for Enable bot protection? ahrefs seems to be blocked and if I uncheck this feature it allows them in.
  6. L

    Question NGINX webp fallback

    removed png from: location ~* \.(js|jpg|jpeg|gif|png|css|tgz|gz|rar|bz2|doc|pdf|ppt|tar|wav|bmp|rtf|swf|ico|flv|txt|woff|woff2|svg|webp)$ have the serve static files box unchecked with webp in there but should there not be a way to tell nginx to do the same? whats faster here? to serve...
  7. L

    Question NGINX webp fallback

    so i have narrowed it down to this: location ~* \.(js|jpg|jpeg|gif|png|css|tgz|gz|rar|bz2|doc|pdf|ppt|tar|wav|bmp|rtf|swf|ico|flv|txt|woff|woff2|svg|webp)$ { etag on; if_modified_since exact; add_header Pragma "public"; add_header Cache-Control "max-age=31536000, public"; } if...
  8. L

    Question NGINX webp fallback

    i just noticed that redirect too both files are there, both are 644 doing the removal.. stand by 14915#0: *8289938 open() "/var/www/vhosts/newyorkplasticsurgicalgroup.com/httpdocs/wp-content/themes/nypsg/images/doc-deane1.webp" failed (2: No such file or directory) NGINX error
  9. L

    Question NGINX webp fallback

    ya its not working https://www.newyorkplasticsurgicalgroup.com/wp-content/themes/nypsg/images/doc-deane1.png should be https://www.newyorkplasticsurgicalgroup.com/wp-content/themes/nypsg/images/doc-deane1.webp
  10. L

    Question NGINX webp fallback

    If i upload a file me.png and me.webp if the browser allows it, serve me.webp if not serve me.png this was working for me for a while but now it seems using nginx as a proxy it wont redirect to the webp file...
  11. L

    Question NGINX webp fallback

    I have used the following in the past to serve fall back webp images, <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_ACCEPT} image/webp RewriteCond %{REQUEST_URI} (?i)(.*)(\.jpe?g|\.png)$ RewriteCond %{DOCUMENT_ROOT}%1.webp -f RewriteRule...
Back
Top