묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
ㅏㅏㅏㅏㅏ 제발 답변을...
2003.08.21 09:44
제로보드에서 게시판의 이메일 부분만 관리자가 삭제하려하는데 방법을 모르겟습니다.
나름대로 phpmyadmin을 설치해서 뭘 해보려하는데 되지도 않고...
어케해야 게시판 이메일부분을 관리자가 제어할 수 있는지요....
phpmyadmin은 팁을보고 설치했는데 로그인이 되지 않아요. 아래와같이 했습니다.
//여기서부터
$admin_id="아뒤"; //인증창이뜨면 넣을 아뒤
$admin_pwd="비번"; //넣을 비번
// 위 두가지는 자신의 디비설정이랑 상관없이 맘대로 만드시면 됩니다..
// 그리고 필요할때마다 바꿔서 쓰실수 있습니다..
function auth_User() {
Header("WWW-authenticate: basic realm="Mysql Controller For Owner" ");
Header("HTTP/1.0 401 Unauthorized");
echo ("
<SCRIPT>
alert('Fail! GO Away!');
history.go(-1);
</SCRIPT>");
exit;
}
if($admin_id != $PHP_AUTH_USER || $admin_pwd != $PHP_AUTH_PW) {
auth_User();
} else {
SetCookie ("Haze_Name", $PHP_AUTH_USER);
SetCookie ("Haze_Pwd", crypt("sw",$PHP_AUTH_PW));
Header("HTTP/1.0 401 Unauthorized");
}
//여기 위에 까지입니다.
그리고 아래처럼 했구요
$cfgServers[1]['host'] = '+ '+ 'db2.newseoul.com'; // MySQL hostname
$cfgServers[1]['port'] = '3306'; // MySQL port - leave blank for default port
$cfgServers[1]['socket'+ '] = ''; // Path to the socket - leave blank for default socket
$cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[1]['stduser'] = ''; // MySQL standard user settings (this user must have read-only
$cfgServers[1]['stdpass'] = ''; // access to the "mysql/user" and "mysql/db" tables)
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication?
$cfgServers[1]['user'] = '제 아뒤'; // MySQL user
$cfgServers[1]['password'] = '제 비번'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = ''; // If set to a db-name, only this db is displayed at left frame
// It may also be an array of db-names
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
$cfgServers[1]['bookmarkdb'] = ''; // Bookmark db - leave blank for no bookmark support
$cfgServers[1]['bookmarktable'] = ''; // Bookmark table - leave blank for no bookmark support
나름대로 phpmyadmin을 설치해서 뭘 해보려하는데 되지도 않고...
어케해야 게시판 이메일부분을 관리자가 제어할 수 있는지요....
phpmyadmin은 팁을보고 설치했는데 로그인이 되지 않아요. 아래와같이 했습니다.
//여기서부터
$admin_id="아뒤"; //인증창이뜨면 넣을 아뒤
$admin_pwd="비번"; //넣을 비번
// 위 두가지는 자신의 디비설정이랑 상관없이 맘대로 만드시면 됩니다..
// 그리고 필요할때마다 바꿔서 쓰실수 있습니다..
function auth_User() {
Header("WWW-authenticate: basic realm="Mysql Controller For Owner" ");
Header("HTTP/1.0 401 Unauthorized");
echo ("
<SCRIPT>
alert('Fail! GO Away!');
history.go(-1);
</SCRIPT>");
exit;
}
if($admin_id != $PHP_AUTH_USER || $admin_pwd != $PHP_AUTH_PW) {
auth_User();
} else {
SetCookie ("Haze_Name", $PHP_AUTH_USER);
SetCookie ("Haze_Pwd", crypt("sw",$PHP_AUTH_PW));
Header("HTTP/1.0 401 Unauthorized");
}
//여기 위에 까지입니다.
그리고 아래처럼 했구요
$cfgServers[1]['host'] = '+ '+ 'db2.newseoul.com'; // MySQL hostname
$cfgServers[1]['port'] = '3306'; // MySQL port - leave blank for default port
$cfgServers[1]['socket'+ '] = ''; // Path to the socket - leave blank for default socket
$cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[1]['stduser'] = ''; // MySQL standard user settings (this user must have read-only
$cfgServers[1]['stdpass'] = ''; // access to the "mysql/user" and "mysql/db" tables)
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication?
$cfgServers[1]['user'] = '제 아뒤'; // MySQL user
$cfgServers[1]['password'] = '제 비번'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = ''; // If set to a db-name, only this db is displayed at left frame
// It may also be an array of db-names
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
$cfgServers[1]['bookmarkdb'] = ''; // Bookmark db - leave blank for no bookmark support
$cfgServers[1]['bookmarktable'] = ''; // Bookmark table - leave blank for no bookmark support