[PHP] Warning: session_regenerate_id(): Cannot regenerate session id - headers already sent

Warning: session_regenerate_id(): Session ID cannot be regenerated after headers have already been sent(2) File: /…/…/…/….php:217 HTTP 응답 헤더(HTTP response header)를 보낸 다음에는 세션 아이디(session ID)를 바꿀 수 없다. $_SERVER['HTTP_HOST'] 같은 변수를 인증 정보로 쓰는데 값이 비어서 인증에 문제가 생기면 이 경고문이 보일 수 있다. 인증에 쓰이는 서버 환경 변수의 값을 살...

[nginx] no proxy_ssl_trusted_certificate for proxy_ssl_verify

nginx: [emerg] no proxy_ssl_trusted_certificate for proxy_ssl_verify nginx.conf를 비롯한 nginx 설정 파일에서 proxy_ssl_verify on; 이 있는 곳에 proxy_ssl_trusted_certificate /.../chain.pem; 과 같이 pem 형식인 CA 인증서 경로를 넣는다.

[SELinux] nginx: [emerg] bind() to 0.0.0.0:443 failed (13: Permission denied)

-- Unit nginx.service has begun starting up. Oct 29 07:30:20 host nginx[29837]: nginx: [emerg] bind() to 0.0.0.0:443 failed (13: Permission denied) Oct 29 07:30:20 host systemd[1]: nginx.service: control process exited, code=exited status=1 Oct 29 07:30:20 host systemd[1]: Failed to start nginx - high performance web server. -- Subject: Unit nginx.service has failed --...

[vsftpd] GnuTLS error -15 in gnutls_record_recv: An unexpected TLS packet was received...

Error: GnuTLS error -15 in gnutls_record_recv: An unexpected TLS packet was received. Error: Could not read from socket: ECONNABORTED – Connection aborted Error: Could not connect to server 오류: GnuTLS 오류 -15 in gnutls_record_recv: An unexpected TLS packet was received. 상태: 서버가 TLS 연결을 정상 해제하지 않았습니다 오류: 소켓을 읽지 못함: ECONNABORTED - 연...

[phpBB] The installer detected a timeout The installer has detected a timeout...

phpBB를 'Advanced Update'로 판올림(업그레이드)할 때 이런 오류가 나오기도 한다. The installer detected a timeout The installer has detected a timeout, you may try to refresh the page, which may lead to data corruption. We suggest that you either increase your timeout settings or try to use the CLI. [phpBB Debug] "fopen(../store/io_lock.lock): Failed to open stream: Pe...

[MySQL] WHERE 절의 IN 조건이 비어 있으면

WHERE 절에서 아래와 같이 OR를 여러 번 쓰며 같은 변수를 다루는 조건문들을 ... WHERE id = 1 OR id = 15 OR id = 52 OR id = 101 ...;IN 연산자를 써서 간단하게 나타낼 수 있다. ... WHERE id IN (1, 15, 52, 101) ...; IN을 쓰는 방법은 OR를 쓰는 방법보다 간결하고 처리 속도도 빠르다. IN 조건에 아래처럼 SELECT 문이 들어가는 버금물음(서브쿼리)을 넣을 수도 있다. ... WHERE id IN (SELECT entry F...

[snap] cannot create user data directory: failed to verify SELinux context of /root/snap: exec: "matchpathcon"

cmd_run.go:1044: WARNING: cannot create user data directory: failed to verify SELinux context of /root/snap: exec: "matchpathcon": executable file not found in $PATH Saving debug log to /var/log/letsencrypt/letsencrypt.log (1) 까닭 letsencrypt 인증서를 갱신할 때 나올 수 있는 경고문이다. SELinux를 쓰지 않더라도 cron으로 실행될 때 실행 파일의 경로 문제로 이 경고문이 나올...

[Linux] mkswap 2.23.2

mkswap 2.23.2 Usage: mkswap [options] device [size] Options: -c, --check check bad blocks before creating the swap area -f, --force allow swap size area be larger than device -p, --pagesize SIZE specify page size in bytes -L, --label LABEL specify label -v, --swapversion NUM specify swap-space version number -U, --uuid UUID specify the uuid to use -V, --version out...

[Linux] mkswap: error: swap area needs to be at least 40 KiB

$ sudo mkswap /swapfile mkswap: error: swap area needs to be at least 40 KiB (1) 까닭 크기가 40KiB(40 × 1024byte)보다 작은 파일은 mkswap으로 스왑 파일로 만들 수 없다. 여기에서는 /swapfile의 크기가 40Kib보다 작다는 뜻이다. (2) 풀기 크기가 적어도 40Kib인 파일로 스왑 파일을 만든다. 1GiB(1024×1024×1024Byte) 스왑 파일을 아래처럼 만들 수 있다. $ sudo dd if = /dev/ zero of =/ swapfile...

[PHP] Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini.

PHP Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0 PHP Warning: PHP Request Startup: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0 (1) 까닭 PHP에서 GET / POST / COOKIE로 주고 받고 다루는 변수와 배열의 원소가 1000개를 넘으면 나...