• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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