Passive mode로 변경 하니 해결

http://php.net/manual/kr/function.ftp-pasv.php

'PHP' 카테고리의 다른 글

[PHP] insert작업으로 생성된 id반환  (0) 2015.06.08
[PHP] getimagesize()함수가 실행되지 않을때  (0) 2015.04.24

CLI를 쓰던가 로컬에서 개발용으로 access / secret키를 쓸때

~/.aws/credentials 파일에 access / secret키들을 적어놓고쓰는데 멀티로 쓸 경우 사용방법은 아래와 같다.

http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html


[default]
aws_access_key_id = 0000000000000000
aws_secret_access_key = 0000000000000000

[test]
aws_access_key_id = 0000000000000000
aws_secret_access_key = 0000000000000000


test AWS계정으로 작업을 할 경우

터미널에서 aws ec2 describe-instances --profile test 이렇게 하시면 됩니다.

div
{
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
}
img {
    position:absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto; 
    min-height: 100%;
    min-width: 100%;
}

http://stackoverflow.com/questions/18673900/how-to-center-and-crop-an-image-to-square-with-css

http://stackoverflow.com/questions/11552380/how-to-automatically-crop-and-center-an-image

white-space: pre;

제목과 같은 메시지가 뜰때 아래를 따라하면 해결된다.


sudo npm install -g express=generator

'node.js' 카테고리의 다른 글

[node.js] connect 모듈  (0) 2013.06.15
[node.js] url 모듈  (0) 2013.06.13
[node.js] 모듈 생성, 추출(exprots, require)  (0) 2013.06.13
[node.js] 간단한 웹서버 만들기  (0) 2013.06.13
[nodejs] mac에서 nodejs설치  (0) 2013.05.28

int mysql_insert_id ([ resource $link_identifier ] )

'PHP' 카테고리의 다른 글

[PHP] AWS환경에서 ftp업로드 실패  (0) 2016.04.04
[PHP] getimagesize()함수가 실행되지 않을때  (0) 2015.04.24

ios에서 css속성에 overflow: scroll를 주면 스크롤시 부드럽지 못하고 뚝뚝 끊기는 현상이 있다.

이를 자연스럽게 하기 위해서 아래 속성을 추가하면 된다.


-webkit-overflow-scrolling: touch;


php.ini 파일의 allow_url_fopen=Off의 Off를 On으로 바꿔주자.

'PHP' 카테고리의 다른 글

[PHP] AWS환경에서 ftp업로드 실패  (0) 2016.04.04
[PHP] insert작업으로 생성된 id반환  (0) 2015.06.08

which '명령어'


'Linux' 카테고리의 다른 글

[vi] 전체삭제 명령어  (0) 2014.07.15
[Linux] 디렉토리, 파일용량 확인하기  (0) 2014.06.17

+ Recent posts