목록개발/개발노트 (15)
개발 노트
- foreign_key가 등록된 테이블을 truncate할 경우 오류가 발생한다. - 아래와 같이 해결 ## foreign_key를 확인하지 않도록 설정 변경 > set FOREIGN_KEY_CHECKS = 0; ## Truncate Table ## ## 다시 foreign_key를 확인하도록 설정 변경 > set FOREIGN_KEY_CHECKS = 1; 참고 URL : https://devpouch.tistory.com/111 [mysql] foreign key가 존재하는 table을 truncate/delete할때 constraint 에러 문제 해결하기 문제상황 truncate 테이블명; ERROR 1701 (42000): Cannot truncate a table referenced in a f..
sudo passwd `계정명` Changing password for user root. New password: Retype new password: passwd: all authentication tokens updated successfully.
작동 로그 확인 > vi /var/mail/root 스케줄러 동작 확인 > ps aux | grep crond 스케줄러 재실행 > systemct restart crond 스케줄러 확인 > crontab -l 스케줄러 편집 > crontab -e [php 파일 호출] - Codeigniter 일 경우 > 5 0 * * * /usr/bin/php -e "파일 경로" "Class명" "function명" >> ex) 5 0 * * * /usr/bin/php -e /var/www/test/index.php user setUserList ** 오류 발생시 - Undefined $_SERVER (Server에서 파일을 바로 호출하기에 접속 정보가 없어서 오류 발생) - index.php에서 아래 내용 추가 > i..
참고한 Github : github.com/lucianocosta/jquery.mtz.monthpicker lucianocosta/jquery.mtz.monthpicker Monthpicker, the missing JQuery widget. Contribute to lucianocosta/jquery.mtz.monthpicker development by creating an account on GitHub. github.com [ 수정사항 ] - 년도 좌/우 이동 버튼 기능 추가