묻고답하기
다음 php 코드를 어디에 넣어야 하는지?
2010.03.23 22:24
If you don't have shell access to your server and can't modify or create .htaccess files that you can always use the set_include_path
function. Note that you may already have some value set for your include_path
so it may be a good idea to follow the model below to append the new values, instead of overwriting the entire path:
$clientLibraryPath = '/path/to/ZendGdata/library'; $oldPath = set_include_path(get_include_path() . PATH_SEPARATOR . $clientLibraryPath);
Note: Please refer to the PHP manual pages for more details on the set_include_path
function.
출처 : http://code.google.com/intl/ko-KR/apis/gdata/articles/php_client_lib.html#gdata-installation
http://framework.zend.com/download/gdata/
여기서 받은 zend gdata api 를 계정에 압축을 풀고
그 압축푼 라이브러리 폴더를
패스 걸어주라는 거 같은데
.htaccess 이 파일에다가 저 php 코드를 집어 넣으면 되는건가요??
아님 아래 코드 처럼 서비스에 접속할때 저 위의 코드를 넣어줘야 하는지?
require_once 'Zend/Loader.php'; Zend_Loader::loadClass('Zend_Gdata'); Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); Zend_Loader::loadClass('Zend_Gdata_Photos'); Zend_Loader::loadClass('Zend_Http_Client');
댓글 2
-
999
2010.03.23 23:53
-
로드_1
2010.03.24 01:53
TUTORIAL 입니다
http://akrabat.com/wp-content/uploads/Getting-Started-with-Zend-Framework.pdf
영어지만 따라하기엔 별로 어렵지 않은것 같습니다
단 어드민 계정이나 php 나 apache 설정 파일을 수정할 수 있는 권한이 있어야 할겁니다.
호스팅계정을 사용하신다면 좀 힘들것같고 서버소유자라면 위대로 할 수 있습니다
.htaccess 파일에 직접 적용? .. 아무도 답변이;