글걸이

[라이믹스] AJAX 통신 오류

미리보기 그림 - [라이믹스] AJAX 통신 오류
AJAX commication error while requesting file.getFileList 0 error (error) undefined XpressEngine 또는 Rhymix(라이믹스)에서 도메인 주소에 www를 붙이게 했는데 이와 모순된 환경 설정이 있으면 게시물을 열었을 때에 이런 오류가 나올 수 있다. 관리 화면의 시스템 설정에서 도메인 주소 관련 설정과 멀티 도메인 설정을 점검해 본다.

[dnf] 메모리를 할당하지 못함 (Cannot allocate memory)

램 용량이 적은 저사양 서버에 MariaDB-server를 새 판으로 올려 깔려는데, 메모리를 할당하지 못해서 "Cannot allocate memory"라는 문구가 떴다. [root@test ~]# dnf update MariaDB-server MariaDB Server 8.1 kB/s | 3.4 kB 00:00 MariaDB Server 638 kB/s | 607 kB 00:00 MariaDB MaxScale 6.5 kB/s | 2.5 kB 00:00 MariaDB Tools 5.6 kB/s | 3.0 kB 00:00 Dependencies resolved. ================...

[Varnish] Unit uses MemoryLimit=; please use MemoryMax= instead.

# systemctl status varnish ● varnish.service - Varnish Cache, a high-performance HTTP accelerator Loaded: loaded (/etc/systemd/system/varnish.service; enabled; preset: disabled) Active: active (running) since Thu 2024-02-08 02:10:12 UTC; 9min ago Main PID: 10482 (varnishd) Tasks: 217 Memory: 94.8M (limit 100.0M) CPU: 707ms CGroup: /system.slice/varnish.service ├─...

[PHP] Warning: Trying to access array offset on null in ...

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 함수로 배열값이 선언되어 있는지를 먼...

[jQuery] Uncaught TypeError: e.browser is undefined

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...

[PHP] Fatal error: Uncaught mysqli_sql_exception: Permission denied in ...

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] tar: /path/to/filename.bz2: Wrote only 4096 of 10240 bytes

[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 파일...

[PHP] 이름이 같은 함수를 또 선언했을 때 - PHP Fatal error: Cannot redeclare...

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() { ... } .....