• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

ftp_quota dont work with RPC API

J

jarandm@

Guest
Hi!
I`m trying to creating a hosting account, from a script with Plesk RPC API. Its working great, but i cant manage to set the ftp_quota.

My XML looks like this:

<packet version=\"1.4.0.0\">
<domain>
<add>
<gen_setup>
<name>" . $domenenavn . "</name>
<client_id>" . $klient . "</client_id>
<htype>vrt_hst</htype>
<ip_address>84.234.251.130</ip_address>
<status>0</status>
</gen_setup>

<hosting>
<vrt_hst>
<ftp_login>" . $brukernavn . "</ftp_login>
<ftp_password>" . $passord . "</ftp_password>
<ftp_quota>20</ftp_quota>
<ip_address>84.234.251.130</ip_address>
</vrt_hst>
</hosting>

<limits>
<disk_space>20971520</disk_space>
<max_traffic>1048576000</max_traffic>
<max_db>1</max_db>
</limits>
</add>
</domain>
</packet>

Help anyone?
 
Pass in value in bytes. Pass in 20 bytes and it'll read as 0MB. Multiply it by a million and it should work.
 
Back
Top