I can not log in to my site in drupal, with hybridauth

0

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.

    
asked by Carlitos Saca 12.07.2017 в 08:04
source

1 answer

0

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>
    
answered by 12.07.2017 в 22:50