묻고답하기

아래에 어떤분이 답변을 해주셨는데 autu_type이 이 파일에는 없네요..
어느컴퓨터에서든 phpmyadmin을 브라우져에서 열어도 root로 로그인 되어있는 상태로 나오거든요
그래서 아무나 삭제, 수정을 할수 있고..
그래서,
어떻게 해야 그걸 막을수 있는지 질문입니다

<?php
/* $Id: config.inc.php,v 1.53 2001/11/21 20:55:30 loic1 Exp $ */


/**
* phpMyAdmin Configuration File
*
* All directives are explained in Documentation.html
*/


/**
* Bookmark Table Structure
*
* CREATE TABLE bookmark (
*  id int(11) DEFAULT '0' NOT NULL auto_increment,
*  dbase varchar(255) NOT NULL,
*  user varchar(255) NOT NULL,
*  label varchar(255) NOT NULL,
*  query text NOT NULL,
*  PRIMARY KEY (id)
* );
*
*/


/**
* Your phpMyAdmin url
*
* Complete the variable below with the full url ie
*    http://www.your_web.net/path_to_your_phpMyAdmin_directory/
*/
$cfgPmaAbsoluteUri = '';


/**
* Server(s) configuration
*/
// The $cfgServers array starts with $cfgServers[1].  Do not use $cfgServers[0].
// You can disable a server config entry by setting host to ''.
$cfgServers[1]['host']          = 'localhost'; // MySQL hostname
$cfgServers[1]['port'+ '+ ']          = '+ '';          // 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']          = 'root';      // 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

