2014-02-26 5 views
0

설정 파일이 작동하지 않습니다. 내가 사용하는 코딩에 오류가 있습니다. 이 오류는 오는 :Google api 설정 파일에 오류가 있습니다.

<?php 
/* 
* Copyright 2010 Google Inc. 
* 
* Licensed under the Apache License, Version 2.0 (the "License"); 
* you may not use this file except in compliance with the License. 
* You may obtain a copy of the License at 
* 
*  http://www.apache.org/licenses/LICENSE-2.0 
* 
* Unless required by applicable law or agreed to in writing, software 
* distributed under the License is distributed on an "AS IS" BASIS, 
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
* See the License for the specific language governing permissions and 
* limitations under the License. 
*/ 

global $apiConfig; 
$apiConfig = array(
    // True if objects should be returned by the service classes. 
    // False if associative arrays should be returned (default behavior). 
    'use_objects' => false, 

    // The application_name is included in the User-Agent HTTP header. 
    'application_name' => 'Translate', 

    // OAuth2 Settings, you can get these keys at https://code.google.com/apis/console 
    'oauth2_client_id' => '730492884762.apps.googleusercontent.com', 
    'oauth2_client_secret' => '1h4a2MlzhFul7iVYG9UYst4v', 
    'oauth2_redirect_uri' => 'none', 

    // The developer key, you get this at https://code.google.com/apis/console 
    'developer_key' => 'AIzaSyC4LplsAo4KM0o_zVzw3rxBckGgx3FRj5s', 

    // Site name to show in the Google's OAuth 1 authentication screen. 
    'site_name' => 'www.funchio.com, 

    // Which Authentication, Storage and HTTP IO classes to use. 
    'authClass' => 'Google_OAuth2', 
    'ioClass'  => 'Google_CurlIO', 
    'cacheClass' => 'Google_FileCache'; 

    // Don't change these unless you're working against a special development or testing environment. 
    'basePath' => 'https://www.googleapis.com', 

    // IO Class dependent configuration, you only have to configure the values 
    // for the class that was configured as the ioClass above 
    'ioFileCache_directory' => 
     (function_exists('sys_get_temp_dir') ? 
      sys_get_temp_dir() . '/Google_Client' : 
     '/tmp/Google_Client'), 

    // Definition of service specific values like scopes, oauth token URLs, etc 
    'services' => array(
     'analytics' => array('scope' => 'https://www.googleapis.com/auth/analytics.readonly'), 
     'calendar' => array(
      'scope' => array(
       "https://www.googleapis.com/auth/calendar", 
       "https://www.googleapis.com/auth/calendar.readonly", 
     ) 
    ), 
     'books' => array('scope' => 'https://www.googleapis.com/auth/books'), 
     'latitude' => array(
      'scope' => array(
       'https://www.googleapis.com/auth/latitude.all.best', 
       'https://www.googleapis.com/auth/latitude.all.city', 
     ) 
    ), 
     'moderator' => array('scope' => 'https://www.googleapis.com/auth/moderator'), 
     'oauth2' => array(
      'scope' => array(
       'https://www.googleapis.com/auth/userinfo.profile', 
       'https://www.googleapis.com/auth/userinfo.email', 
     ) 
    ), 
     'plus' => array('scope' => 'https://www.googleapis.com/auth/plus.login'), 
     'siteVerification' => array('scope' => 'https://www.googleapis.com/auth/siteverification'), 
     'tasks' => array('scope' => 'https://www.googleapis.com/auth/tasks'), 
     'urlshortener' => array('scope' => 'https://www.googleapis.com/auth/urlshortener') 
    ) 
); 

이 문제를 해결하기 위해 도와주세요 :

Parse error: syntax error, unexpected T_STRING, expecting ')' in /home4/hangup/public_html/funchio.com/google/src/config.php on line 39

이 내 PHP 코드입니다.

답변

0

종료 (닫기)이 라인에 아포스트로피와 문자열 :

'site_name' => 'www.funchio.com,

변경하려면 다음

'site_name' => 'www.funchio.com',

+0

이제 또 다른 오류가오고이 라인을 개선 한 후. 오류가 발생합니다 - 구문 분석 오류 : 예기치 않은 ';', 예상 ')'/home4/hangup/public_html/funchio.com/google/src/config.php 온라인 41.이 문제를 해결하도록 도와주세요. 문제 – user3296690

+0

당신은 속하지 않는 세미콜론을 가지고 있습니다 (대신 쉼표가 필요합니다) : 'cacheClass'=> 'Google_FileCache';는''cacheClass '=>'Google_FileCache ' –

관련 문제