일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- GlusterFS
- Network
- redmine
- CentOS
- AIR
- VirtualBox
- BIND
- Fedora
- php5
- MOUNT
- Subversion
- MySQL
- APM
- tw_cli
- vsftpd
- Laravel
- 라라벨
- fstab
- xampp
- JavaScript
- httpd.conf
- ftp
- Linux
- Trac
- exception
- ubuntu
- VMware
- php
- nateon
- 명령어
- Today
- Total
목록분류 전체보기 (106)
어제와 똑같이 살면서 다른 미래를 기대하지 말자
pecl은 pear 패키징을 통해 이용할 수 있습니다. # yum php-perl-* perl관련 모듈을 설치 후 pecl 명령어를 이용하여 확장 모듈을 설치할 수 있습니다. # pecl install imagick # vi /etc/php.ini extension=imagick.so 추가 함으로 pecl 확장 설치가 완료됩니다. /etc/init.d/httpd restart 후 phpinfo에서 확장이 설치되었음을 확인할 수 있습니다.
Zend Framework를 사용하다보면 간혹 update, insert 등의 쿼리가 제대로 날라가는지 확인할 때가 있습니다. select 같은경우 echo로 확인하면 되지만 일반 쿼리는 확인할 길이 없죠.. 하지만 Zend Framework DB에 Profile일란 객체가 있습니다. 그 객체를 이용해 DB쿼리에 대한 정보를 확인할 수 있습니다. $db = Zend_Registry::get('db'); $db->getProfiler()->setEnabled(true); // query... $profiler = $db->getProfiler(); echo $profiler->getLastQueryProfile()->getQuery(); ※ Profile에 대한 상세 정보는 아래 사이트를 참고하세요. ht..
point, mm, inch, px 단위환산 1. Inch1) inch to point (1 inch = 72 point)inch * 72 = point2) inch to mm (1 inch = 25.4 mm)inch * 25.4 = mm3) inch to px (1 inch = 96 px)inch * 96(dpi) = px4) inch to dpi px / inch = dpi 2. Point1) point to inch (1 point = 1/72 inch)point / 72 = inch2) point to mm (1 point = 0.352777778 mm)point / 72 * 25.4 = mm3) point to px 1 point = 1px * 0.75 (96dpi기준)point * 96(dpi..
1. 이클립스 Redmine-Mylyn Connector 설치 http://redmin-mylyncon.sourceforge.net/update-site/N/ ※ http://sourceforge.net/apps/wordpress/redmin-mylyncon 나머진 레드마인과 이클립스 연동 부분은 캡쳐가 귀찮은 관계로.. 아래 사이트를 참고하세요.. http://jabsiri.tistory.com/35 http://www.redmine.org/projects/redmine/wiki/HowTo_Mylyn
화면상 시간 타임별이나 인터프린터 진행상황을 실시간으로 확인하고 싶은 경우가 있다. 테스트 해본바.. 아래 소스를 적용하면 익스플로어, 파이어폭스 둘다 동일하게 작동됨... ob_end_clean(); // clean을 꼭 넣어야 됨... 테스트 시 이런저런 문제가 발생됨... for($i=1; $i
사이트나 어플리케이션 연동 시 XML을 많이 사용을 하고 있습니다. SOAP와 WSDL을 이용한 SOAP 통신을 알고는 있었지만 개발 기간과 귀차니즘으로 테스트를 하지 않았는데 확인을 해보니 간단하네요..^^ WSDL 모드는 테스트 해보니 잘 안되서 pass 했는데 혹시 아시는 분 안계시나요~ ㅠㅠ Zend Framework 유져가 한국에도 좀 많았음 좋겠네요.. ※ php-soap 모듈 확인을 하셔야 됩니다. (yum install php-soap) 1. Zend_Soap_Server & Zend_Soap_Client 사용 (WSDL 미사용) class MyClass { public function method1() { return 'method1'; } public function method2() ..
GD 처리 중 imagecreatefromjpeg 함수 사용 시 특정 jpeg 파일에 대해 imagecreatefromjpeg() : gd-jpeg, libjpeg: recoverable error: Premature end of JPEG... 에러가 발생.. 구굴링 결과.. 1. php 5.0 ~ 5.1.2에서는 최신버전으로 php 업데이트.. 2. php 5.1.3 이상일 경우 gd.jpeg_ignore_warning 설정을 해제한다. php.ini 에서 설정 변경 [gd] ; Tell the jpeg decode to ignore warnings and try to create ; a gd image. The warning will then be displayed as notices ; disabl..