AJAX commication error while requesting file.getFileList 0 error (error) undefined XpressEngine 또는 Rhymix(라이믹스)에서 도메인 주소에 www를 붙이게 했는데 이와 모순된 환경 설정이 있으면 게시물을 열었을 때에 이런 오류가 나올 수 있다. 관리 화면의 시스템 설정에서 도메인 주소 관련 설정과 멀티 도메인 설정을 점검해 본다.
nginx2024/02/04 01:45by 깜빡쟁이# nginx -t nginx: [warn] protocol options redefined for 0.0.0.0:443 in /etc/nginx/conf./???.conf:10 nginx의 conf 파일에 들어간 listen 지시자에 아래처럼 ssl이 빠지면 이런 경고문이 나올 수 있다. server { listen 443; 이 경우에는 443 뒤에 ssl을 넣어 준다. server { listen 443 ssl;
PHP2024/02/03 19:58by 깜빡쟁이ParseError #0 "syntax error, unexpected token "/", expecting end of file" in /.../???.php on line 22 주석문으로 만들려고 //를 넣으려던 것을 /로 잘못 넣었을 때 나온 오류였다.
PHP2024/02/03 19:56by 깜빡쟁이PHP Warning: Trying to access array offset on null in /.../memcache/src/display.functions.php on line 48 아래는 문제가 된 부호글이다. if ($ob==$_GET['op']){ $_GET['op']의 값이 들어가지 않았을 수도 있고, $_GET 변수가 배열로 선언되지 않을 수도 있다. 배열값이 들어가지 않은 $_GET['op']를 변수 $ob와 견주려 하면 위와 같은 경고문이 뜰 수 있다. isset 함수로 배열값이 선언되어 있는지를 먼...
JavaScript2024/02/01 19:59by 깜빡쟁이TypeError: e.browser is undefined jQuery 1.3에서부터 쓰인 jQuery.browser() 메쏘드를 jQuery 1.9부터 쓸 수 없다. (https://jquery.com/upgrade-guide/1.9/#jquery-browser-removed) var browserType=""; if(e.browser.indexOf("MSIE")>-1) browserType="IE"; else if(e.browser.indexOf("Firefox")>-1) browserType="FF" else browserType="OTHER"; 위와 같은 부호글이 있다면 아래처럼 e.brow...
Linux/SELinux2024/01/29 15:14by 깜빡쟁이PHP Fatal error: Uncaught mysqli_sql_exception: Permission denied in /.../???.php:59 Stack trace: ... SELinux(보안 강화 리눅스) 때문에 PHP-FPM에서 MySQL 접근이 막혀 PHP에서 치명적인 오류가 난 경우였다. audit2why와 audit2allow 명령으로 정보를 확인해 보면, $ audit2why < /var/log/audit/audit.log ... type=AVC msg=audit(1706454182.069:41503): avc: denied { connectto } for pid=...
Linux/Linux 일반2024/01/08 17:35by 깜빡쟁이[root@test ~]# tar jcpfP /path/to/filename.bz2 /path/to/directory/* /bin/sh: line 1: bzip2: command not found tar: /path/to/filename.bz2: Wrote only 4096 of 10240 bytes tar: Child returned status 127 tar: Error is not recoverable: exiting now "Wrote only 4096 of 10240 bytes"는 파일 압축이 제대로 되지 않았음을 뜻할 수 있다. 이 경우에는 bzip2 프로그램이 깔리지 않아서 tar 파일...
PHP2023/12/30 13:37by 깜빡쟁이PHP Fatal error: Cannot redeclare my_function() (previously declared in /.../index.php:150) in /.../index.php on line 159 이름이 같은 함수를 다시 선언하면 위와 같은 오류가 나올 수 있다. 이미 만든 함수 내용을 복사하고 붙여넣기하여 다른 함수를 만들다가 함수 이름을 바꾸는 것을 깜빡하면 이런 오류를 겪을 수 있다. <?php ... function my_function() { ... } function my_function() { ... } .....