• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

hosting type new webspace

R

rik_plesk

Guest
Im using the 1.6.3 API and I want to add new users and domains. For this I use the following xml:

"<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.0">
<webspace>
<add>
<gen_setup>
<name> the domain name</name>
<owner-id>66</owner-id>
<ip_address></ip_address>
</gen_setup>

<plan-name> plan name </plan-name>
</add>
</webspace>
</packet>

it adds the domain just fine to the intended owner but in the plesk (10.4.4) control panel it says hosting: no hosting

even though a plan is attached.

What could have happened?

Thanks in advance
 
solved

Thanks Igor,

xml below will work for me, i guess ftp password is also important

<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.0">
<webspace>
<add>
<gen_setup>
<name>plesktester.nl</name>
<htype>vrt_hst</htype>
<owner-id>78</owner-id>
<ip_address>xxxx</ip_address>
<status>0</status>
</gen_setup>
<hosting>
<vrt_hst>
<property>
<name>ssl</name>
<value>false</value>
</property>
<property>
<name>ftp_login</name>
<value>pleskk</value>
</property>
<property>
<name>ftp_password</name>
<value>xxxxxxxx</value>
</property>
<ip_address>xxxxxxxx</ip_address>
</vrt_hst>
</hosting>
<plan-name>xxxxxxxx</plan-name>
</add>
</webspace>
</packet>
 
Back
Top