No Image

php + xcache 설치 및 연동

2015-07-20 KENNETH 0

Install XCache   1. 다운로드 공식사이트 : http://xcache.lighttpd.net 다운로드페이지 : http://xcache.lighttpd.net/wiki/ReleaseArchive (2015/07/20 기준) Latest Stable Release: 3.2.x (full 5.1 ~ 5.6 support) Old Stable Release: 3.1.x (full 5.1 ~ 5.4 support) 이렇게 되어있으므로 최신 버전을 사용하는 분들은 그냥 latest를 사용하심 되겠다.   2. 설치 wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz tar zxvpf xcache-3.2.0.tar.gz cd xcache-3.2.0 phpize ./configure –enable-xcache’ ‘–with-php-config=/usr/local/bin/php-config’ ‘–enable-xcache-coverager make cp modules/xcache.so /usr/local/lib/php/extensions/ mkdir /home/ADMIN cp -rv htdocs /home/ADMIN/xcache   3. 설정 php.ini 에 아래내용 추가 (extension_dir = “/usr/local/lib/php/extensions” 상황을 가정함) 참고로 관리자 모드를 사용하지 않는다면 xcache.admin.X 관련 항목은 설정하지 않아도 되며.. xcache.admin.pass 에는 md5 인코딩 값이 들어가기 때문에.. 적절히 생성…. php python 뭐 대충 이렇게…   php -i|grep xcache 결과가 위에 설정한 내용들로 죽 나온다거나.. <?phpinfo();?> 내용에 xcache 관련 내용이 포함되어 있다면 정상적으로 로딩된 것.   4. 관리자 화면   * 아파치 설정 Alias /xcache /home/ADMIN/xcache * 접속 http://youripaddress/xcache

No Image

July 2015 Security Updates

2015-07-15 KENNETH 0

Today we released security updates for Microsoft Windows, Microsoft Office, Microsoft SQL Server, and Internet Explorer. As a best practice, we encourage customers to apply security updates as soon as they are released. For more information about this month’s security updates and advisories visit the Security TechNet Library.  You can also follow the Microsoft Security Response Center (MSRC) team on Twitter at @MSFTSecResponse MSRC Team Source: ms-msrc

No Image

XE 1.8.6 release

2015-07-13 KENNETH 0

출처 : https://www.xpressengine.com/devlog/23043495 XE-1.8.6 버전이 업데이트 되었습니다. 1.8.5 부터 빠르게 패치가 나오고 있는듯 하네요.. 눈에 띄는것은 – 보안취약점 하나 – XEDITION 테마의 슬라이드문제 지난번엔 슬라이드 비활성화가 안되는 문제가 있었는데 이번에는 슬라이드 이미지 적용이 안되는 문제가 있었네요   다운로드 및 변경내역 정리 http://www.xpressengine.com/?mid=download&package_srl=18325662

No Image

Fatal error: Call to undefined function session_register() on php-5.4

2015-07-07 KENNETH 0

error messag : Fatal error: Call to undefined function session_register() 참고 : http://php.net/manual/en/function.session-register.php 내용에 따라 5.4부터는 session_register 함수를 사용할 수 없음 session_register(”username”);  형태의 함수를 5.4 이상에서는 $_SESSION[’username’]=”kekkeekekek”; 뭐 이런 형태로 사용해야 한다고…

No Image

NL-00303: syntax error in NV string

2015-07-07 KENNETH 0

오라클 리스너 구동시 다음과 같은 에러가 발생하면서 리스너 시작이 안될때 TNS-01155: Incorrectly specified SID_LIST_LISTENER parameter in LISTENER.ORA NL-00303: syntax error in NV string 뭐 결론은 구문 에러이다… 하지만 아무리 봐도 뭐가 잘못됐는지 알 수 없었는데… 아래 기본 생성되는 listener.ora 파일중… SID_LIST_LISTENER = (SID_LIST = (SID_DESC = (SID_NAME = CLRExtProc) (ORACLE_HOME = D:\oracle\product\12.1.0) (PROGRAM = extproc) (ENVS = <span style=”line-height: 1.5;”>”EXTPROC_DLLS=ONLY:D:\oracle\product\12.1.0\bin\oraclr12.dll”)</span> ) ) LISTENER = (DESCRIPTION_LIST = (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521)) (ADDRESS = (PROTOCOL = TCP)(HOST = WIN-JIRAKHOME) (PORT = 1521)) ) ) ”LISTENER =” 라고 시작되는 부분의 앞에 공백한칸이 있었던 것이다.. 세상에나… -_-;;;; 리눅스에서도 저런 문제가 있었는지 기억도 안나고 테스트를 해보기도 귀찮지만… 공백정도야… 생각했는데 그게 아니네;;; 또한 옆에 다른분은 똑같은 내용인데 윈도우에 기본 설치된 notepad(메모장)으로 파일을 열고 저장해도 문제가 되는 경우가 있었다고 한다.