본문 바로가기
728x90

푸닥거리364

crontab 에 등록한 php 파일이 호출은 되지만 실행이 안될 때 [출처] http://catcape.tistory.com/2 1. dos2unix "파일명" 저장 한 파일이 Windows 파일 속성인 경우 Unix 파일 속성으로 변경한다. 2. include or "./config.php" 와 같은 상대 경로를 사용하고자 하다면 다음과 같이 cron 을 등록 한다. * * * * * root cd /home/website/ && /usr/bin/php 실행파일명 > /dev/null 2>&1 2014. 5. 14.
쉘 스크립트로 죽은 데몬 자동 재실행 하기 [출처] http://jhroom.co.kr/bd_server/5114[출처] https://kldp.org/node/85643[출처] http://www.freezner.com/archives/506 1. 쉘스크립트 작성 vi check_daemon.sh #!/bin/sh while [ 1 ] do pid=`ps -ef | grep "./daemon" | grep -v 'grep' | awk '{print $2}'` if [ -z $pid ]; then echo "daemon start" cd /usr/local/daemon/bin; ./daemonelse echo "daemon running"fi sleep 1 done 2. 데몬 등록 nohup check_daemon.sh > /dev/null 3... 2014. 4. 30.
화면회전 in javascript [출처] http://blog.naver.com/PostView.nhn?blogId=hanoora&logNo=110177880101&redirect=Dlog&widgetTypeCall=true [출처] [mobile]가로, 세로 전환 및 화면크기 변경시 처리|작성자 하누라 2014. 4. 15.
pc 표준시간대 변경에 따른 javascript 현재시간 조정 [출처] http://www.techrepublic.com/article/convert-the-local-time-to-another-time-zone-with-this-javascript/#. Convert the local time to another time zone with this JavaScriptBy Contributor Melonfire January 3, 2006, 11:32 AM PST Email Alert RSS 1Comments SaveFacebook1Twitter3Linkedin0More Email Print Reddit Delicious Digg Pinterest Stumbleupon To display the time of day of a different time zone f.. 2014. 4. 8.
갤럭시S4 기본 브라우저 갤럭시S3 기본 브라우저 렌더링 속도 차이 [출처] http://sculove.pe.kr/wp/android-browser-%ED%8C%8C%ED%8E%B8%ED%99%94%EC%97%90-%EB%8C%80%ED%95%9C-%EC%9D%B4%EC%95%BC%EA%B8%B0/ “갤럭시노트3 에서만 이런 문제가 생겨요”“삼성 폰 안드로이드 4.0에서만 이런 문제가 생겨요” 모바일 웹개발을 하다보면 위와같은 이야기를 QA에게서 또는 사용자에게서 자주 들을수 있다.난 표준대로 프로그래밍했는데 도데체 왜~! 이런단 말인가?이러한 문제가 발생했을때, Browser 환경이 OS, 버전, 제조사에 따라 다르다는 것을 알고 접근한다면, 한결 수월하게 해결할수 있다.더불어 웹프로그래밍이 동작하는 Browser (보통은 기본 브라우저)가 어떤 종류의 것인지를 안다면.. 2014. 4. 8.
sharepoint ms-dlgContent resize in javascript [출처] http://chadschroeder.blogspot.kr/2012/10/sharepoint-2010-easy-dynamic-resize-of.html function AutosizeDialog() { //resize dialog if we are in one var dlg = typeof(SP.UI.ModalDialog.get_childDialog) == "function" ? SP.UI.ModalDialog.get_childDialog() : null; if (dlg != null) { dlg.autoSize(); var dlgWin = $(".ms-dlgContent", window.parent.document); dlgWin.css({ top: ($(window.top).height() .. 2014. 3. 24.
javascript 동적 css 파일 반영 [출처] http://stackoverflow.com/questions/2099517/dynamically-loading-an-external-css-file Load "oldstyle.css" 2014. 3. 11.
쉐어포인트 파일첨부 용량 제한 컨셉 [출처] http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/sharepoint-online-software-boundaries-and-limits-HA102694293.aspx Limits for SharePoint Online for Office 365 Enterprise, Education, and Government These plans have common boundaries and limits. The following table describes those limits.FeatureOffice 365 Enterprise plans (including E1 – E4, A2-A4, G1-G4, and Shar.. 2014. 3. 11.
Locale IDs Assigned by Microsoft - 다국어처리 코드 [출처] http://msdn.microsoft.com/en-us/goglobal/bb964664.aspx Language - Country/RegionLCID HexLCID DecAfrikaans - South Africa04361078Albanian - Albania041c1052Alsatian04841156Amharic - Ethiopia045e1118Arabic - Saudi Arabia04011025Arabic - Algeria14015121Arabic - Bahrain3c0115361Arabic - Egypt0c013073Arabic - Iraq08012049Arabic - Jordan2c0111265Arabic - Kuwait340113313Arabic - Lebanon300112289Ara.. 2014. 3. 10.
728x90