• 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

    Resolved Can't start apache via Plesk

    The pleskrc script check for presence of /bin/systemtctl file, and if it found - it will use it, so the fix just tell pleskrc to check systemctl_pp instead, which doesn't exists, and in this case pleskrc will use SysVinit scripts instead. AFAIK Ubuntu 14 by default comes with upstart, and...
  2. mizar

    Resolved Can't start apache via Plesk

    Hello, It seems you have systemd installed on Ubuntu 14.04. Unfortunately Plesk doesn't work well with such old version of systemd. You can either switch back to upstart, or for immediate solution you can disable systemctl calls in pleskrc by executing sed -i.orig s/systemctl/systemctl_pp/g...
  3. mizar

    Resolved Can't start apache via Plesk

    Hello, You can check /var/log/plesk/rc_actions.log, also you can run /bin/bash -x /opt/psa/admin/sbin/pleskrc apache2 status and check the output
  4. mizar

    Resolved Can't start apache via Plesk

    Looks like a Plesk cannot properly determined a status of apache. Can you check that status of service in system and status of service plesk are equal: by checking /usr/local/psa/admin/sbin/websrvmng --status command and /etc/init.d/apache2 status when apache is stopped and started?
  5. mizar

    Resolved Error updating Plesk 17.0.17 from update 3 running on CentOS 7.3

    It seems the selinux forbid rpm to unpack the packages. Please either disable it (at least for upgrade time) by executing setenforce 0 or make sure that Plesk policy is loaded - semodule -l | grep plesk
  6. mizar

    Plesk WordPress Manager Failing with WordPress 4.7 Upgrade

    The yum failed with error - UnicodeEncodeError: 'ascii' codec can't encode character u'\xe4' in position 4: ordinal not in range(128), it might occurred because you have non-ascii locale, i'll check and add the bug, could you try to run: env LC_ALL=C LANG=C plesk installer...
  7. 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
  8. 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
  9. 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,
  10. 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,
  11. mizar

    Resolved My NGINX don´t start :(

    I suppose that apt-get install --reinstall sw-nginx should be enough
  12. 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.
  13. 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
  14. 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
  15. mizar

    Extension Dev - Handling Mails

    Yes, you can set proper ownership/permissions on handler in extension post-install.php
  16. 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?
  17. 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
  18. mizar

    Extension Dev - Handling Mails

    Glad to help!
  19. 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...
  20. 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,
Back
Top