묻고답하기

아래에 어떤분이 답변을 해주셨는데 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 남기남
정용학 여기 가입 팝업처럼.......가입하고 나서 바로 로그인되게 하는 방법!좀 가르켜 주세요! <소스 있슴> [1] 2007.08.10
김정은 노프레임홈에서 가운데 정렬이 안되요T_T [1] 2007.08.10
순수주의 주메뉴와 서브메뉴.. [2] 2007.08.10
지레인 [PHP]-include 사용법에 대한 질문임...고수님 답변부탁드립니다....*^^* [2] 2007.08.10
ASP 소스가 그대로 보여요. [2] 2007.08.10
조효숙 php로 작성된 온라인주문서 해독관련...^^;;  
Forevernero [제로카운터] 날자가 이상해요...! [1] 2007.08.10
누룽지 제발 답변 해 주세요..ㅠ.ㅠ; [1] 2007.08.10
조영민 님들 꼭갈켜주셈요 ㅠ.ㅠ 필독.. [1] 2007.08.10
success 나모에서여... 표안에서 스크롤바가 생기려면 어떻게 해여? [2] 2007.08.10
ASSA 홈페이지 트래픽에 관하여 [1] 2007.08.10
허진규 [re] wo.to같은 도매인사용시... [1] 2007.08.10
조남식 wo.to같은 도매인사용시...  
오태현 MYsql사용법을 몰라 이렇게 글을 올립니다 [1] 2007.08.10
한정헌 게시판에 새글이 올라올때마다... [2] 2007.08.10
(づ_ど)포터시네마 PHP소스 중에서... [3] 2007.08.10
☆★으뉘뽀승딘。 나모에서...  
강대원 자료요청좀 할렵니다. [2] 2007.08.10
김성진 이동할때... [2] 2007.08.10
허진규 에구구 제컴 이상해요...읽기전용이 지멋대로..도와주세요  
크링 질문좀 -_-;; [1] 2007.08.10
조용신 phpmyadmin을 아무나 설정할수 있게 되어있는데.. [1] 2007.08.10
야호미 저기 질문 입니다.............. [2] 2007.08.10
황선조 웹디자인 문제로요... [1] 2007.08.10
sachki 이름대신에 이미지 넣는거 어떻게하는거예요? [1] 2007.08.10
조용신 phpmyadmin관련 추가 질문입니다 [2] 2007.08.10
윤종연 초보자인데요...홈페이지 만드는데...  
신광철 플래쉬 만든 게시판 소스 없나요 ? [1] 2007.08.10
ZipShin 배열에관한 MrJ님의 강의를 보고..^^ implode() 함수로.. [2] 2007.08.10
ZipShin include랑 비슷한 함수가 있다던데;; [2] 2007.08.10