Имя пользователя:
Пароль:  
Помощь | Регистрация | Забыли пароль?  

Название темы: не загрузить phpMyAdmin
Показать сообщение отдельно

Аватара для vadimiron

Ветеран


Сообщения: 1864
Благодарности: 120

Профиль | Отправить PM | Цитировать


Вот вырезка из моего конфига, прочитайте внимательно и попробуйте так сделать:
PHP код: Выделить весь код

/*Your phpMyAdmin url
*
* Complete the variable below with the full url ie
* http://www.your_web.net/path_to_your_phpMyAdmin_directory/
*
* It must contain characters that are valid for a URL, and the path is
* case sensitive on some Web servers, for example Unix-based servers.
*
* In most cases you can leave this variable empty, as the correct value
* will be detected automatically. However, we recommend that you do
* test to see that the auto-detection code works in your system. A good
* test is to browse a table, then edit a row and save it. There will be
* an error message if phpMyAdmin cannot auto-detect the correct value.
*
* If the auto-detection code does work properly, you can set to TRUE the
* $cfg['PmaAbsoluteUri_DisableWarning'] variable below.
*/
$cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' 'http') . '://'
$_SERVER['HTTP_HOST']
. (!empty(
$_SERVER['SERVER_PORT']) ? ':' $_SERVER['SERVER_PORT'] : '')
substr($_SERVER['PHP_SELF'], 0strrpos($_SERVER['PHP_SELF'], '/')+1);
 
 
/**
* Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
* You should use this if and ONLY if the PmaAbsoluteUri auto-detection
* works perfectly.
*/
$cfg['PmaAbsoluteUri_DisableWarning'] = FALSE


Отправлено: 13:14, 16-06-2005 | #2

Название темы: не загрузить phpMyAdmin