관리자 페이지에서 Captcha 사용 설정 했는데로그인 페이지에서 나타나지 않을때스킨 html 파일에 강제 추가하는 코드Captcha 서비스 중 Cloudflare Turnstile 적용 사례 :{@ $captcha_class = 'Rhymix\\Modules\\Spamfilter\\Captcha\\Turnstile'; $config = ModuleModel::getModuleConfig('spamfilter') ?: new stdClass(); $captcha_class::init($config->captcha); $captcha = new $captcha_class(); $target_actions = [ 'dispMemberLoginForm', '..
향상된 증가 및 감소 연산자 동작++와 -- 연산자의 동작 개선불필요한 문자열 증가가 제거되고, 불리언 및 null 값도 숫자로 간주// PHP 8 및 이전$foo = 'a9';$foo++;echo $foo; // 결과: 'b0'// PHP 9$foo = 'a9';$foo++; // TypeError 발생빈 문자열이 숫자로 변환되는 것 금지// PHP 8 및 이전$baz = '';$baz--; // 결과: int(-1)// PHP 9$baz = '';$baz--; // TypeError 발생역직렬화 오류 발생 시 예외 처리역직렬화 실패시 E_WARNING에서 UnserializationFailedException으로 상향// PHP 8.3unserialize("foo"); // 경고 발생// P..
사전설정 Linux sudo apt-get install qttools5-dev-tools 실행 PyQt6 tools 이용 pip install pyqt6-tools pyqt6-tools designer PySide6 이용 pip install pyside6 pyside6-designer 참고 https://www.pythonguis.com/installation/install-qt-designer-standalone/ Download Qt Designer for Windows, Mac and Linux Qt Designer Download for Windows, Mac and Linux. Qt Designer is a cross-platform drag and drop GUI designer, whic..
대개의 인터넷 글들에서 Firestore 규칙 설정을 아래의 allow로 시작하는 줄과 같이 하라고 함. rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if true; } } } 위와 같이 전체에 그냥 허용하면 아래와 같은 보안 규칙 경고 메일을 계속 받게 됨. 해당 문제에 대한 대응으로 구글링에서 답해주는 코드 예시 중 간단한 예시로 allow 줄을 수정했음. rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { matc..
국산 JSP 커뮤니티들이나 블로그들에서 얻을 수 있는 해결책은 WEB-INF/lib/*.jar 깨진게 없나 점검해봐라 에서 조언 끝! 중생들 답답하게 하네... 대체 깨진걸 어떻게 찾아내냐? 스택오버플로에서 방법을 찾음. 아래 Bash 쉘 명령을 실행하면 어떤 *.jar 파일들이 문제인지 리스팅된다. /path/to/lib 경로만 자신의 환경에 맞게 수정하여 사용. for j in $(find /path/to/lib -name '*.jar'); do jar -tvf $j > /dev/null 2>&1; [ "$?" -ne 0 ] && echo "$j jar is broken"; done https://stackoverflow.com/a/54930734 Tomcat Caused by: java.util.z..
예전이라면 IE hack 쓰는것을 먼저 생각했었는데 코드가 지저분해지기에 꺼림하여 찾아보니 지원해야 할 IE 버젼이 10 이상이라면 아래와 같은 미디어 쿼리 내에 스타일들을 할당하면 된다 /* IE 10 and above */ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { /* Some styles for IE 10 and above */ }
/* Media Query for Mobile Devices */ @media only screen and (max-width: 480px), only screen and (max-device-width: 480px) { } /* Media Query for 320px — 480px: Mobile devices */ @media only screen and (min-width: 320px) and (max-width: 480px) { } /* Media Query for 481px — 768px: iPads, Tablets */ @media only screen and (min-width: 481px) and (max-width: 768px) { } /* Media Query for 769px — 102..
HTML JSP JSP static file
- Total
- Today
- Yesterday
- Wordpress
- centos
- Linux
- IOS
- sencha touch
- git
- ASP
- API
- macos
- classic asp
- JQuery
- javascript
- nodejs
- Mac
- iphone
- laravel
- 안드로이드
- Prototype
- iis
- 워드프레스
- PHP
- JSON
- Android
- Docker
- 한글
- mssql
- CSS
- IE
- Debug
- nginx
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |