root(717)
-
php.ini 디폴트 설정
php.ini 디폴트 설정 [PHP] ;;;;;;;;;;;;;;;;;;;; About php.ini ;;;;;;;;;;;;;;;;;;;;; PHP's initialization file, generally called php.ini, is responsible for; configuring many of the aspects of PHP's behavior. ; PHP attempts to find and load this configuration from a number of locations.; The following is a summary of its search order:; 1. SAPI module specific location.; 2. The PHPRC environment variabl..
2014.12.09 -
linux 터미널 한글 설정
# vi /etc/sysconfig/i18n LANG="ko_KR.UTF-8"SUPPORTED="ko_KR.UTF-8:ko_KR:ko"SYSFONT="latarcyrheb-sun16"bashrc 파일 설정 # vi /etc/bashrc export LANG="ko_KR.UTF-8"export LC_ALL="ko_KR.UTF-8"vimrc 파일 설정 # vi /etc/vimrc if v:lang =~ "utf8$" || v:lang =~ "UTF-8$"set fileencodings=utf-8,euc-krendif
2014.12.08 -
ssh 클라이언트 설치
yum install openssh-clients
2014.12.08 -
ssh scp remote file downloads
ssh scp remote file downloads scp -P portnumber account@ip:path ex ) scp -P 22 smartflex@smartflex.co.kr:/home/smartflex/file.tar /Users/download path
2014.12.08 -
start apache server I received an error
1) From command line type hostname to get your hostname. Example output might be example.com 2) Edit /etc/hosts and change the lines to match your hostname. Example: 127.0.0.1 localhost.localdomain localhost.localdomain localhost4::1 localhost.localdomain localhost.localdomain localhost6# smartflex192.168.1.30 smartflex.co.kr 3) Open your httpd.conf file and make sure ServerName is defined. If i..
2014.12.08 -
php compile troubleshooting
yum install libxml2-delvel yum install libxml2 configure: error: Please reinstall the libcurl distribution -easy.h should be in /include/curl/ yum install libcurl yum install libcurl-devel GD install checking whether to enable JIS-mapped Japanese font support in GD… noIf configure fails try —with-vpx-dir= yum install libjpeg yum install libjpeg-devel yum install libpngyum install libpng-devel yu..
2014.12.08