그누보드 5.0.9
수정내역 : https://github.com/gnuboard/gnuboard5/commit/e84a1c8c98ce5d8c55a4c6a9218922721bfe4975
3c10411 스마트 에디터2 ie 11에서 개행문자 처리
M plugin/editor/smarteditor2/js/smarteditor2.js
M plugin/editor/smarteditor2/js/smarteditor2.min.js
02f7e38 필드명 오타 수정
M bbs/qatail.php
a006bbe 회원가입폼 본인확인 관련 안내 출력 코드 수정
M mobile/skin/member/basic/register_form.skin.php
M skin/member/basic/register_form.skin.php
12b298a datepicker 스타일 add_stylesheet 함수 적용
M plugin/jquery-ui/datepicker.php
A plugin/jquery-ui/style.css
0018ffb 경로 설정 코드 수정
M common.php
6a93948 스마트 에디터 이미지 업로드 유효성 체크 로빈아빠님이 알려주심
M plugin/editor/smarteditor2/photo_uploader/popup/js/basic.js
M plugin/editor/smarteditor2/photo_uploader/popup/php/UploadHandler.php
2221d27 Merge branch 'master' of github.com:gnuboard/g5
25af73b 경로 설정코드에서 HTTP_HOST 사용하도록 수정
M common.php
5d8ae71 Merge branch 'master' of github.com:gnuboard/g5
7bdec88 스마트 에디터2 공백 삽입 소스로 인한 문제 수정
M plugin/editor/smarteditor2/editor.lib.php
M plugin/editor/smarteditor2/photo_uploader/plugin/hp_SE2M_AttachQuickPhoto.js
52dbc4b bo_notice 필드에 필요치않는 콤마 추가되는 문제 수정
M bbs/write_update.php
3c10411 스마트 에디터2 ie 11에서 개행문자 처리
M plugin/editor/smarteditor2/js/smarteditor2.js
M plugin/editor/smarteditor2/js/smarteditor2.min.js
02f7e38 필드명 오타 수정
M bbs/qatail.php
a006bbe 회원가입폼 본인확인 관련 안내 출력 코드 수정
M mobile/skin/member/basic/register_form.skin.php
M skin/member/basic/register_form.skin.php
12b298a datepicker 스타일 add_stylesheet 함수 적용
M plugin/jquery-ui/datepicker.php
A plugin/jquery-ui/style.css
0018ffb 경로 설정 코드 수정
M common.php
6a93948 스마트 에디터 이미지 업로드 유효성 체크 로빈아빠님이 알려주심
M plugin/editor/smarteditor2/photo_uploader/popup/js/basic.js
M plugin/editor/smarteditor2/photo_uploader/popup/php/UploadHandler.php
2221d27 Merge branch 'master' of github.com:gnuboard/g5
25af73b 경로 설정코드에서 HTTP_HOST 사용하도록 수정
M common.php
5d8ae71 Merge branch 'master' of github.com:gnuboard/g5
7bdec88 스마트 에디터2 공백 삽입 소스로 인한 문제 수정
M plugin/editor/smarteditor2/editor.lib.php
M plugin/editor/smarteditor2/photo_uploader/plugin/hp_SE2M_AttachQuickPhoto.js
52dbc4b bo_notice 필드에 필요치않는 콤마 추가되는 문제 수정
M bbs/write_update.php
댓글 14개
11년 전
감사합니다.
수고 많이 하셨습니다.
수고 많이 하셨습니다.
11년 전
감사합니다!
11년 전
감사드립니다~~~
11년 전
문제 없이 업데이트를 완료 했습니다..
친절한 git주소까지..^^ 감사합니다.
친절한 git주소까지..^^ 감사합니다.
11년 전
고생하셨어요...
아름다운수
11년 전
감사합니다.
11년 전
감사합니다.
11년 전
감사합니다.
11년 전
감사합니다
11년 전
고맙습니다
11년 전
감사합니다
11년 전
감사합니다.
11년 전
경로에 포트 번호가 중복되는 경우 common.php 파일의 코드를 아래처럼 수정해 보시기 바랍니다.
[code]
function g5_path()
{
$result['path'] = str_replace('\\', '/', dirname(__FILE__));
$tilde_remove = preg_replace('/^\/\~[^\/]+(.*)$/', '$1', $_SERVER['SCRIPT_NAME']);
$document_root = str_replace($tilde_remove, '', $_SERVER['SCRIPT_FILENAME']);
$root = str_replace($document_root, '', $result['path']);
$port = $_SERVER['SERVER_PORT'] != 80 ? ':'.$_SERVER['SERVER_PORT'] : '';
$http = 'http' . ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on') ? 's' : '') . '://';
$user = str_replace(str_replace($document_root, '', $_SERVER['SCRIPT_FILENAME']), '', $_SERVER['SCRIPT_NAME']);
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'];
if(isset($_SERVER['HTTP_HOST']) && preg_match('/:[0-9]+$/', $host))
$host = preg_replace('/:[0-9]+$/', '', $host);
$result['url'] = $http.$host.$port.$user.$root;
return $result;
}
[/code]
[code]
function g5_path()
{
$result['path'] = str_replace('\\', '/', dirname(__FILE__));
$tilde_remove = preg_replace('/^\/\~[^\/]+(.*)$/', '$1', $_SERVER['SCRIPT_NAME']);
$document_root = str_replace($tilde_remove, '', $_SERVER['SCRIPT_FILENAME']);
$root = str_replace($document_root, '', $result['path']);
$port = $_SERVER['SERVER_PORT'] != 80 ? ':'.$_SERVER['SERVER_PORT'] : '';
$http = 'http' . ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on') ? 's' : '') . '://';
$user = str_replace(str_replace($document_root, '', $_SERVER['SCRIPT_FILENAME']), '', $_SERVER['SCRIPT_NAME']);
$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'];
if(isset($_SERVER['HTTP_HOST']) && preg_match('/:[0-9]+$/', $host))
$host = preg_replace('/:[0-9]+$/', '', $host);
$result['url'] = $http.$host.$port.$user.$root;
return $result;
}
[/code]
11년 전
감사합니다. 휴가 갔다와서 지금 밀린 업데이트 하나씩 버전별로 하고 있습니다.
게시판 목록
그누보드5 다운로드
SIR은 그누보드를 만들 뿐 프로그램의 설치, 운영방법, 설정문제에 관한 도움을 드리지는 않습니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 | 1년 전 | 9535 | ||
| 공지 |
|
10년 전 | 166605 | |
| 343 |
|
2개월 전 | 1160 | |
| 342 |
|
3개월 전 | 1103 | |
| 341 |
|
3개월 전 | 1089 | |
| 340 |
|
3개월 전 | 783 | |
| 339 |
|
3개월 전 | 785 | |
| 338 |
|
4개월 전 | 1915 | |
| 337 |
|
6개월 전 | 3239 | |
| 336 |
|
7개월 전 | 2402 | |
| 335 |
|
8개월 전 | 2365 | |
| 334 |
|
8개월 전 | 1521 | |
| 333 |
|
10개월 전 | 6493 | |
| 332 |
|
10개월 전 | 2388 | |
| 331 |
|
1년 전 | 5013 | |
| 330 |
|
1년 전 | 3846 | |
| 329 | 1년 전 | 2362 | ||
| 328 |
|
1년 전 | 3746 | |
| 327 |
|
1년 전 | 3441 | |
| 326 |
|
1년 전 | 9302 | |
| 325 |
|
1년 전 | 2718 | |
| 324 |
|
1년 전 | 5168 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기