본문 바로가기

[Wordpress] 3.x 이상 버전부터 메일 전송이 안되는 현상 해결법 Wordpress를 처음 시작하는 분들을 위한 글입니다.뭐가 먼지 잘 모르는 상태에서 에러가 나면 정신이 하나도 없어지는데요.2.x 버전까지 잘 되던 메일 전송(회원가입 또는 Admin 알림) 이 안되는 현상이 나옵니다. 지금부터 해결방법에 대해서 알려드리겠습니다. 1. 우선 WP-Mail-SMTP 라는 플러그인을 설치합니다. - Reconfigures the wp_mail() function to use SMTP instead of mail() and creates an options page to manage the settings.라는 설명이 있는데요. php문인 mail() 대신에 SMTP라는 것을 사용하는 wp_mail()을 사용하게 해주는 것이라고 하네요. 2. 설치가 끝났으면 활성화를 해줍니.. 더보기
[Jquery] 브라우저 기능 플래그 ( 브라우저 별 개발 시 ) $.support 객체에서는 프로퍼티로 브라우저 기능 플래그를 제공한다. $.support 객체에서는 프로퍼티로 브라우저 기능 플래그를 제공한다.$.support 객체에서는 프로퍼티로 브라우저 기능 플래그를 제공한다.다음과 같이 정리할 수 있다. boxModel 사용자 에이전트가 표준 박스모델을 따르면 true cssFloat cssFloat 프로퍼티가 사용되면 true hrefNormalized href 어트리뷰트를 가져올 때 명시한대로 정확한 값을 반환하면 true htmlSerialize innerHTML을 사용하여 DOM에 추가된 엘리먼트가 가리키는 스타일 시트 파일을 브라우저가 해석하면 true leadingWhitespace innerHTML을 사용하여 삽입된 텍스트 앞의 공백을 브라우저가 보.. 더보기
[Jquery] $.fn.javascript 에서 '.fn' 의 의미는 무엇인가? In jQuery, the fn property is just an alias to the prototype property.The jQuery identifier (or $) is just a constructor function, and all instances created with it, inherit from the constructor's prototype.A simple constructor function:function Test() { this.a = 'a'; } Test.prototype.b = 'b'; var test = new Test(); test.a; // "a", own property test.b; // "b", inherited propertyA simple structur.. 더보기