Weird Response

DigitalDev

Verified User
Joined
Jul 20, 2022
Messages
90
Hi guys,
Im working on some API functions for my wordpress plugin and stumbled on a problem, although the code below will actually remove and delete a user from the DA server as it should do it throws a response

Service Unavailable​


The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.

this is the only command in all my features that gives me this response.

My code to call the API

$da = $this->serverConn($server);
$result = $da->query("CMD_API_SELECT_USERS", array(
"confirmed" => 'Confirm',
"delete" => 'yes',
"select0" => $user
), "POST");

$da->logout(TRUE);

As you will see $da is the connection to my server, i am issuing command CMD_API_SELECT_USERS with the POST data the command needs to action the delete event.

Any help or advice would be appreciated, am i doing something wrong?
 
Back
Top