본문 바로가기

개발

(326)
개발/CMS
drupal android 오픈소스 http://github.com/gby/droidpal/ 2013.08.18
개발/CMS
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
개발/php
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
개발/php
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
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