묻고답하기

아래에 어떤분이 답변을 해주셨는데 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 남기남
꿈꾸는돌 xe 공식홈 '다운로드' 처럼 카테고리를 서브메뉴로 출력할 수 있나요? [4] 2015.10.14 by Double'U'
newi 그림 그리기 게시판 은 없나요??  
newi 게시판 짧은 주소 문의  
박효진 XE 1.5 게시물 제목 동일하게 고정할수 있나요?  
xe어려워요 xe초보자가 겪고있는 오류들입니다. 답변좀 부탁드릴께요 ㅠㅠ file  
고양이냥 ssl 인증서를 구입했는데 보안 인증서에 문제가 있다고 나와요.ㅜㅜ [2] 2015.10.14 by 고양이냥
굿컵7 관리자 복구 도움요청 합니다~ [7] file 2015.10.14 by Hjuy
메롱 플래시 문제 부탁드립니다.  
최태진814 위젯 내용 직접 추가 이미지 질문 [2] 2015.10.14 by 최태진814
최태진814 이미지 바로 본문삽입 않되나요?? [4] 2015.10.14 by YJSoft
정선생 브라우저 언어에 따른 접속 주소 변경 문의 [2] 2015.10.14 by 정선생
po**** 업데이트 하다가 다음과 같은 에러 메세지가 나왔습니다. [1] 2015.10.14 by 기진곰
Chris Jeong Gmail SMTP를 사용해서 관리자 메일 자동 전송하기 [2] 2015.10.14 by Chris Jeong
고양이냥 ssl 인증서 rc4? 떄문에 B 등급이 나온거 같은데.. [3] 2015.10.14 by 고양이냥
Sydneylove 회원목록 오류 관련 내용 입니다.  
네이츠 elFinderXE 모듈 사용 하시는분 없나요?  
염소뒷다리 익스플로러에서만 글쓰기가 안됩니다. [12] 2015.10.14 by 콜롬보.
보배다 @고수님들! 도와주세요.@ [2] file 2015.10.14 by 보배다
고양이냥 ssl 인증서를 구입할려고 하는데요. [3] 2015.10.14 by Hen
thdwjdtjr 아이디를 변경하다가 아이디가 ???? [2] 2015.10.14 by thdwjdtjr
thdwjdtjr SNS 버튼을 삭제하고자 합니다. [4] file 2015.10.14 by thdwjdtjr
마꼬꼬 위젯이나 푸터의 링크를 감추는 방법 문의 [8] 2015.10.14 by 마꼬꼬
No3 질문입니다. file  
카누 사이트 디자인 설정에서 레이아웃 [1] 2015.10.14 by 휘즈
will 다국어 홈페이지 관련 [3] 2015.10.14 by 불꽃남자cc4e1
YSPark 회원 전용 페이지에서 구글 캘린더 일정을 추가할 수 없을까요?  
spaz 사이트 트래픽 혹은 cloudflare 잘 아시는 분 계신가요? 진짜 힘듭니다.. [5] 2015.10.14 by spaz
디자인업 다국어 설정후 같은페이지에 한글과 영문을 동시에 출력할 수 있나요? [1] 2015.10.14 by 불꽃남자cc4e1
미소맨 위젯 수정하는 방법 [1] file 2015.10.15 by 미소맨
으뉸으뉸 썸네일 생성 오류입니다. 0kb 문제 [1] 2015.10.15 by 열혈개발