개발(325)
-
Key pros and cons of Drupal vs Joomla
Drupal * Rock solid & high quality platform * Real multi-site-feature (only one installation for several sites) * Any Kind of user groups & user permissions, OpenId compliant in Version 6 * Can run membership and community sites, not only CMS etc * Powerful templating system. Any XHTML or CSS template can be easily converted to Drupal. * Drupal needs a little time investment to realize all the h..
2013.08.18 -
Using MySQL Stored Procedures with PHP mysql/mysqli/pdo
Using MySQL Stored Procedures with PHP mysql/mysqli/pdohttp://www.joeyrivera.com/2009/using-mysql-stored-procedures-with-php-mysqlmysqlipdo/ Wondering how to use stored procedures with PHP and MySQL? So was I and here’s what I’ve learned. In this tutorial I’ll explain how to use PHP (I’m using 5.2.6) to call MySQL (I’m using 5.0.2) stored procedures using the following database extensions:MySQL ..
2013.08.18 -
configure 옵션들
./configure --host=x86_64-redhat-linux-gnu \ --build=x86_64-redhat-linux-gnu \ --program-prefix= \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ --sbindir=/usr/sbin \ --sysconfdir=/etc \ --datadir=/usr/share \ --includedir=/usr/include \ --libdir=/usr/lib64 \ --libexecdir=/usr/libexec \ --localstatedir=/var \ --sharedstatedir=/var/lib \ --mandir=/usr/share/man \ --infodir=/usr/share/i..
2013.08.15 -
PHP 5.5.x
Deprecated features in PHP 5.5.xext/mysql deprecationThe original MySQL extension is now deprecated, and will generate E_DEPRECATED errors when connecting to a database. Instead, use the MySQLi or PDO_MySQL extensions.preg_replace() /e modifierThe preg_replace() /e modifier is now deprecated. Instead, use the preg_replace_callback() function.intl deprecationsIntlDateFormatter::setTimeZoneID() an..
2013.08.15 -
RPM 사용법 정리
RPM 사용법 정리 RPM(Red Hat Package Management)은 레드햇 사와 수세 리눅스 사의 리눅스 배포본 제품에서 사용하는 패키지의 설치 및 제작 관리 소프트웨어다. RPM을 사용하면 패키지 관리를 쉽고 효율적으로 할 수 있다. 물론 레드햇 리눅스인 경우, '응용 프로그램 추가/삭제'(시작->시스템 설정->응용 프로그램 추가/삭제)에서 윈도우즈 식으로 쉽게 프로그램을 추가하고 삭제할 수 있지만 보다 구체적으로 작업을 하려면 역시 RPM이 필요하다. 여기서는 RPM 사용법을 간단히 정리해보겠다. RPM 버전 확인rpm --version RPM 도움말 출력rpm --help도움말이 길게 출력되므로 페이지 단위로 끊어보려면 다음과 같이 한다.rpm --help | lessrpm --help ..
2013.06.14 -
nginx 구라에 속지말자
nginx 서버 워커 방식으로 많은 동접 처리량 과 서버 퍼포먼스 뛰어나다는 그래프 신뢰성은 반으로 줄어든다. 테스트 물리 환경Xeon Quad Core 3.2GHz2G DDR3 nginx-1.4.1httpd-2.2.21 + php-5.3 + geoip 아파치 입장에서 상당히 불리안 상황으로 설정 해보았다 . 다만 아파치 프리포크 방식으로 max 6천으로 설정하고 nginx-1.4.1는 성능 좋다길래 8천 설정 했다 ab 툴로써는 nginx 가 데이터 상으로 압승이다. 네트워크 연결은 종료 되었으나 원격 수신 보장 상태netstat -nap | grep :80 | grep TIME_WAIT | wc -l 아파치 6천 닉스 8천 정상 처리 되었다고 나오면 에러 사항 없다 . 실제 . ..............
2013.06.14