• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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