Hi all,
After installing the google_drive_sync I cannot access neither the drupal configuration page (admin/config) nor admin/reports/status

Message:
Fatal error: Call to undefined function googledrive_clientsdk_get_version() in /htdocs/public/www/sites/all/modules/libraries/libraries.module on line 498

This line is:

  // Invoke callbacks in the 'pre-detect' group.
  libraries_invoke('pre-detect', $library);

  // Detect library version, if not hardcoded.
  if (!isset($library['version'])) {
    // We support both a single parameter, which is an associative array, and an
    // indexed array of multiple parameters.
    if (isset($library['version arguments'][0])) {
      // Add the library as the first argument.
      $library['version'] = call_user_func_array($library['version callback'], array_merge(array($library), $library['version arguments']));
    }
    else {
  $library['version'] = $library['version callback']($library, $library['version arguments']);  // Line 498
    }
    if (empty($library['version'])) {
      $library['error'] = 'not detected';
      $library['error message'] = t('The version of the %library library could not be detected.', array(
        '%library' => $library['name'],
      ));
      return $library;

What am I doing wrong? Thanks.

Comments

k.dani’s picture

Have you tried it with the alpha1 version?