카테고리 없음2012. 1. 11. 18:08
facebook app 개발시 tester 계정을 추가하는 경우 추가된 계정으로 로그인하면 알림메시지가 뜨는데, 

이때 테스터요청 링크를 클릭하면 

https://developers.facebook.com/apps?view=app_requests
 페이지로 진행하게 되는데 해당 페이지에서 링크를 클릭해도 다시 해당페이지가 열려서 테스터 수락을 못하게 되는 버그가 있다.

이런 경우 해당 링크로 가지 말고 다음 URL 을 직접 방문하면 테스터 요청을 수락할 수 있다.

http://www.facebook.com/reqs.php#platform_dev
Posted by hasung
programming/Objective-C2011. 8. 9. 09:57
PushViewController 하기 전 다음코드를 입력

UIBarButtonItem *backButton = [[UIBarButtonItem alloc] initWithTitle: @"Back Button Text" style: UIBarButtonItemStyleBordered target: nil action: nil]; [self.navigationItem setBackBarButtonItem: backButton]; [backButton release];
Posted by hasung
기타2011. 5. 6. 13:40
nginx 서버를 운용하다 업로드용량이 설정값보다 초과되는 경우 nginx.conf 파일에서 client_max_body_size 값을 늘려주시면 됩니다.

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;

    server {
        client_max_body_size 20M;
        listen       80;
        server_name  localhost;

        # Main location
        location / {
            proxy_pass         http://127.0.0.1:8000/;
        }
    }
}

디폴트값은 1MB 라는군요. 
Posted by hasung