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(메모장)으로 파일을 열고 저장해도 문제가 되는 경우가 있었다고 한다.

No Image

ORA-65096: invalid common user or role name on oracle12c

2015-07-06 KENNETH 0

ORA-65096: invalid common user or role name on oracle12c 오라클12c 를 설치하고 계정을 생성하다 보니 이런 에러가 발생하면서 실패;;;;;; 구문이 맞는지 확인했으나.. 너무 간단하기도 하고 틀린것 같지도 않아서 찾아보니.. http://docs.oracle.com/database/121/ERRMG/e60000.htm   ORA-65096: invalid common user or role name Cause: An attempt was made to create a common user or role with a name that was not valid for common users or roles. In addition to the usual rules for user and role names, common user and role names must start with C## or c## and consist only of ASCII characters.   Action: Specify a valid common user or role name. 이렇댄다.. 아무리 공식적인 거라도 그렇지.. 그럼 세상에 뭔 ”C##”을 계정을 생성할때마다 써줘야 하는건가… 했더니만..   세상 어디에든 젖과 꿀은 있게 마련인갑다… http://www.dba-oracle.com/t_ora_65096_create_user_12c_without_c_prefix.htm   connect system/manager as sysdba alter session set “_ORACLE_SCRIPT”=true; create user fred identified by flintstone; grant dba to [ more… ]