묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
뭔 소린지.....
2003.08.20 18:13
phpmyadmin을 하려는데 않되서요....
이런 에러가 나오던데 뭔 말인지.... 꼭 알려줘요...
Fatal error: Failed opening required './libraries/grab_globals.lib.php'
(include_path='.:/usr/local/lib/php') in /home/02/archidiet11/www/phpmyadmin/index.php on line 8
아래는 index.php의 일부내용임.
<?php
/* $Id: index.php,v 1.24 2001/11/25 12:20:49 loic1 Exp $ */
/**
* Gets core libraries and defines some variables
*/
require('./libraries/grab_globals.lib.php');
require('./libraries/common.lib.php');
// Gets the default font sizes
PMA_setFontSizes();
// Gets the host name
// loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
if (empty($HTTP_HOST)) {
if (!empty($_ENV) && isset($_ENV['HTTP_HOST'])) {
$HTTP_HOST = $_ENV['HTTP_HOST'];
}
else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {
$HTTP_HOST = $HTTP_ENV_VARS['HTTP_HOST'];
}
else if (@getenv('HTTP_HOST')) {
$HTTP_HOST = getenv('HTTP_HOST');
}
else {
$HTTP_HOST = '';
}
}
이런 에러가 나오던데 뭔 말인지.... 꼭 알려줘요...
Fatal error: Failed opening required './libraries/grab_globals.lib.php'
(include_path='.:/usr/local/lib/php') in /home/02/archidiet11/www/phpmyadmin/index.php on line 8
아래는 index.php의 일부내용임.
<?php
/* $Id: index.php,v 1.24 2001/11/25 12:20:49 loic1 Exp $ */
/**
* Gets core libraries and defines some variables
*/
require('./libraries/grab_globals.lib.php');
require('./libraries/common.lib.php');
// Gets the default font sizes
PMA_setFontSizes();
// Gets the host name
// loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
if (empty($HTTP_HOST)) {
if (!empty($_ENV) && isset($_ENV['HTTP_HOST'])) {
$HTTP_HOST = $_ENV['HTTP_HOST'];
}
else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {
$HTTP_HOST = $HTTP_ENV_VARS['HTTP_HOST'];
}
else if (@getenv('HTTP_HOST')) {
$HTTP_HOST = getenv('HTTP_HOST');
}
else {
$HTTP_HOST = '';
}
}
Failed 실패하다, opening 여는것을, required 필요한 './libraries/grab_globals.lib.php' (파일이름), (include_path='.:/usr/local/lib/php')(인클루드 패스 : 인클루드 할 때 파일을 찾을 곳이죠), in /home/02/archidiet11/www/phpmyadmin/index.php on line 8 (에러가 발생한 곳)
=> index.php 의 8번째 줄에서 필요한 파일을 찾을 수 없는 에러가 났습니다.
./libraries/grab_globals.lib.php 파일이 없다네요. myadmin 을 다시 설치해보세요.
./ 라고 하면 myadmin이 설치된 곳이란 뜻입니다. 그 곳에서 libraries 디렉토리에서 grab_globals.lib.php파일이 존재하는지 찾아보세요.