If it is going to log in using "Google Connect", it will not progress from "Connect to Server ...".

When the code of URL is described to jquery_update.module below, it becomes impossible to access a site.

http://drupal.org/node/775924#comment-2987316

Therefore, the following was described instead.

function jquery_update_jquery_path() { 
        $jquery_file = preg_match('/(admin|edit|add)/', request_uri()) ?
            array('none' => 'jquery.js',       'min' => 'jquery.min.js') :
            array('none' => 'jquery-1.4.2.js', 'min' => 'jquery-1.4.2.min.js');
        return JQUERY_UPDATE_REPLACE_PATH . '/' . $jquery_file[variable_get('jquery_update_compression_type', 'min')];
    } 

A situation still does not change.
I want you to teach ways of coping.

I would like to log in using Google account.
Thank you for your consideration.

Comments

4ir4o’s picture

Is there any progress on this issue?

I have the same problem. After clicking on Gmail or any other login service just "Connect to Server ..." message appears.

anil614sagar’s picture

Dear Drupaler,

We will look into this issue and get back to you within couple of days.

jirou_ueda’s picture

Hi,4ir4o.
Unfortunately, it is not progress.

jirou_ueda’s picture

Hi,anil614sagar.
Thanks for the comment.
I expect to wait.

delion’s picture

i am having this same issue has anyone figured out a fix for this or is it in the settings?

TravisJohnston’s picture

Yeah I got this to work recently and it was a sheer pain! I don't understand why the module says you need 1.4.2 but if you look at the code in the .module file, its calling 1.8.2...

So what I did was this, and no I'm not proud of it.

I HACKED THE MODULE! *cries...

You could probably write a hook but didn't know how. I tried Better Jquery for D6 which worked great but it broke all my internal jquery so that lasted 5 minutes.

Change this in gconnect.module line 37

function gconnect_footer() {
  global $user;
  if (!($user->uid)) {
    //TODO: Add external javascript only in user login or register form pages.
    $content = '<script type="text/javascript" src="location to the 1.4.2 js min file, mine was saved into my theme folder so I pointed it there"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/googleapis/0.0.3/googleapis.min.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/jsapi"></script>';
  }
  return $content;
}