$cfgServers[2]['host']          = '';
$cfgServers[2]['port']          = '';
$cfgServers[2]['socket']        = '';
$cfgServers[2]['connect_type']  = 'tcp';
$cfgServers[2]['stduser']       = '';
$cfgServers[2]['stdpass']       = '';
$cfgServers[2]['adv_auth']      = FALSE;
$cfgServers[2]['user']          = 'root';
$cfgServers[2]['password'+ ']      = '';
$cfgServers[2]['only_db']       = '';
$cfgServers[2]['verbose']       = '';
$cfgServers[2]['bookmarkdb']    = '';
$cfgServers[2]['bookmarktable'] = '';

$cfgServers[3]['host']          = '';
$cfgServers[3]['port']          = '';
$cfgServers[3]['socket']        = '';
$cfgServers[3]['+ 'connect_type']  = 'tcp';
$cfgServers[3]['stduser'+ ']       = '';
$cfgServers[3]['stdpass']       = '';
$cfgServers[3]['adv_auth']      = FALSE;
$cfgServers[3]['user']          = 'root';
$cfgServers[3]['password']      = '';
$cfgServers[3]['only_db']       = '';
$cfgServers[3]['verbose']       = '';
$cfgServers[3]['bookmarkdb']    = '';
$cfgServers[3]['+ 'bookmarktable'] = '';

// If you have more than one server configured, you can set $cfgServerDefault
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfgServerDefault *MUST* be
// set to that server.
$cfgServerDefault = 1;                         // Default server (0 = no default server)
$cfgServer        = '';
unset($cfgServers[0]);


/**
* Other core phpMyAdmin settings
*/
$cfgOBGzip                = TRUE;   // use GZIP output buffering if possible
$cfgPersistentConnections = FALSE;  // use persistent connections to MySQL database
$cfgExecTimeLimit         = 300;    // maximum execution time in seconds (0 for no limit)
$cfgSkipLockedTables      = FALSE;  // mark used tables, make possible to show
                                    // locked tables (since MySQL 3.23.30)
$cfgShowSQL               = TRUE;   // show SQL queries as run
$cfgAllowUserDropDatabase = FALSE;  // show a 'Drop database' link to normal users  
$cfgConfirm               = TRUE;   // confirm 'DROP TABLE' & 'DROP DATABASE'

$cfgShowStats             = TRUE;   // allow to display statistics and space usage in
                                    // the pages about database details and table
                                    // properties
$cfgShowTooltip           = TRUE;   // display table comment as tooltip in left frame

// In the main frame, at startup...
$cfgShowMysqlInfo         = FALSE;  // whether to display the "MySQL runtime
$cfgShowMysqlVars         = FALSE;  // information", "MySQL system variables" and "PHP
$cfgShowPhpInfo           = FALSE;  // information" links for simple users or not

// In browse mode...
$cfgShowBlob              = FALSE;  // display blob field contents
$cfgNavigationBarIconic   = TRUE;   // do not display text inside navigation bar buttons
$cfgShowAll               = FALSE;  // allows to display all the rows
$cfgMaxRows               = 30;     // maximum number of rows to display
$cfgOrder                 = 'ASC';  // default for 'ORDER BY' clause (valid
                                    // values are '+ 'ASC', 'DESC' or 'SMART' -ie
                                    // descending order for fields of type
                                    // TIME, DATE, DATETIME & TIMESTAMP,
                                    // ascending order else-)

// In edit mode...
$cfgProtectBinary         = 'blob'; // disallow editing of binary fields
                                    // valid values are:
                                    //   FALSE  allow editing
                                    //   'blob' allow editing except for BLOB fields
                                    //   'all'  disallow editing

$cfgZipDump               = TRUE;   // Allow the use of zip/gzip/bzip
$cfgGZipDump              = TRUE;   // compression for
$cfgBZipDump              = TRUE;   // dump files


/**
* Link to the official MySQL documentation
* Be sure to include no trailing slash on the path
*/
$cfgManualBase = 'http://www.mysql.com/documentation/mysql/bychapter';


/**
* Language settings
*/
// Default language to use, if not browser-defined or user-defined
$cfgDefaultLang = 'en';
// Force: always use this language - must be defined in
//        libraries/select_lang.lib.php
// $cfgLang     = 'en';
// Loads language file
require('+ './libraries/select_lang.lib.php');


/**
* Customization & design
*/
$cfgLeftBgColor         = '#D0DCE0';    // background color for the left frame
$cfgRightBgColor        = '#F5F5F5';    // background color for the right frame
$cfgBorder              = 0;            // border width on tables
$cfgThBgcolor           = '#D3DCE3';    // table header row colour
$cfgBgcolorOne          = '#CCCCCC';    // table data row colour
$cfgBgcolorTwo          = '#DDDDDD';    // table data row colour, alternate
$cfgPointerColor        = '#CCFFCC';    // color of the pointer in browse mode
$cfgTextareaCols        = 40;           // textarea size (columns) in edit mode
$cfgTextareaRows        = 7;            // textarea size (rows) in edit mode
$cfgLimitChars          = 50;           // max field data length in browse mode
$cfgModifyDeleteAtLeft  = TRUE;         // show edit/delete links on left side of browse
$cfgModifyDeleteAtRight = FALSE;        // show edit/delete links on right side of browse
$cfgLeftWidth           = 150;          // left frame width


/**
* MySQL settings
*/
// Column types
$cfgColumnTypes = array(
   'TINYINT',
   'SMALLINT',
   'MEDIUMINT',
   'INT',
   'BIGINT',
   'FLOAT',
   'DOUBLE',
   'DECIMAL',
   'DATE',
   'DATETIME',
   'TIMESTAMP',
   'TIME',
   'YEAR',
   'CHAR',
   'VARCHAR',
   'TINYBLOB',
   'TINYTEXT'+ ',
   'TEXT',
   '+ 'BLOB',
   'MEDIUMBLOB',
   'MEDIUMTEXT',
   'LONGBLOB',
   'LONGTEXT',
   '+ 'ENUM',
   'SET'
);

// Atributes
$cfgAttributeTypes = array(
   '',
   'BINARY',
   'UNSIGNED',
   'UNSIGNED ZEROFILL'
);

// Available functions
$cfgFunctions = array(
   'ASCII',
   '+ 'CHAR',
   'SOUNDEX',
   'LCASE',
   'UCASE',
   'NOW',
   'PASSWORD',
   'MD5',
   'ENCRYPT',
   'RAND',
   'LAST_INSERT_ID',
   'COUNT',
   'AVG',
   'SUM',
   'CURDATE',
   'CURTIME',
   'FROM_DAYS',
   'FROM_UNIXTIME',
   'PERIOD_ADD',
   'PERIOD_DIFF',
   'TO_DAYS',
   'UNIX_TIMESTAMP',
   'USER',
   'WEEKDAY'
);


/**
* Unset magic_quotes_runtime - do not change!
*/
set_magic_quotes_runtime(0);
?>
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
신비의불 업데이트 이후 ckeditor 에디터 에러 문제 file  
Ystory 다국어 이미지 질문입니다. [4] 2015.10.16 by Ystory
아이돌72 멀티미디어(동영상) 첨부시 썸네일 보여주는 방법 알려주세요 [1] 2015.10.16 by 키스투엑스이
Devkang 스케치북 5스킨에 본문 글보기할때에 구글애드센스 광고 넣고싶습니다 삽입부분 위치 아시는분 이나 해보신분 좀 알려주심 감사할게요 [1] 2015.10.16 by 키스투엑스이
내아내그리움 현재 유튜브사이트 전지현광고는 어떻게하는걸까요? [1] 2015.10.16 by 키스투엑스이
ING 게시판 아이콘 정렬 [1] file 2015.10.16 by 키스투엑스이
joorans 문의게시판 만들려고 합니다  
고양이냥 sweet mobile 레이아웃 상단이 뜨는데 [1] 2015.10.16 by 키스투엑스이
머리 드림위버에서 작성한 홈페이지에 ex보드를 삽입할 수 있나요? [1] 2015.10.16 by 키스투엑스이
sports21 검색이 안됩니다.  
큐원 스케치북 모바일에서 글과 사진 모두 등록은 되지만..ㅠㅠ [2] 2015.10.15 by 큐원
예란 타임라인 모듈 카테고리 목록에서 게시판 추가하는 방법 [2] file 2015.10.15 by 예란
spaz 익스에선 이상이 없는데 크롬에서 댓글작성이 안되고 경고창이 뜹니다 [3] 2015.10.15 by treasurej
thdwjdtjr 태그 작성하는 법..... ??? [2] file 2015.10.15 by thdwjdtjr
고양이냥 ssl 인증서 설치 완료했는데 B등급이 나왔어요 [8] 2015.10.15 by 고양이냥
고양이냥 서버 호스팅보면 ssd + 1tb 하드 이던데 [4] 2015.10.15 by 고양이냥
에이치오 &nbsp; 이것이 게시글 저장시 ? 로 변경되어 저장됩니다. [1] 2015.10.15 by treasurej
열혈개발 썸네일 폴더 삭제해도되나요? [1] 2015.10.15 by treasurej
파워XE 관리자 로그인시 에러나 납니다. 도와주세요.. [4] 2015.10.15 by 파워XE
아이돌72 스케치북 스킨에서 카카오 링크 오류 발생 문제 [4] 2015.10.15 by 아이돌72
전갈자리남 회원가입시 문자 관련 [1] 2015.10.15 by 기진곰
까꿍 게시판 만드는 방법 [1] 2015.10.15 by u****
thdwjdtjr 태그 뜻이 무엇을 의미하는 것 인지요 [2] file 2015.10.15 by thdwjdtjr
hittttte xe 게시판관련이요 ㅠㅠ [ 게시글이사라짐 ]  
u**** 안녕하세요 jquery를 사용하는데 초보적인 질문이 있습니다. [1] file 2015.10.15 by u****
전갈자리남 웹호스팅 서버호스팅 SSL관련 [2] 2015.10.15 by 전갈자리남
4bb3c 회원가입하고 확인 누르면 forbidden 창이 뜬다고 합니다  
별별 3차메뉴를 카테고리(분류) 자리에 대신 출력가능한가요?  
시하맘 위젯에서 확장변수 항목표시하기 [1] file 2015.10.15 by 열혈개발
열혈개발 잘되던 썸네일 이미지가 먹통되었습니다 ㅠㅠ (내용보강) [2] 2015.10.15 by 열혈개발