* 에러 메시지 php pusher Call to undefined method Pusher Pusher::get_users_info() * 원인 php 7.3에서 7.4로 업그레이드후 발생 * 해결 방법 pusher-php-server v4.1.1 로 업그레이드 한다 composer.json 파일...
Web
코드루덴스 on 20-03-16
https://getcomposer.org/doc/03-cli.md * 옵션 --no-cache : 캐시 사용 안하기 --profile : 시간 정보 표시 --version (-V) : 버전 확인 * 캐시 지우기 composer clear-cache * 설치된 패키지 보기 composer show -...
코드루덴스 on 20-03-11
웹서비스 경로에 인증(사용자 아이디, 비밀번호) 걸기 nginx directory password auth setting * apache htpasswd 유틸 필요 - htpasswd 유틸은 apache httpd 서버 프로그램에 포함되어 있음 - 리눅스는 기본 설치...
MySQL 8.0 새기능 https://blog.naver.com/theswice/221321015924 * NoSQL 지원 * SQL WINDOW 함수, Common Table, NOWAIT 및 SKIP LOCKED, 내림차순 인덱스, Grouping, 정규식, Character Sets, Cost Model 및 히스...
코드루덴스 on 20-03-09
< id > - SELECT 단위에 붙는 번호 //-------------- < select_type > SIMPLE : 단순 select, (join 포함) PRIMARY : 가장 바깥에 있는 select DERIVED : from 안의 select (서브 쿼리) SUBQUERY : 가장 바깥의 sele...
코드루덴스 on 20-03-08
//-------------------------------------- * GROUP BY 쿼리 에러 Expression of SELECT list is not in GROUP BY clause and contains nonaggregated column which is not functionally dependent on columns in GR...
코드루덴스 on 20-03-03