일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- bootstrap
- bootstrap modal
- 숫자 3자리(천단위) 마다 콤마 찍기
- html pdf 변환
- PHP 정규식 예제
- apache mod rewrite
- 구글 OTP 인증
- PHP 구글 OTP 인증
- usb efi 시스템 파티션 삭제
- (using password: YES)" when trying to connect
- 파라미터 & 오류
- 비밀번호검증정규식
- mysqldump: Got error: 1045
- 아파치 웹 서버의 정보 숨기기
- PHP 구글 OTP 연동
- modsecurity 설치
- libxrender1
- 자바스크립트비밀번호검증
- mysql root 비밀번호 변경
- javascript
- mariadb upgrade
- php 이미지 url 검증 함수
- sha-2 root
- php 배열제거
- apple push notification service (apns) is changing
- httpd.conf 보안 설정
- wkhtmltopdf 실행 오류
- 우분투 mysql 비밀번호 없이 로그인 될때
- 비밀번호정규식
- group_concat 구분자
- Today
- Total
목록전체 글 (285)
투덜이 개발자
* 첫번째class ImageValidator { public static function httpImageUrl($url) { if (strpos($url, 'http://') === false and strpos($url, 'https://') === false) { $url = _WEB_BASE_DIR . $url; } return $url; } // 이미지 url 체크 public static function isImageUrlValid($imageUrl): bool { $imageUrl = self::httpImageUrl($imageUrl); // echo "imageUrl : {$imageUrl} "; $headers = @get_headers($imageUrl); ..
PHP 파일 다운로드 함수 "파일을 찾을 수 없습니다."]); exit; } // 파일 크기 미리 가져오기 (최적화) $fileSize = filesize($filePath); // 파일 이름 설정 (제공되지 않으면 파일 경로에서 추출) if ($fileName === null) { $fileName = basename($filePath); } $mimeType = 'application/octet-stream'; // MIME 타입 기본값 설정 if (extension_loaded('fileinfo')) { $finfo = finfo_open(FILEINFO_MIME_TYPE); $detectedType = finfo_file($finfo, $filePath)..
피험비용 추가 피험비용 추가 피험비용2 코드를 줄여보자.. 피험비용 추가 피험비용 추가 피험비용2

Ubuntu 기본 설정에서는 root 계정 로그인이 잠겨 있을 수 있습니다.아래 명령어로 확인하세요.sudo passwd -S root출력이 root L처럼 나오면 root 계정이 잠겨 있습니다.잠금을 해제하려면 다음을 실행하세요.sudo passwd root새 비밀번호를 입력 후 다시 시도하세요.
PHP 5.3.27 구버전 에디터 내 base64 인코딩 이미지 파일로 저장하기 summernote 내 이미지 첨부하면 base64 인코딩 되어 저장된다. 이것을 파일로 저장할려고 한다.php 버전을 업데이트 하면 좋겠지만 상황이 여의치 않아 php 버전이 오래된 버전이라 상당히 힘들었다. Hello Summernote ', $pos); if ($endPos === false || $endPos >= strlen($content)) break; // 태그 닫힘 위치가 없거나 비정상적이면 중단 $imgTag = substr($content, $pos, $endPos - $pos + 1); $srcPos = strpos($imgTag, 'src="'); if ($srcPos !..
php 5.3.27 버전이 낮을경우 preg_match_all 에서 길이 문제로 매칭을 못 할 경우가 발생한다. PHP 설정을 변경하여 PCRE의 최대 처리 길이를 늘리는 방법입니다.(이 방법은 일부 환경에서만 작동할 수 있습니다.)ini_set('pcre.backtrack_limit', '10000000'); // 기본 100000 → 10000000(10배 증가)ini_set('pcre.recursion_limit', '1000000'); // 기본 100000 → 1000000(10배 증가)
https://developer.apple.com/forums/thread/770316 Does Firebase Push Notification Se… | Apple Developer ForumsApple has announced that the server certificate will be updated in the Sandbox environment on January 20, 2025. We are using Firebase as our third-party push notification provider. How can we test the updated certificate in the Sandbox environment once it'developer.apple.com 결론 : firebase..