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

    https://survey.webpros.com/

Search results

  1. A

    Limit number of emails send by PHP mail function

    Hi, MislavO You can try to remove localhost (127.0.0.1) from white list in Server-Wide Mail Settings. This will force PHP web users to use authenticated SMTP connections(using mailboxes).
  2. A

    NGINX + wrong file permissions = 404

    LinqLOL, Did you try to change file permissions using Plesk Filemanager? It works in my case: after I've changed permissions from 700 to 744 I've got 200OK response from my website.
  3. A

    Custom Nginx Vhost Files to allow JS Apps to Run

    Hi ShoneA, You should not modify default template files - they become overwritten during upgrade. Instead, copy default templates to /usr/local/psa/admin/conf/templates/custom and there modify them: /usr/local/psa/admin/conf/templates/custom/domain/nginxDomainVirtualHost.php...
  4. A

    Changing cgi-bin location

    Hi Consultant1027, You can adjust vhost PHP template: /usr/local/psa/admin/conf/templates/default/domain/domainVirtualHost.php "ScriptAlias "/cgi-bin/" "<?php echo $VAR->domain->physicalHosting->cgiBinDir ?>/""
  5. A

    Nginx Static Content

    Hi Janko1000, try this variable - <?php echo $OPT['documentRoot'] ?>/
  6. A

    301 redirect domain without www to www with multiple domains

    Hi chris81, Such redirects can be configured using Apache/mod_rewrite redirect rules. You can define own redirects and put them into .htaccess file in the vhost's doc root . As example, redirect from non-WWW to WWW: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond...
  7. A

    Plesk Windows open_basedir restriction in effect

    Hi SupportAXL, thanks for sharing! FYI, nowdays Plesk 11 contains TEMP dir by default in PHP open_basedir
  8. A

    dedicated pool

    Hi DionatanB, Please check your Plesk server settings, it should be: Home > Tools & Settings> IIS application pool > IIS Application Pool plesk(default)(pool) [Always assign one application pool to each subscription]
  9. A

    ProFTPd server to use TLS/SSL

    Hi ErwanG, Try to create and use with proftpd self-signed SSL certificate for your ftp server's domain.
  10. A

    Need help convert apache rewrite rules to nginx

    Hi Nerijuss, You can try this converter - http://winginx.ru/htaccess Then you will need to put nginx directives into custom nginx vhost config. However, please do not touch the config, created by Plesk Panel. You should add your custom nginx directives into Plesk nginx vhost template...
  11. A

    .htaccess problems

    Hi philliph22, Try to turn OFF nginx reverse proxy in server settings. While Nginx is on, it acts as a web client for Apache. So all requests come to Apache from same ip - the server's localhost.
  12. A

    Changing Apache's Port for using Varnish Cache

    Hi ottomotto, Are you sure that Nginx reverse proxy is OFF ?? Tools & Settings > Services > Reverse Proxy Server (nginx) [OFF] As for changing Apache ports - you should change configs and templates, as per KB that you've mentioned: http://kb.parallels.com/en/114249
  13. A

    Plesk 9.5.x creating domain "www" tickbox off by default

    Hi rgfincher, WWW prefix is turned ON by default in Plesk 11. Next Plesk releases will have more control for this.
  14. A

    assign dedicated app pool to subdomain in IIS

    Hi amirall, It is not possible yet in Plesk. We are thinking about such possibility for next Plesk releases.
  15. A

    Email not displaying correctly in Horde.

    Michael, Both MailEnable and Horde are third party components. Thus I suggest to check Horde support for this issue: http://www.horde.org/community/support
  16. A

    how to use x-accel-redirect with plesk-installing nginx

    Hi Luo, What kind of problem are you trying to solve? What is the current status?
  17. A

    mod_pagespeed

    Hi, adamjimenez. Thanks for your idea, we are thinking about possible options in this area for next Plesk releases.
  18. A

    IIS Application Pool for each website

    Hi, David. Thank you for your suggestion. We will take this into account in next Plesk releases.
  19. A

    Password protecting subdirectories - How?

    Hi elemental.tm, Could you please rephrase your comment? I've just tried protected dir for a subdomain on Plesk 11 for Windows, it works well for urls like this - http://subdomain.domain.tld/protected In order to do this, you should use - Website & Domains / Advanced Operations /...
  20. A

    Plesk 11 + Apache + Nginx + Varnish cache

    Hi FanisT, In order to instruct Nginx to swithch backend servers in case of failure you can use a Nginx config directive upstream: http://nginx.org/en/docs/http/ngx_http_upstream_module.html You should define new section in nginx config: "upstream backend". There you should specify your...
Back
Top