• 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.

Recent content by jimlongo56

  1. J

    Issue pm_View_List_Simple options

    Any reason why this table should not default to sorting by col-5 desc and page size of 25. $options = [ 'defaultSortField' => 'column-5', 'defaultSortDirection' => pm_View_List_Simple::SORT_DIR_DOWN, 'defaultItemsPerPage' => 25, ]...
  2. J

    Resolved REST API POST /domains

    Yes apparently documentation is being corrected, thanks.
  3. J

    Forwarded to devs XML Subdomain Add (with FTP)

    TITLE: XML Subdomain Add (with FTP) PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE: Plesk Onyx Version 17.8.11 on ‪CentOS Linux 7.6.1810 PROBLEM DESCRIPTION: Using the add operation as documented here Creating Subdomain Creates the subdomain with the proper document root, but Does not create...
  4. J

    Resolved REST API POST /domains

    I've had a few questions and there just doesn't seem to be very much API support for developers. Tried Discord, nothing there. There should at least be a dedicated developer forum, I'm never sure where I should post API related questions. General Contact email often takes better part of a...
  5. J

    Resolved REST API POST /domains

    So maybe the REST API is not the way to go. Found this and it looks very promising . . . Using the XML API, this is virtually straight from the documentation at Creating Subdomain PROBLEM with this is the FTP Account is not being created. I get an ok, creates the subdomain with the proper...
  6. J

    Resolved REST API POST /domains

    in case it helps, this will work to create the subdomain with physical webhosting. (don't use a parent domain) { "name": "subdomain.mywebsite.website", "hosting_type": "virtual", "hosting_settings": { "ftp_login": "test_login", "ftp_password": "test_pwd" }, "owner_client"...
  7. J

    Resolved REST API POST /domains

    Trying to create a SUBDOMAIN with physical hosting. Sending a POST call to the REST API creates the subdomain but it has no physical hosting attached to it. The documentation states the choices are as follows hosting_type: description: >- It specifies the hosting type of the...
  8. J

    Resolved CustomButtons order

    I found a hack that helped, here it is in case anyone is looking for something similar. Using the param 'id' will change the id=[0]. At this point the button goes last in the toolbar not first. Any ID will do the same thing, there doesn't seem to be any logic or ordering going on...
  9. J

    Resolved CustomButtons order

    Is there no way to order CustomButtons that are in the Toolbar. "order" seems to have no effect. The button always appears first. And is there a way to assign an ID. it seems to always be id=[0]. 'place' => [self::PLACE_TOOLBAR], 'order' => 4, Thanks.
  10. J

    Question No documentation on how to display errors

    I see plenty of examples of $this->_status->addError() and addMessage() in various Controllers. But nowhere do I see how to display these in a view. Is there any documentation other than the sparse outlines of the methods in Extensions API Documentation - Plesk 17.5 To recap in my...
  11. J

    Resolved enable mod_substitute from command line

    Perfect, and that's regardless of Linux distribution?
  12. J

    Resolved enable mod_substitute from command line

    The question is "how can I turn it on via command line?". I want to have it as part of an install.sh
  13. J

    Resolved enable mod_substitute from command line

    CentOS 7, when I do 'yum list' I don't even see mod_substitute. But it's available to be enabled in Home > Tools & Settings > Apache Web Server Settings Is it installed by Plesk, and just needs to be enabled/disabled? If so is there a plesk command line option to do that?
  14. J

    Resolved enable mod_substitute from command line

    My extension requires mod_substitute. I can get true or false from # httpd -M | grep -ci -o "substitute_module" Is there a way to enable it if the answer is false? Should I use yum, or some other mechanism? Thanks for any advice.
Back
Top