• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Search results

  1. mizar

    Plesk WordPress Manager Failing with WordPress 4.7 Upgrade

    Hello, Wordpress toolkit belongs to 'panel' component, not 'base'. It's recommended to install updates for all plesk components: plesk installer --select-release-current --upgrade-installed-components
  2. mizar

    Question Move Mail to specific folder

    Hello, Unfortunately, there are no standard way to do deliver email to specific folder in Plesk - it depends from IMAP server installed on server. Alternately you can add specific headers in processed messages and add a filter (sieve or client side) to move message to specific folder
  3. mizar

    Plesk WordPress Manager Failing with WordPress 4.7 Upgrade

    Hello Marc, Provided log file doesn't contain information about what packages are installed/updated. Could you execute plesk installer with --debug option and provide /var/log/plesk/install/autoinstaller3.log? Thanks,
  4. mizar

    Issue Passenger root not working, websites won't load

    Hello, Does plesk repair web helps with default apache page ? Regarding passenger - please make sure that your /etc/nginx/nginx.conf contains the line include /etc/nginx/modules.conf.d/*.conf; Thanks,
  5. mizar

    Resolved My NGINX don´t start :(

    I suppose that apt-get install --reinstall sw-nginx should be enough
  6. mizar

    Resolved Roundcube PHP Deprecated: Non-static method Auth_SASL

    This is definitely issue in roundcube - https://github.com/roundcube/roundcubemail/issues/5401 , and it is already fixed in 1.2.2.
  7. mizar

    Resolved Plesk Exception Database after upgrade Maria DB

    Hello, This errors may be caused by several instances of mysql process running simultaneously: You need to stop mariadb service with systemctl, and then stop other instances with kill -TERM, and then start mariadb again
  8. mizar

    Issue pp-nginx fails to install

    Hello, It's not possible to install onyx via version free templates yet. Please consider using major templates - https://kb.plesk.com/en/129927
  9. mizar

    Extension Dev - Handling Mails

    Yes, you can set proper ownership/permissions on handler in extension post-install.php
  10. mizar

    Issue Need to change listen.owner [php-fpm]

    Hello, No way, except fix of phpinimng. But why do you need change the socket owner?
  11. mizar

    Extension Dev - Handling Mails

    Hello, Yes, /opt/psa/admin/plib/modules/PMSP/scripts/mail-handler.sh should be executable. And probably mail-handler should be placed into sbin/, not plib
  12. mizar

    Extension Dev - Handling Mails

    Glad to help!
  13. mizar

    Extension Dev - Handling Mails

    Hello, Still cannot reproduce your issue: I copy&paste your handler into /opt/psa/admin/htdocs/modules/PMSP/mail-handler.sh make it executable: chmod 0755 /opt/psa/admin/htdocs/modules/PMSP/mail-handler.sh Register it via plesk sbin mail_handlers_control --add --priority 50...
  14. mizar

    Extension Dev - Handling Mails

    Hello, The handler is executed, but it return wrong value. Coold you attach or send me in private handler file ? Thanks,
  15. mizar

    Extension Dev - Handling Mails

    Hello, Error during 'mail-handler' handler means that execution of handler is failed - for instance handler binary is not executable, or system user popuser does't have enough permissions to run it
  16. mizar

    Extension Dev - Handling Mails

    Hello, You could check /var/log/maillog to see if handler executed, it should looks like: Aug 24 11:03:23 mybox postfix/smtpd[27184]: connect from unknown[10.10.10.10] Aug 24 11:03:23 mybox postfix/smtpd[27184]: EE742C0A91: client=unknown[10.10.10.10] Aug 24 11:03:23 mybox...
  17. mizar

    Extension Dev - Handling Mails

    Hello, Mail handler accepts the email message from stdin, process it and returns to stout. The simple handler, which add the new header looks this (error checking is omitted): #!/bin/sh sender="$1" sender="$2" context="$3" msg=`cat -` echo "X-Processed-By: my-test-handler" echo $msg echo...
  18. mizar

    Extension Dev - Handling Mails

    Hello, It's simple - in extension post-install you need to call mail_handlers_control --add, and in pre-uninstall of extension you can mail_handlers_control --remove. It should be just executable, can be shell or php or python or whatever. I'll try to provide an example here
  19. mizar

    Extension Dev - Handling Mails

    The hooking point in terms of mail handlers doesn't related with pm_Hook* methods in SDK, it's very different things. The mail_handlers_control utility accept executable (binary or script) as one of arguments, and the email messages will be passed to this binary, so you need to create separate...
  20. mizar

    Resolved Plesk Onyx Preview and FeedBack

    Hello sirneox, To resolve your problem you should install Ruby Support component from Plesk installer: Go to in Tools & Settings -> Updates and Upgrades, then Add Component and Ruby support from Web hosting group (see attached screenshot). Hello,
Back
Top