• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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. SibProgrammer

    Resolved Docker engine package update

    You can enable "automatic start on system reboot" option for specified container. See screenshot for details:
  2. SibProgrammer

    Resolved Node.js support

    Also try to use the following code snippet as a "Hello world" app: const http = require('http'); const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n'); }); server.listen(0, '0.0.0.0', () => {...
  3. SibProgrammer

    Resolved Node.js support

    Can you provide the content of /var/log/nginx/error.log (last 20-30 lines)? There should be something about Passenger.
  4. SibProgrammer

    Resolved Node.js support

    Can you provide the output of "plesk version" command (via ssh under the root user)? Also please check if SELinux is enabled. If yes, try to disable it and check again.
  5. SibProgrammer

    Resolved Plesk Onyx Preview and FeedBack

    Try to uninstall "Resource controller" component (Tools & Settings -> Updates and Upgrades -> Add/Remove Components). Alternatively you can log into servers via SSH (under root user) and do the following: plesk sbin resctrl --disable
  6. SibProgrammer

    Resolved Plesk Onyx Preview and FeedBack

    Please install/upgrade to Plesk 17.0.15 to solve the problem.
  7. SibProgrammer

    Question Plesk Onyx & Amazon Route 53 module

    There was a conflict with Docker extension. Try to use an updated Amazon Route 53 extension: https://ext.plesk.com/packages/ed1860ee-45c5-4e2b-b6b7-44e5da69dca5-route53
  8. SibProgrammer

    Plesk Manager fail after update

    Please try to remove and add the server once again at iPhone app.
  9. SibProgrammer

    Plesk Manager fail after update

    As error message is saying you have a problem with your network connection. For example try to open https://<your-ip>:8443 using browser.
  10. SibProgrammer

    Plesk Manager Windows Phone 10 EULA issue

    The issue with EULA has been fixed in v1.1.3. Try to update the app. Thank you for your patience.
  11. SibProgrammer

    Plesk cookies with "secure" attribute on 8443 port

    In general there is no reason to mark cookies that does not contain any sensitive information with "secure" attribute (such as psaContext, locale and etc) because such information is useless for the attacker. And PCI scanners were happy with such behaviour. Can you provide a link on some...
  12. SibProgrammer

    Install php-soap

    Yes, .htaccess will be processed by Apache anyway and soap should work.
  13. SibProgrammer

    Install php-soap

    .htaccess is processed by web server, not by PHP. If you have selected the option "PHP 5.x via nginx" then .htaccess would not work. But serving of PHP via nginx requires PHP-FPM mode. Please make sure that you have selected PHP via Apache and check it once again.
  14. SibProgrammer

    Install php-soap

    Try to check "multiple PHP version support" feature. Go to Tools & Settings -> Updates and Upgrades and install additional PHP versions. Then go to Tools & Settings -> PHP Settings, select necessary PHP handler and enable or disable necessary PHP extensions.
  15. SibProgrammer

    Plesk 12.5, CentOS 6.7: ssh auth by certificate

    So according to your sshd_config file the authorized_keys file should work. But it doesn't?
  16. SibProgrammer

    Plesk 12.5, CentOS 6.7: ssh auth by certificate

    File authorized_keys should also work for you then. Unless you've changed the AuthorizedKeysFile variable in sshd_config file.
  17. SibProgrammer

    Out of Disk Space without any reason

    We can only guess that something wrong had happened either filesystem or some process really ate all the space. Try to run "du -sh /*" next time before reboot. Best practices are saying that it's better to have separate partitions for /tmp, /var, /usr mount points.
  18. SibProgrammer

    Plesk 12.5, CentOS 6.7: ssh auth by certificate

    File authorized_keys2 is deprecated for ages. Could you tell please which OS do you use? Also please provide the output of the command: ssh -V
  19. SibProgrammer

    Plesk 12.5, CentOS 6.7: ssh auth by certificate

    In most cases I've seen earlier the problem is related to improper PuTTY configuration, rather than problems on the server side. Try to take some Linux machine with the shell access, generate SSH key, put it to Plesk (via SSH keys manager) and check the ability to connect using keys. This action...
Back
Top