설치 시 소스보임 > 질문과 답변

본문 바로가기

질문과답변

[해결] 설치 시 소스보임

총 채택 포인트
200 포인트
채택된 회원에게 주는 후원 포인트
100 포인트
채택 후 작성자(김경준) 회수 포인트
100 포인트

본문

http://내홈피/install/index.php 를 실행시키면

아래와 같은 소스가 나옵니다.

cafe24를 사용합니다.

UTF-8 (PHP7.0, Mariadb-10.0.x)  입니다.

 

 

;( function( $, window, document, undefined ) { "use strict"; // Create the defaults once var pluginName = "PasswordStrengthManager", defaults = { password: "", confirm_pass : "", blackList : [], minChars : "", maxChars : "" }; // The actual plugin constructor function Plugin ( element, options ) { this.element = element; this.settings = $.extend( {}, defaults, options ); this._defaults = defaults; this._name = pluginName; this.init(); this.info = ""; } // Avoid Plugin.prototype conflicts $.extend( Plugin.prototype, { init: function() { var errors = this.customValidators(); if ("" == this.settings.password) { this.info = ""; } else if (this.settings.confirm_pass && (this.settings.password != this.settings.confirm_pass)) { this.msg = "비밀번호가 서로 일치하지 않습니다."; } else if (errors == 0) { this.msg = ""; var strength = zxcvbn(this.settings.password, this.settings.blackList); this.info = 'security_'+strength.score; } $(this.element).attr('class', this.info); $(this.element).find('.security_text').html(this.msg); }, minChars: function() { if (this.settings.password.length < this.settings.minChars) { this.msg = "비밀번호는 최소 " + this.settings.minChars + "자 이상 입력하셔야 합니다."; return false; } else { return true; } }, maxChars: function() { if (this.settings.password.length > this.settings.maxChars) { this.msg = "비밀번호는 최대 " + this.settings.maxChars + "자까지 사용하실 수 있습니다."; return false; } else { return true; } }, customValidators: function() { var err = 0; if (this.settings.minChars != "") { if (!this.minChars()) { err++; } } if (this.settings.maxChars != "") { if (!this.maxChars()) { err++; } } return err; } } ); $.fn[pluginName] = function (options) { this.each(function() { $.data(this, "plugin_" + pluginName, new Plugin(this, options)); }); return this; }; } )( jQuery, window, document );

포인트 30
경험치 113
[레벨 1] - 진행률 57%
가입일
2018-09-11 15:09:29
서명
미입력
자기소개
미입력

최신글이 없습니다.

최신글이 없습니다.

댓글목록7

자이언트님의 댓글

profile_image
다운로드한 파일을 압축풀때 알집으로 하신거 아닌가요?

올린거 다 지우고
다시 설치해보는 것이
http://eyoom.net/page/?pid=eb4_installation

김경준님의 댓글의 댓글

profile_image
알집으로 풀었어요... ㅠㅠ
그런건가요? 흑흑흑
감사합니다.

자이언트님의 댓글의 댓글

profile_image
설치하고 오류나는거 보면 대부분 알집 문제였던거 같아요.
알집 많이 쓰는데 왜 알집에서는 안되게 했는지 모르겠다는..
이윰님이 알집을 싫어 하나? ㅋ

김경준님의 댓글의 댓글

profile_image
ㅎㅎ  tar로 묶은걸 보니,
유닉스,리눅스 상에서 작업을 많이 해서 습관이 된것 같아 보여요.
알집은..... 라이센스 때문에 기피를 좀 하는거 같구요.

자이언트님의 댓글의 댓글

profile_image
아.. 그럴 수도 있겠네요.

김경준님의 댓글의 댓글

profile_image
자이언트님 잘됩니다. 감사합니다~이모티콘

자이언트님의 댓글의 댓글

채택
profile_image
작품 만드시길...
감사의 의미로 채택을... 부타.ㄱ
이윰빌더 시즌4 질문과 답변 게시판입니다.

질문과 답변 게시판에는 가능한 이윰 관리자가 답변을 드리지 않습니다. 회원간 활성화 될수 있도록 도움 부탁드리며, 질문자는 원하는 답변이 달릴경우 꼭 채택하여 주시기 바랍니다.

상품구매 및 유료상품 문의는 1:1문의 게시판을 이용해 주시기 바랍니다.

1:1문의 바로가기 : https://eyoom.net/bbs/qalist.php

전체 1,916 건 - 122 페이지
번호
제목
글쓴이
채택포인트
사이트 내 전체검색