phpMyAdmin 설치에러 도와주세요.
phpmyadmin 설치하려고 접속하니 에러가 나네요.
Unexpected character in input: '\' (ASCII=92) state=1 in D:\APM_Setup\htdocs\phpMyAdmin\index.php on line 702
다음은 index.php
/**
* prints list item for main page
*
* @param string $name displayed text
* @param string $listId id, used for css styles
* @param string $url make item as link with $url as target
* @param string $mysql_help_page display a link to MySQL's manual
* @param string $target special target for $url
* @param string $a_id id for the anchor,
* used for jQuery to hook in functions
* @param string $class class for the li element
* @param string $a_class class for the anchor element
*
* @return void
*/
function PMA_printListItem($name, $listId = null, $url = null,
$mysql_help_page = null, $target = null, $a_id = null, $class = null,
$a_class = null
) {
echo PMA\Template::get('list/item')
->render(
array(
'content' => $name,
'id' => $listId,
'class' => $class,
'url' => array(
'href' => $url,
'target' => $target,
'id' => $a_id,
'class' => $a_class,
),
'mysql_help_page' => $mysql_help_page,
)
);
}
PHP Version 5.2.12
답변 2개
감사합니다.
셋업경로를 다시 설치 했습니다.
개인 PC에 설치하신거 같은데
apm_setup 기준으로 경로를 다시 설정하셔야 할겁니다.
답변을 작성하려면 로그인이 필요합니다.