-
Hi @everyone.
-
Good morning, how are you?
-
I am trying to get supported charsets from mysql api, so I thought, mysql_get_supported_charsets function is user level, not admin level, so I thought, I will be able to get charsets after getting session id. So, to get session id, I tried to use site_hijack with passing domain name, but it returns this error.
command `site_hijack' does not exist. Did you mean `site_bless'?
site_hijack response:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Server</faultcode>
<faultstring>command `site_hijack' does not exist. Did you mean `site_bless'?</faultstring>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
get_supported_charsets response:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:net.apnscp.api" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<tns:mysql_get_supported_charsets/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
I think, this is a user function, not admin function. I don’t understand why this happened. Can you please let me know solutions and how to check admin functions? So I can verify whether this function is an admin or user function? Thanks.