<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Форум PHP-MyAdmin.RU &mdash; Установка phpMyAdmin 3.4.9]]></title>
	<link rel="self" href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=2431&amp;type=atom" />
	<updated>2012-01-11T12:47:22Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=2431</id>
		<entry>
			<title type="html"><![CDATA[Re: Установка phpMyAdmin 3.4.9]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=18535#p18535" />
			<content type="html"><![CDATA[<p>Спасибо все понял позже напишу для пионеров <img src="https://forum.php-myadmin.ru/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[Dima-os]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3750</uri>
			</author>
			<updated>2012-01-11T12:47:22Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=18535#p18535</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Установка phpMyAdmin 3.4.9]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=18528#p18528" />
			<content type="html"><![CDATA[<p>Установка phpMyAdmin описана здесь: <a href="http://php-myadmin.ru/learning/instrument-pma.html">http://php-myadmin.ru/learning/instrument-pma.html</a><br />Там же указаны строки которые надо раскомментировать.</p><p>Если авторизация cookie, то имя и пароль root писать в конфигурационном файле не надо, потому что при запуске phpMyAdmin будет выведена форма авторизации. Если нужна авторизация config, то необходимо самому добавить строки:<br /></p><div class="codebox"><pre><code>$cfg[&#039;Servers&#039;][$i][&#039;user&#039;] = &#039;root&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;password&#039;] = &#039;пароль&#039;;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2012-01-10T10:35:22Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=18528#p18528</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Установка phpMyAdmin 3.4.9]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=18524#p18524" />
			<content type="html"><![CDATA[<p><strong>В новой версии phpMyAdmin 3.4.9</strong> лежит в папке, новый конфигоруционный файл <strong>config.sample.inc.php</strong>&nbsp; &nbsp;\phpMyAdmin\config.sample.inc.php<br />Надо переименовать из <strong>config.sample.inc.php</strong>&nbsp; в <strong> config.inc.php</strong> и рас комментировать строки&nbsp; (убрать&nbsp; // ).<br />У меня вопрос как правильно&nbsp; рас комментировать (убрать&nbsp; // )?<br />Почему нет пользователя <strong>root</strong> где прописать строки для <strong>root</strong>?<br />Вот&nbsp; создатель wiki файла <strong>config.sample.inc.php</strong> , дают ссылку на свой сайт, <a href="http://wiki.phpmyadmin.net/pma/Config">http://wiki.phpmyadmin.net/pma/Config</a><br />Я не пойму что открыть (убрать&nbsp; // ). и где <strong>root</strong>?<br />Вот сам оригинал&nbsp; <strong>config.sample.inc.php</strong><br />Одно радует что сразу прописали пользователя <strong>pma</strong>.<br />Остается внести с привилегиями пользователя&nbsp; <strong>pma</strong> и импортировать таблицы <strong>create_tables.sql</strong><br /> из папки <strong>\phpMyAdmin\scripts\</strong><br />......................................................................<br /></p><div class="codebox"><pre><code>&lt;?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * phpMyAdmin sample configuration, you can use it as base for
 * manual configuration. For easier setup you can use setup/
 *
 * All directives are explained in Documentation.html and on phpMyAdmin
 * wiki &lt;http://wiki.phpmyadmin.net&gt;.
 *
 * @package phpMyAdmin
 */

/*
 * This is needed for cookie based authentication to encrypt password in
 * cookie
 */
$cfg[&#039;blowfish_secret&#039;] = &#039;&#039;; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

/*
 * Servers configuration
 */
$i = 0;

/*
 * First server
 */
$i++;
/* Authentication type */
$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;] = &#039;cookie&#039;;
/* Server parameters */
$cfg[&#039;Servers&#039;][$i][&#039;host&#039;] = &#039;localhost&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;] = &#039;tcp&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;compress&#039;] = false;
/* Select mysql if your server does not have mysqli */
$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;] = &#039;mysqli&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;] = false;

/*
 * phpMyAdmin configuration storage settings.
 */

/* User used to manipulate with storage */
// $cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;] = &#039;pma&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;] = &#039;pmapass&#039;;

/* Storage database and tables */
// $cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;] = &#039;phpmyadmin&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;bookmarktable&#039;] = &#039;pma_bookmark&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;relation&#039;] = &#039;pma_relation&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;table_info&#039;] = &#039;pma_table_info&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;table_coords&#039;] = &#039;pma_table_coords&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;pdf_pages&#039;] = &#039;pma_pdf_pages&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;column_info&#039;] = &#039;pma_column_info&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;history&#039;] = &#039;pma_history&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;tracking&#039;] = &#039;pma_tracking&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;designer_coords&#039;] = &#039;pma_designer_coords&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;userconfig&#039;] = &#039;pma_userconfig&#039;;
/* Contrib / Swekey authentication */
// $cfg[&#039;Servers&#039;][$i][&#039;auth_swekey_config&#039;] = &#039;/etc/swekey-pma.conf&#039;;

/*
 * End of servers configuration
 */

/*
 * Directories for saving/loading files from server
 */
$cfg[&#039;UploadDir&#039;] = &#039;&#039;;
$cfg[&#039;SaveDir&#039;] = &#039;&#039;;

/**
 * Defines whether a user should be displayed a &quot;show all (records)&quot;
 * button in browse mode or not.
 * default = false
 */
//$cfg[&#039;ShowAll&#039;] = true;

/**
 * Number of rows displayed when browsing a result set. If the result
 * set contains more rows, &quot;Previous&quot; and &quot;Next&quot;.
 * default = 30
 */
//$cfg[&#039;MaxRows&#039;] = 50;

/**
 * Use graphically less intense menu tabs
 * default = false
 */
//$cfg[&#039;LightTabs&#039;] = true;

/**
 * disallow editing of binary fields
 * valid values are:
 *   false  allow editing
 *   &#039;blob&#039; allow editing except for BLOB fields
 *   &#039;all&#039;  disallow editing
 * default = blob
 */
//$cfg[&#039;ProtectBinary&#039;] = &#039;false&#039;;

/**
 * Default language to use, if not browser-defined or user-defined
 * (you find all languages in the locale folder)
 * uncomment the desired line:
 * default = &#039;en&#039;
 */
//$cfg[&#039;DefaultLang&#039;] = &#039;en&#039;;
//$cfg[&#039;DefaultLang&#039;] = &#039;de&#039;;

/**
 * default display direction (horizontal|vertical|horizontalflipped)
 */
//$cfg[&#039;DefaultDisplay&#039;] = &#039;vertical&#039;;


/**
 * How many columns should be used for table display of a database?
 * (a value larger than 1 results in some information being hidden)
 * default = 1
 */
//$cfg[&#039;PropertiesNumColumns&#039;] = 2;

/**
 * Set to true if you want DB-based query history.If false, this utilizes
 * JS-routines to display query history (lost by window close)
 *
 * This requires configuration storage enabled, see above.
 * default = false
 */
//$cfg[&#039;QueryHistoryDB&#039;] = true;

/**
 * When using DB-based query history, how many entries should be kept?
 *
 * default = 25
 */
//$cfg[&#039;QueryHistoryMax&#039;] = 100;

/*
 * You can find more configuration options in Documentation.html
 * or here: http://wiki.phpmyadmin.net/pma/Config
 */
?&gt;
 </code></pre></div><p>Заранее Благодарен за ответ. <img src="https://forum.php-myadmin.ru/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[Dima-os]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=3750</uri>
			</author>
			<updated>2012-01-10T09:46:34Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=18524#p18524</id>
		</entry>
</feed>
