Showing
4 changed files
with
6 additions
and
2 deletions
No preview for this file type
... | @@ -64,6 +64,9 @@ create table _comment( | ... | @@ -64,6 +64,9 @@ create table _comment( |
64 | - LF 오류시 Git에 하단 명령어 입력 | 64 | - LF 오류시 Git에 하단 명령어 입력 |
65 | >git config --global core.autocrlf true | 65 | >git config --global core.autocrlf true |
66 | 66 | ||
67 | +- sharp 모듈 관련 오류시 하단의 SQL문 입력 | ||
68 | +>npm rebuild --verbose sharp | ||
69 | + | ||
67 | - 게시글 reset 후 idx의 값이 1부터 시작하지 않을 경우 하단의 SQL문 입력 | 70 | - 게시글 reset 후 idx의 값이 1부터 시작하지 않을 경우 하단의 SQL문 입력 |
68 | >ALTER TABLE board AUTO_INCREMENT = 1;<br> | 71 | >ALTER TABLE board AUTO_INCREMENT = 1;<br> |
69 | >SET @COUNT = 0;<br> | 72 | >SET @COUNT = 0;<br> |
... | @@ -77,7 +80,7 @@ create table _comment( | ... | @@ -77,7 +80,7 @@ create table _comment( |
77 | >건의사항: suggestion_board | 80 | >건의사항: suggestion_board |
78 | 81 | ||
79 | --- | 82 | --- |
80 | -### 최종 수정: 2021-12-01 02:20<br> | 83 | +### 최종 수정: 2021-12-01 02:29<br> |
81 | ### 수정 내용: | 84 | ### 수정 내용: |
82 | 1. 채팅 구현(팝업) | 85 | 1. 채팅 구현(팝업) |
83 | 2. 시간 실시간 반영 | 86 | 2. 시간 실시간 반영 | ... | ... |
... | @@ -96,6 +96,7 @@ router.get('/write/notice', function(req,res,next){ | ... | @@ -96,6 +96,7 @@ router.get('/write/notice', function(req,res,next){ |
96 | if(err_) console.error(err_) | 96 | if(err_) console.error(err_) |
97 | 97 | ||
98 | if(result_[0].type == "운영자"){ // 유저 타입이 운영자인 경우 | 98 | if(result_[0].type == "운영자"){ // 유저 타입이 운영자인 경우 |
99 | + var nickname = req.user.nickname; | ||
99 | console.log(logString+req.user.ID+'('+nickname+') 유저가 공지사항 게시글 작성 중입니다.('+ip+')') | 100 | console.log(logString+req.user.ID+'('+nickname+') 유저가 공지사항 게시글 작성 중입니다.('+ip+')') |
100 | res.render('write.ejs', {'ID':id, 'nickname': nickname, title:"공지사항 글 쓰기"}) | 101 | res.render('write.ejs', {'ID':id, 'nickname': nickname, title:"공지사항 글 쓰기"}) |
101 | } | 102 | } | ... | ... |
... | @@ -22,7 +22,7 @@ | ... | @@ -22,7 +22,7 @@ |
22 | <a class="navbar-brand" href="/main">묵호의 놀이터</a> | 22 | <a class="navbar-brand" href="/main">묵호의 놀이터</a> |
23 | <ul class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0"> | 23 | <ul class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0"> |
24 | <li><a href="/about" class="nav-link px-2 link-dark">About</a></li> | 24 | <li><a href="/about" class="nav-link px-2 link-dark">About</a></li> |
25 | - <li><a href="/board class="nav-link px-2 link-dark">게시판</a></li> | 25 | + <li><a href="/board" class="nav-link px-2 link-dark">게시판</a></li> |
26 | <li><a href = "javascript:;" onclick = "window.open('/chat','파일 업로드','width=500, height=801, toolbar=no,location=yes,status=no,menubar=no,scrollbars=yes,resizable=no');" class="nav-link px-2 link-dark">채팅</a></li> | 26 | <li><a href = "javascript:;" onclick = "window.open('/chat','파일 업로드','width=500, height=801, toolbar=no,location=yes,status=no,menubar=no,scrollbars=yes,resizable=no');" class="nav-link px-2 link-dark">채팅</a></li> |
27 | <li><a href="http://khuhub.khu.ac.kr/2017104034/Singer-Composer" target="_blank" class="nav-link px-2 link-dark">사이트 git</a></li> | 27 | <li><a href="http://khuhub.khu.ac.kr/2017104034/Singer-Composer" target="_blank" class="nav-link px-2 link-dark">사이트 git</a></li> |
28 | </ul> | 28 | </ul> | ... | ... |
-
Please register or login to post a comment