• 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

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