• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • 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.

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