Skip to content

Feature Suggestions

Please provide here your suggestion for new functionality for Plesk. We encourage you to review and vote for suggestions of others. The top-ranked suggestions are likely to be included in the next versions of Plesk.

Please write in English so that voters from all over the world can read and support your request.

For technical assistance, contact Plesk support
For questions, bug reports, discussions and free assistance, check our Forum and Facebook page
For additional information, see Documentation, Knowledge Base and Blog
Follow us on Twitter for more news on Plesk development

Off-topic posts will be removed from here

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

1471 results found

  1. Add the possibility to get a list of all databases s using REST API

    At the moment it is not possible to get a list of databases using REST API( CLI gate) because "--list" is absent for "plesk bin database" command

    Please add the mentioned functionality

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  API  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. Add a detailed status message for restoring specific domains via Backup Manager

    Restoring a backup in Tools & Settings > Backup Manager always results in a generic message:

    Restoration of the backup <timestamp> completed

    But this message remains the same both after restoring a full server backup or just some specific domains, which can be confusing.

    If only specific domains have been restored, please add a separate message listing these domains.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. DNS Forwarding

    It'd be great to have an option to configure DNS Forwarding with masking in Plesk.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  DNS  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. Use the same time format for all elements in Backup Manager

    The "Tools & Settings > Backup Manager > Schedule" menu is using 24-hour format for setting a time for backup startup, but the backup list in "Tools & Settings > Backup Manager" is using 12-hour format (AM/PM), which can be confusing.

    Please use the same format between these two elements, or add an option to select the preferred format.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. Email forwarding stops forwarding mail back to the address that sent the mail

    We have an email address for "operations", which forwards emails to three separate accounts. When someone on the team replies to an email, it gets sent to "operations" and all of the other addresses listed. "operations" then receives the email and forwards it back again to the address that sent it.

    My idea is to have an option for the forwarding email to NOT forward emails back to the email address it was received from. It recognizes that email address is in its forwarding list and won't forward it back to that specific email.

    So, instead of user 1 ->…

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Mail  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. Add the option to display doc and xls format via the File Manager view/editor.

    Add the option to display basic Word (doc) and Excel (xls) format via the File Manager view/editor.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. central webmail management

    extend the webmail settings screen like the php settings.
    show the amount and which domain is using which webmail client and allow changes to it.
    now after the horde desaster it would be way easier to identify domains using it and changing that.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Mail  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. Rest API - Get assigned plan from domain

    Using the REST API it is not possible to view the assigned plan from a domain. You can only add a plan when creating a domain. I would like the see what plan is assigned to a domain for our billing process.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    Thank you for your input! We will consider this functionality in upcoming releases if it is popular. Everyone, please continue voting for this feature if you consider it important. 


    At the moment you can use the following SQL query for psa database for getting what you want:


    SELECT dom.id as domain_id, dom.name as domain, ps.plan_id, t.name as plan_name from domains dom LEFT JOIN Subscriptions s ON (dom.id=s.object_id AND s.object_type='domain') LEFT JOIN PlansSubscriptions ps ON ps.subscription_id=s.id LEFT JOIN Templates t ON t.id=ps.plan_id;


    -- 

    IG

  9. Add the import feature to the "plesk ext wp-toolkit --wp-cli" utility

    There is an export option for the "plesk ext wp-toolkit --wp-cli":
    plesk ext wp-toolkit --wp-cli -instance-id 2 -- export
    Starting export process...
    Writing to file /var/www/vhosts/example.com/httpdocs/futureinvestments.wordpress.2022-06-03.000.xml
    Success: All done with export.
    But the import feature require native "wp" utility to be installed, and fails via plesk utility with error:
    WordPress Importer needs to be installed. Try 'wp plugin install wordpress-importer --activate'.

    Such option (import) in plesk ext wp-toolkit --wp-cli would improve usability

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    1 comment  ·  WP Toolkit  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. Limit rate of backup

    Full weekly backup for all domains create a huge I/O throughput on our SAN that stress too much our infrastructure until backup ends. It would great if we can tune data through a pipe like "pv" command do.

    I.e.
    This is an example of backup that stress the SAN:
    mysqldump -A -q --single-transaction=TRUE -u $MUSER -p$MPASS | gzip > $_file

    This instead is and example that do not stress the SAN:
    mysqldump -A -q --single-transaction=TRUE -u $MUSER -p$MPASS | gzip | pv -L 512k > $_file

    in the last command we set the maximum rate limit of 512k. Of course…

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. Create security.txt

    Help admins and customers to create a security.txt file when creating a site in Plesk Panel, see https://securitytxt.org/
    No details yet.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    open discussion  ·  2 comments  ·  Security  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. Progress bar and display time left for the transfer via Site Import

    It would be nice to have a timer that will show time left to finish the site transfer via Site Import extension.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Migrations  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. Сhange type of notifications via CLI using the utility plesk sbin crontabmng

    Please add feature to change type of notification (do not notify, errors only, every time) about scheduled task completion via CLI with plesk sbin crontabmng utility
    Currently, to change such notifications (via CLI) not only values in database need to be changed but also values for SendMailOnlyIfFail option in C:\Program Files (x86)\Plesk\Schedules\psaadm, C:\Program Files (x86)\Plesk\Schedules\Root files.

    Such steps are not ideal while changing the settings for a large number of servers.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. Log IP and port connection data when updating WordPress plugin

    IP address and port the server connects to when updating WordPress plugins should be logged and shown in WordPress Toolkit log.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. Separate error log for Let's Encrypt and SSLIt!

    Separate error log for Let's Encrypt and SSLIt! would facilitate panel.log analysis a lot. Now panel.log is flooded with LE and SSLIt errors.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Web / SSL  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. Ability to set limit on the count of cron tasks in service plan settings

    Some users creates a lot of cron tasks and can overload server. Please add Ability to set limit on the count of cron tasks in service plan settings

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. Notify about email without mailbox creation in a more noticeable way

    Plesk allows to create email without a mailbox when the limit for the mailboxes is exceeded, but the mention regarding the "Mailbox - Off" is not always obvious for the customer and might be missed, allowing him to believe that the mailbox is created and trying to log into it, eventually getting banned by fail2ban.
    A more noticeable notification regarding might be useful.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Mail  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. Additional items in "Show me as" in Plesk Premium Email webmailer

    Add the functionality to add items to "Show me as" in Calendar events in Plesk Premium Email webmail

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Extensions  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. Allow rearranging folders in Plesk Premium Email webmailer

    It should be possible to rearrange folders in Plesk Premium Email webmailer

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Extensions  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. Add option to calculate the .trash folder in Home directory of File Manager

    Could you please add the option to calculate .trash folder in Home directory of the File Manager (so when calculating the size of all contents of the domain you can choose the checkbox of the ".trash" folder)
    Main reason is that before the .trash bin was implemented in Plesk the size of the Home direcory calculated in File Manager (more > calculate) matched with the amount disk space used in Statistics

    It would be great if this was optional (for example can be configured for some the customer via panel.ini)

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  • Don't see your idea?

Feedback and Knowledge Base