My problem is that when trying to register or login with hybrid auto the page is loading, and it does not end, until the execution time runs out.
I'm stuck on that I've already reviewed everything, but I have no results.
I have the same problem, I had the social networking session with hibridauth in a test project and it worked correctly, but when I implemented it in my project it was loading, I found that the problem was when adding boostrap-select with your .css and your .js, now my problem is that I do not know why this error occurs.
Boostrap select code (.js):
document.getElementById("btncomprarB").disabled = true;
$('.selectpicker').on('changed.bs.select', function (e) {
if ($(".selectpicker").val()==null) {
document.getElementById("btncomprarB").disabled = true;
}else {
document.getElementById("btncomprarB").disabled = false;
}
});
boostrap-select cdn:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/css/bootstrap-select.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>