You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
60 lines
1.8 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
exit;
|
|
|
|
ini_set('soap.wsdl_cache_enabled', 0);
|
|
ini_set('default_socket_timeout', '1000');
|
|
|
|
require_once '../../inc/global.inc.php';
|
|
|
|
$compilatio = new Compilatio();
|
|
$use_space = number_format($quotas->usedSpace / 1000000, 2);
|
|
$total_space = $quotas->space / 1000000;
|
|
|
|
echo "<h3>".get_lang('CompilatioDescription')."</h3>";
|
|
|
|
echo "<b>"
|
|
.get_lang('CompilatioQuota')
|
|
.":"
|
|
." </b><br>"
|
|
.sprintf(get_lang('CompilatioCreditXOnY'), $quotas->usedCredits, $quotas->credits);
|
|
|
|
?>
|
|
<br><br>
|
|
<?php
|
|
if (!isset($_GET['action'])) {
|
|
?>
|
|
<body style="margin:0px;padding:0px">
|
|
<form style="margin:0px;" method="GET">
|
|
<input type="submit" name="action" value="Test de Connexion SOAP">
|
|
</form>
|
|
<?php
|
|
} else {
|
|
echo get_lang('CompilatioConnectionTestSoap')."<br>";
|
|
echo "1) ".get_lang('CompilatioServerConnection')."<br>";
|
|
$compilatio = new Compilatio();
|
|
if ($compilatio) {
|
|
echo get_lang('CompilatioConnectionSuccessful')."<br>";
|
|
echo "2) ".get_lang('CompilatioSendTextToServer')."<br>";
|
|
$text = sprintf(get_lang('CompilatioTextSendingTestKeyX'), $compilatio->getKey());
|
|
$id_compi = $compilatio->SendDoc(
|
|
'Doc de test',
|
|
'test',
|
|
'test',
|
|
'text/plain',
|
|
$text
|
|
);
|
|
if (Compilatio::isMd5($id_compi)) {
|
|
echo get_lang('CompilatioSuccessfulTransfer')."<br>";
|
|
} else {
|
|
echo get_lang('CompilatioFailedTransfer')."<br>";
|
|
echo get_lang('CompilatioParamVerification')."<br>";
|
|
}
|
|
} else {
|
|
echo get_lang('CompilatioNoConnection')."<br>";
|
|
echo get_lang('CompilatioParamVerification')."<br>";
|
|
}
|
|
}
|
|
?>
|
|
</body>
|
|
|