if the local/remote soap connection to ispconfig retuns an error like
Exception unhandled:SOAP Error: Could not connect to host
change
include/classes/AutoConfig.php
from
$client = new SoapClient(null, array('location' => SOAP_LOCATION,
'uri' => SOAP_URI));
to
$client = new SoapClient(null, array('location' => SOAP_LOCATION,
'uri' => SOAP_URI,
'trace' => 1,
'stream_context'=> stream_context_create(array('ssl'=> array('verify_peer'=>false,'verify_peer_name'=>false)))
));