• 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
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Request is invalid response yet request seems ok

Matthew James

Basic Pleskian
Hi,

I am trying to update the ftp password for a domain using the following request:

<packet version="1.6.0.0">
<domain>
<set>
<filter>
<domain-name>domain.com</domain-name>
</filter>
<values>
<hosting>
<vrt_hst>
<property>
<name>ftp_password</name>
<value>qwerty</value>
</property>
</vrt_hst>
</hosting>
</values>
</set>
</domain>
</packet>

Yet I am getting a response that the request is invalid, however I cannot see why?

I have been looking through the documentation for a couple of hours now but this does not shed any light on the problem - can anyone here help me?

Thanks
 
Thanks for that, it did help me get to a solution in the end.

The actual correct way to do it for 1.6.0.0> for anyone interested is:

<packet version="1.6.0.0">
<domain>
<set>
<filter>
<domain-name>domain.com</domain-name>
</filter>
<values>
<hosting>
<vrt_hst>
<property>
<name>ftp_login</name>
<value>login</value>
</property>
<property>
<name>ftp_password</name>
<value>pass</value>
</property>
<ip_address>ip</ip_address>
</vrt_hst>
</hosting>
</values>
</set>
</domain>
</packet>
 
Back
Top