여기저기 자료 짜집기하여 만들었습니다. 정보
훌륭해 여기저기 자료 짜집기하여 만들었습니다.관련링크
http://pointcam.co.kr
582회 연결
본문
그누보드 설치/운영매뉴얼 대로하고
모르는 부분 질문하여 처음으로 만들어 보았습니다.
그런데 문제가 있습니다.
문제1.
메뉴 > 서브메뉴를 선택하면 메뉴가 처음으로 돌아갑니다.
문제2.
게시판 상단에 그림을 넣을 수가 없습니다.
상단이미지 > 찾아보기에서 gif, jpg 를 선택해도
게시판 상단에 이미지가 안보입니다.
id=test ps=1234
해결방법 알려주세요.
메뉴 프로그램은 위 두번째 링크에 있는 자료 사용했습니다.
모르는 부분 질문하여 처음으로 만들어 보았습니다.
그런데 문제가 있습니다.
문제1.
메뉴 > 서브메뉴를 선택하면 메뉴가 처음으로 돌아갑니다.
문제2.
게시판 상단에 그림을 넣을 수가 없습니다.
상단이미지 > 찾아보기에서 gif, jpg 를 선택해도
게시판 상단에 이미지가 안보입니다.
id=test ps=1234
해결방법 알려주세요.
메뉴 프로그램은 위 두번째 링크에 있는 자료 사용했습니다.
추천
0
0
댓글 전체
두번째 문제는
../bbs/board_head.php를 참조하시고
../data/file/게시판명/ --- 여기에 업로드한 이미지가 있는지 확인하세요.
만약 없다면 정상적으로 업로드가 되지 않았다는 말이 되겠죠.
그렇다면 몇가지 파일들을 살펴봐야 되겠습니다.
../bbs/board_head.php를 참조하시고
../data/file/게시판명/ --- 여기에 업로드한 이미지가 있는지 확인하세요.
만약 없다면 정상적으로 업로드가 되지 않았다는 말이 되겠죠.
그렇다면 몇가지 파일들을 살펴봐야 되겠습니다.
두번째 문제는 답변대로 해서 해결되었습니다.
../bbs/board_head.php 파일을 ../head.php 파일과 같이 했던 것이 문제였습니다.
감사합니다.
../bbs/board_head.php 파일을 ../head.php 파일과 같이 했던 것이 문제였습니다.
감사합니다.
function colorIt(tditem) {
if(document.all) {
document.all.td0.style.background=mbc;
document.all.td1.style.background=mbc;
document.all.td2.style.background=mbc;
document.all.td3.style.background=mbc;
document.all.td4.style.background=mbc;
document.all.td5.style.background=mbc;
document.all.td6.style.background=mbc;
document.all.td7.style.background=mbc;
tditem.style.background='#FFCC00'; //메인메뉴 마우스 오버 색상
}
else if(document.ALLnTOP) {
document.ALLnTOP("td0").style.background=mbc;
document.ALLnTOP("td1").style.background=mbc;
document.ALLnTOP("td2").style.background=mbc;
document.ALLnTOP("td3").style.background=mbc;
document.ALLnTOP("td4").style.background=mbc;
document.ALLnTOP("td5").style.background=mbc;
document.ALLnTOP("td6").style.background=mbc;
document.ALLnTOP("td7").style.background=mbc;
tditem.style.background='#FEFBDE';
}
}
function TopMenu(menu) {
which = submenu[menu];
if (document.layers){
document.top1.document.top2.document.write(which)
document.top1.document.top2.document.close()
}
else if (document.ALLnTOP) {
document.ALLnTOP("top3").innerHTML=which;
}
else if (document.all){
top3.innerHTML=' ';
top3.innerHTML=which;
}
}
if (document.ALLnTOP)
colorIt(document.ALLnTOP(1));
else if (document.all){
colorIt(document.all.td1);
}
TopMenu(1);
위 소스에서 메뉴번호(위치)를 기억하려면 어떻게 하나요?
제가 해본 방법입니다.
config.php 파일에
$menu_pos = 1 을 추가하고
위 menu.php 파일에
which = submenu[menu]; 아래줄에 $menu_pos = menu 추가하고
colorIt(document.ALLnTOP(1)); ----> colorIt(document.ALLnTOP($menu_pos));
TopMenu(1); ---> TopMenu($menu_pos);
변경하면 메뉴가 나타나지 않네요.
조언 부탁드립니다.
if(document.all) {
document.all.td0.style.background=mbc;
document.all.td1.style.background=mbc;
document.all.td2.style.background=mbc;
document.all.td3.style.background=mbc;
document.all.td4.style.background=mbc;
document.all.td5.style.background=mbc;
document.all.td6.style.background=mbc;
document.all.td7.style.background=mbc;
tditem.style.background='#FFCC00'; //메인메뉴 마우스 오버 색상
}
else if(document.ALLnTOP) {
document.ALLnTOP("td0").style.background=mbc;
document.ALLnTOP("td1").style.background=mbc;
document.ALLnTOP("td2").style.background=mbc;
document.ALLnTOP("td3").style.background=mbc;
document.ALLnTOP("td4").style.background=mbc;
document.ALLnTOP("td5").style.background=mbc;
document.ALLnTOP("td6").style.background=mbc;
document.ALLnTOP("td7").style.background=mbc;
tditem.style.background='#FEFBDE';
}
}
function TopMenu(menu) {
which = submenu[menu];
if (document.layers){
document.top1.document.top2.document.write(which)
document.top1.document.top2.document.close()
}
else if (document.ALLnTOP) {
document.ALLnTOP("top3").innerHTML=which;
}
else if (document.all){
top3.innerHTML=' ';
top3.innerHTML=which;
}
}
if (document.ALLnTOP)
colorIt(document.ALLnTOP(1));
else if (document.all){
colorIt(document.all.td1);
}
TopMenu(1);
위 소스에서 메뉴번호(위치)를 기억하려면 어떻게 하나요?
제가 해본 방법입니다.
config.php 파일에
$menu_pos = 1 을 추가하고
위 menu.php 파일에
which = submenu[menu]; 아래줄에 $menu_pos = menu 추가하고
colorIt(document.ALLnTOP(1)); ----> colorIt(document.ALLnTOP($menu_pos));
TopMenu(1); ---> TopMenu($menu_pos);
변경하면 메뉴가 나타나지 않네요.
조언 부탁드립니다.