Originariamente inviato da br1
Puo' darsi che il server ora verifichi il method... prova ad usare POST
Sono ovviamente illazioni, dovresti contattare chi fornisce il servizio
Col POST non funziona, purtroppo.
Contattare chi fornisce il sito... non so se mi daranno queste informazioni: avranno cambiato il sistema di login proprio per evitare questi automatismi?
Comunque la verifica delle credenziali penso sia in mezzo a questo codice (per me incomprensibile...):
codice:
<script type="text/javascript">
$(document).ready(function () {
$(document).bind('contextmenu', function (e) {
e.preventDefault();
});
$('.cluetip').cluetip({ splitTitle: '|', width: '200px', showTitle: false });
if (self == top) {
document.documentElement.style.visibility = 'visible';
}
else {
top.location = self.location;
}
$('.preventDupSubmit input:submit').removeAttr('disabled').each(function () {
$('<img/>')[0].src = '/images/button_disabled_right.gif'; // preload the disable image
});
var validator = $(".preventDupSubmit").data("validator");
if (validator) {
validator.settings.submitHandler = function(form) {
$(form).find('input:submit').prop('disabled', true).addClass("dupSubmitPrevented");
setTimeout(function() { form.submit(); }, 10);
};
}
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32729706-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
});
</script>