본문 바로가기

분류 전체보기186

CentOS SELINUX 끄기 추가후 혹시 php -v 하였을시 아래와 같이 나온다면 Failed loading /usr/lib/httpd/modules/ZendOptimizer.so: /usr/lib/httpd/modules/ZendOptimizer.so: cannot restore segment prot after reloc: Permission denied 레드햇 계열인 rhel 이나 fedora나 centos인 경우에는 일단 setenforce 0 으로 selinux 기능을 끄시고 vi /etc/sysconfig/selinux 열어서 SELINUX=enforcing 되어있는거을 disabled 로 변경하시면 다음부팅에도 selinux가 비활성화 됩니다 2011. 4. 29.
Welcome to oohEmbed! Welcome to oohEmbed! oohEmbed What? In a nutshell: oohEmbed is an oEmbed compatible provider of HTML embed codes for various web sites. What is this oEmbed? From oembed.com: oEmbed is a format for allowing an embedded representation of a URL on third party sites. The simple API allows a website to display embedded content (such as photos or videos) when a user posts a link to that resource, with.. 2011. 4. 26.
Installing OAuth on CentOS 5.4 I've recently needed to install the OAuth libarary on CentOS for use in creating Twitter applications and using the Linkedin API. Here's how to do it. $ yum install curl-devel gcc $ yum install pcre-devel$ yum install php-pear Next, install oauth using pecl $ pecl install oauth-beta After oauth installs, you will need to do 1 of the below 2 things 1. If the directory /etc/php.d exists, create a .. 2011. 4. 25.
MySQL 문자열 합치기 - CONCAT CONCAT select CONCAT(문자1 , 문자1) from 테이블명 update 테이블명 set 컬럼명=concat(문자1, 문자2, 문자3) where 조건값 2011. 4. 21.