레이블이 설치인 게시물을 표시합니다. 모든 게시물 표시
레이블이 설치인 게시물을 표시합니다. 모든 게시물 표시

2019년 4월 2일 화요일

이클립스 최신버전에 CVS 설치 문제

이클립스 최신 버전(2019-03) 설치 후 CVS를 추가 하기 위해 Eclipse Marketplace에 들어가서 cvs로 검색해 보지만 아무것도 나오지 않는다.

Help -> Install New Software -> [Work With]: 2019-03 - http//download.eclipse.org/release/2019-03 -> [type filter text]:cvs -> Eclipse CVS Client

선택하게 되면 정상 적으로 설치 된다.

https://stackanswers.net/questions/how-to-install-cvs-client-for-eclipse-version-2018-09-4-9-0

2018년 4월 25일 수요일

laravel php7.2 ext-zip 설치 오류



라라벨 설치
#]composer global require "laravel/installer"


설치오류
Problem 1
- laravel/installer v2.0.1 requires ext-zip * -> the requested PHP extension zip is missing from your system.
- laravel/installer v2.0.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.
- Installation request for laravel/installer ^2.0 -> satisfiable by laravel/installer[v2.0.0, v2.0.1]

해결(php 확장 모듈 설치)
#] yum install --enablerepo=remi,remi-php72 php-pecl-zip

2015년 5월 6일 수요일

twitteroauth 0.5.3 설치 및 사용 방법(twitter api)

트위터 php libray인 twitteroauth를 선택하고 사용하려 하지만 간략한 설명과 검색해도 국내 문서가 잘 나오지 않아 간략하게 한번 정리 하고자 한다.

사용전 https://apps.twitter.com/ 이곳에서 application 생성 후 CONSUMER_KEY와 CONSUMER_SECRET 값을 사용할 수 있다..



다운로드 : https://github.com/abraham/twitteroauth/releases

버전 : PHP 5.4 이상
설치방법 :  https://twitteroauth.com/
※ 압축해제 후 전체 업로드 후 간단하게 아래와 같이 코딩하면 바로 사용가능..

<?php
require "twitteroauth/autoload.php"; use Abraham\TwitterOAuth\TwitterOAuth; $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token, $access_token_secret); $content = $connection->get("account/verify_credentials");
?>


$access_token 과 $access_token_secret 를 생략하면 app auth으로 허용된다.
※콜제한 :  https://dev.twitter.com/rest/public/rate-limits

추가
//x_rate_limit_remaining(15분동안 요청가능한 횟수)등 헤더값을 배열로 리턴
print_r($connection->getLastXHeaders());

//HTTP코드를 리턴해준다(정상:200)
print_r($connection->getLastHttpCode());