Error while sending QUERY packet. PID=

‘Error while sending QUERY packet. …..’ 메세지가 출력되고
데이터 처리가 잘 되지 않는 경우에 MySql 설정 사항을 확인해본다.
PHP의 경우 E_WARNING으로 해놓고 보면 저 메세지가 나오는 것을 확인할 수 있다.

/etc/my.cnf에max_allowed_packet값을 변경.

max_allowed_packet = 16M (or 32M 등)

그래도 적용이 잘 되지 않는 다면 Mega byte를 byte로 변환해서 적용.
잘 적용되었는지 확인.

show variables like 'max_allowed_packet'

use CKEDITOR popup in Bootstrap modal


$(function() {
    $.fn.modal.Constructor.prototype.enforceFocus = function () {
        var $modalElement = this.$element;
        $(document).on('focusin.modal', function (e) {
            var $parent = $(e.target.parentNode);
            if ($modalElement[0] !== e.target && !$modalElement.has(e.target).length
                // add whatever conditions you need here:
                &&
                !$parent.hasClass('cke_dialog_ui_input_select') && !$parent.hasClass('cke_dialog_ui_input_text')) {
                $modalElement.focus()
            }
        })
    };
});