일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 명령어
- redmine
- vsftpd
- ubuntu
- Linux
- 라라벨
- php5
- CentOS
- AIR
- VMware
- Trac
- fstab
- JavaScript
- tw_cli
- BIND
- xampp
- httpd.conf
- php
- ftp
- MySQL
- Network
- APM
- nateon
- Laravel
- GlusterFS
- MOUNT
- Fedora
- exception
- VirtualBox
- Subversion
- Today
- Total
목록IT관심분야/PHP (23)
어제와 똑같이 살면서 다른 미래를 기대하지 말자
1. 기존 PHP 삭제# yum remove php-* 2. remi repo 설치// CentOS 7# yum install -y epel-releaseor# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm # rpm -ivh http://rpms.remirepo.net/enterprise/remi-release-7.rpmor# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm// CentOS 6# yum install -y epel-releaseor# rpm -Uvh https://dl.fedoraproject.org/pub/epel/..
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/imagick.so' - libMagickWand-6.Q16.so.2: cannot open shared object file: No such file or directory in Unknown on line 0 Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/imagick.so' - libMagickWand-6.Q16.so.2: cannot open shared object file: No such file or directory in Unknown on line 0You..
header('Access-Control-Allow-Origin: *');header('Access-Control-Allow-Methods: GET, POST, PUT');header("Access-Control-Allow-Headers: X-Requested-With, Content-Type");
http://browscap.org/ # mkdir /usr/local/lib/php# cd /usr/local/lib/php php_browscap.ini 다운로드wget -O php_browscap.ini http://browscap.org/stream?q=PHP_BrowsCapINI lite_php_browscap.ini 다운로드wget -O lite_php_browscap.ini http://browscap.org/stream?q=Lite_PHP_BrowsCapINI # vi /etc/php.ini[browscap]; http://php.net/browscapbrowscap = /usr/loca/lib/php/php_browscap.ini # systemctl restart httpd
Install New Software URLhttp://studio-jenkins.appcelerator.org/job/studio3-feature-development/lastSuccessfulBuild/artifact/dist/
1. pear 설치 # yum install php-pear gcc 2. 모듈설치 # yum install ImageMagick ImageMagick-devel # pecl install imagick ... 3. 설정 # vi /etc/php.d/imagick.ini extension=imagick.so 4. httpd 재시작 # /etc/init.d/httpd restart
SVN에 대한 사용자 단축키를 설정해도 먹지 않을 때...Window > Customize Perspective > Command Groups AvailabilitySVN, Team 등 사용하고자 하는 단축키를 활성화 하고 단축키를 설정하면 먹는다..ㅠㅠ 왜 안되나.. 버근가 생각했는데.. 역시 다른 방법이 있었네요.. 쩝..
pecl은 pear 패키징을 통해 이용할 수 있습니다. # yum php-perl-* perl관련 모듈을 설치 후 pecl 명령어를 이용하여 확장 모듈을 설치할 수 있습니다. # pecl install imagick # vi /etc/php.ini extension=imagick.so 추가 함으로 pecl 확장 설치가 완료됩니다. /etc/init.d/httpd restart 후 phpinfo에서 확장이 설치되었음을 확인할 수 있습니다.