<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Форум PHP-MyAdmin.RU &mdash; Ошибка с форумом]]></title>
		<link>https://forum.php-myadmin.ru/viewtopic.php?id=2614</link>
		<atom:link href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=2614&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «Ошибка с форумом».]]></description>
		<lastBuildDate>Wed, 11 Jul 2012 09:10:35 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Ошибка с форумом]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=20719#p20719</link>
			<description><![CDATA[<p>1). #1146 - Table &#039;phpmyadmin.pma_recent&#039; doesn&#039;t exist<br />Ошибка означает, что таблицы pma_recent нет в базе данных phpmyadmin. Я могу только сделать вывод, что файл examples/create_tables.sql не импортировался, потому что в нем эта таблица создается.</p>]]></description>
			<author><![CDATA[null@example.com (Hanut)]]></author>
			<pubDate>Wed, 11 Jul 2012 09:10:35 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=20719#p20719</guid>
		</item>
		<item>
			<title><![CDATA[Re: Ошибка с форумом]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=20718#p20718</link>
			<description><![CDATA[<div class="quotebox"><cite>apolon17 сказал:</cite><blockquote><p>-- --------------------------------------------------------<br />-- SQL Commands to set up the pmadb as described in Documentation.html.<br />-- <br />-- This file is meant for use with MySQL 5 and above!<br />-- <br />-- This script expects the user pma to already be existing. If we would put a<br />-- line here to create him too many users might just use this script and end<br />-- up with having the same password for the controluser.<br />--&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />-- This user &quot;pma&quot; must be defined in config.inc.php (controluser/controlpass)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />--&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />-- Please don&#039;t forget to set up the tablenames in config.inc.php&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br />-- </p><p>-- --------------------------------------------------------</p><p>-- <br />-- Database : `phpmyadmin`<br />-- <br />CREATE DATABASE IF NOT EXISTS `phpmyadmin`<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;<br />USE phpmyadmin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Privileges<br />-- <br />-- (activate this statement if necessary)<br />-- GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO<br />--&nbsp; &nbsp; &#039;pma&#039;@localhost;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_bookmark`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_bookmark` (<br />&nbsp; `id` int(11) NOT NULL auto_increment,<br />&nbsp; `dbase` varchar(255) NOT NULL default &#039;&#039;,<br />&nbsp; `user` varchar(255) NOT NULL default &#039;&#039;,<br />&nbsp; `label` varchar(255) COLLATE utf8_general_ci NOT NULL default &#039;&#039;,<br />&nbsp; `query` text NOT NULL,<br />&nbsp; PRIMARY KEY&nbsp; (`id`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Bookmarks&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_column_info`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_column_info` (<br />&nbsp; `id` int(5) unsigned NOT NULL auto_increment,<br />&nbsp; `db_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `table_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `column_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `comment` varchar(255) COLLATE utf8_general_ci NOT NULL default &#039;&#039;,<br />&nbsp; `mimetype` varchar(255) COLLATE utf8_general_ci NOT NULL default &#039;&#039;,<br />&nbsp; `transformation` varchar(255) NOT NULL default &#039;&#039;,<br />&nbsp; `transformation_options` varchar(255) NOT NULL default &#039;&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`id`),<br />&nbsp; UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Column information for phpMyAdmin&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_history`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_history` (<br />&nbsp; `id` bigint(20) unsigned NOT NULL auto_increment,<br />&nbsp; `username` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `db` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `table` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `timevalue` timestamp NOT NULL,<br />&nbsp; `sqlquery` text NOT NULL,<br />&nbsp; PRIMARY KEY&nbsp; (`id`),<br />&nbsp; KEY `username` (`username`,`db`,`table`,`timevalue`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;SQL history for phpMyAdmin&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_pdf_pages`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_pdf_pages` (<br />&nbsp; `db_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `page_nr` int(10) unsigned NOT NULL auto_increment,<br />&nbsp; `page_descr` varchar(50) COLLATE utf8_general_ci NOT NULL default &#039;&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`page_nr`),<br />&nbsp; KEY `db_name` (`db_name`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;PDF relation pages for phpMyAdmin&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>--<br />-- Table structure for table `pma_recent`<br />--</p><p>CREATE TABLE IF NOT EXISTS `pma_recent` (<br />&nbsp; `username` varchar(64) NOT NULL,<br />&nbsp; `tables` text NOT NULL,<br />&nbsp; PRIMARY KEY (`username`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Recently accessed tables&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>--<br />-- Table structure for table `pma_table_uiprefs`<br />--</p><p>CREATE TABLE IF NOT EXISTS `pma_table_uiprefs` (<br />&nbsp; `username` varchar(64) NOT NULL,<br />&nbsp; `db_name` varchar(64) NOT NULL,<br />&nbsp; `table_name` varchar(64) NOT NULL,<br />&nbsp; `prefs` text NOT NULL,<br />&nbsp; `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,<br />&nbsp; PRIMARY KEY (`username`,`db_name`,`table_name`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Tables&#039;&#039; UI preferences&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_relation`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_relation` (<br />&nbsp; `master_db` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `master_table` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `master_field` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `foreign_db` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `foreign_table` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `foreign_field` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`master_db`,`master_table`,`master_field`),<br />&nbsp; KEY `foreign_field` (`foreign_db`,`foreign_table`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Relation table&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_table_coords`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_table_coords` (<br />&nbsp; `db_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `table_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `pdf_page_number` int(11) NOT NULL default &#039;0&#039;,<br />&nbsp; `x` float unsigned NOT NULL default &#039;0&#039;,<br />&nbsp; `y` float unsigned NOT NULL default &#039;0&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`db_name`,`table_name`,`pdf_page_number`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Table coordinates for phpMyAdmin PDF output&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_table_info`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_table_info` (<br />&nbsp; `db_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `table_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `display_field` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`db_name`,`table_name`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Table information for phpMyAdmin&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_designer_coords`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_designer_coords` (<br />&nbsp; `db_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `table_name` varchar(64) NOT NULL default &#039;&#039;,<br />&nbsp; `x` INT,<br />&nbsp; `y` INT,<br />&nbsp; `v` TINYINT,<br />&nbsp; `h` TINYINT,<br />&nbsp; PRIMARY KEY (`db_name`,`table_name`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;Table coordinates for Designer&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>-- <br />-- Table structure for table `pma_tracking`<br />-- </p><p>CREATE TABLE IF NOT EXISTS `pma_tracking` (<br />&nbsp; `db_name` varchar(64) NOT NULL,<br />&nbsp; `table_name` varchar(64) NOT NULL,<br />&nbsp; `version` int(10) unsigned NOT NULL,<br />&nbsp; `date_created` datetime NOT NULL,<br />&nbsp; `date_updated` datetime NOT NULL,<br />&nbsp; `schema_snapshot` text NOT NULL,<br />&nbsp; `schema_sql` text,<br />&nbsp; `data_sql` longtext,<br />&nbsp; `tracking` set(&#039;UPDATE&#039;,&#039;REPLACE&#039;,&#039;INSERT&#039;,&#039;DELETE&#039;,&#039;TRUNCATE&#039;,&#039;CREATE DATABASE&#039;,&#039;ALTER DATABASE&#039;,&#039;DROP DATABASE&#039;,&#039;CREATE TABLE&#039;,&#039;ALTER TABLE&#039;,&#039;RENAME TABLE&#039;,&#039;DROP TABLE&#039;,&#039;CREATE INDEX&#039;,&#039;DROP INDEX&#039;,&#039;CREATE VIEW&#039;,&#039;ALTER VIEW&#039;,&#039;DROP VIEW&#039;) default NULL,<br />&nbsp; `tracking_active` int(1) unsigned NOT NULL default &#039;1&#039;,<br />&nbsp; PRIMARY KEY&nbsp; (`db_name`,`table_name`,`version`)<br />)<br />&nbsp; ENGINE=MyISAM ROW_FORMAT=COMPACT COMMENT=&#039;Database changes tracking for phpMyAdmin&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p><p>-- --------------------------------------------------------</p><p>--<br />-- Table structure for table `pma_userconfig`<br />--</p><p>CREATE TABLE IF NOT EXISTS `pma_userconfig` (<br />&nbsp; `username` varchar(64) NOT NULL,<br />&nbsp; `timevalue` timestamp NOT NULL,<br />&nbsp; `config_data` text NOT NULL,<br />&nbsp; PRIMARY KEY&nbsp; (`username`)<br />)<br />&nbsp; ENGINE=MyISAM COMMENT=&#039;User preferences storage for phpMyAdmin&#039;<br />&nbsp; DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;</p></blockquote></div><p>так выглядит examples/create_tables.sql этот sql там был уже, тоисть я ничего не импортировал!</p>]]></description>
			<author><![CDATA[null@example.com (apolon17)]]></author>
			<pubDate>Wed, 11 Jul 2012 06:57:52 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=20718#p20718</guid>
		</item>
		<item>
			<title><![CDATA[Re: Ошибка с форумом]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=20716#p20716</link>
			<description><![CDATA[<div class="quotebox"><cite>apolon17 сказал:</cite><blockquote><p>1). #1146 - Table &#039;phpmyadmin.pma_recent&#039; doesn&#039;t exist</p></blockquote></div><p>Импортируйте в базу данных phpmyadmin дамп examples/create_tables.sql</p><div class="quotebox"><cite>apolon17 сказал:</cite><blockquote><p>2). Ошибка при указании соединения для controluser в конфигурации.</p></blockquote></div><p>Отредактируйте данные пользователя pma или создайте его.<br />$cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;] = &#039;pma&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;] = &#039;pmapass&#039;;</p><p>По установке phpMyAdmin смотрите здесь: <a href="http://php-myadmin.ru/learning/instrument-pma.html">http://php-myadmin.ru/learning/instrument-pma.html</a></p><div class="quotebox"><cite>apolon17 сказал:</cite><blockquote><p>Ошибка при работе с базой данных</p></blockquote></div><p>Не знаю что вызывает эту ошибку. Смотрите журнал ошибок сервера. Проверьте конфигурацию форума и сайта - правильно ли там прописан пользователь MySQL.</p>]]></description>
			<author><![CDATA[null@example.com (Hanut)]]></author>
			<pubDate>Tue, 10 Jul 2012 20:07:03 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=20716#p20716</guid>
		</item>
		<item>
			<title><![CDATA[Re: Ошибка с форумом]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=20714#p20714</link>
			<description><![CDATA[<div class="quotebox"><cite>Hanut сказал:</cite><blockquote><p>Либо смените тип авторизации на cookie:<br /></p><div class="codebox"><pre><code>$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;] = &#039;cookie&#039;;</code></pre></div><p>Либо для авторизации 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;pass&#039;;</code></pre></div></blockquote></div><p>Спасибо подошёл 1 вариант и ещё пару вопросиков так как в этому не очень силён) :</p><p>1). #1146 - Table &#039;phpmyadmin.pma_recent&#039; doesn&#039;t exist</p><p>2). Ошибка при указании соединения для controluser в конфигурации.</p><p>3). Ошибка при работе с базой данных<br />&nbsp; &nbsp; &nbsp;Возникла проблема при работе с базой данных.<br />&nbsp; &nbsp; &nbsp;Вы можете попробовать обновить эту страницу, нажав сюда</p><p>3 пункт - это когда пытаюсь зайти с сайта на форум вот такая ошибка </p><p>как исправить это ?</p>]]></description>
			<author><![CDATA[null@example.com (apolon17)]]></author>
			<pubDate>Tue, 10 Jul 2012 19:26:19 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=20714#p20714</guid>
		</item>
		<item>
			<title><![CDATA[Re: Ошибка с форумом]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=20709#p20709</link>
			<description><![CDATA[<p>Либо смените тип авторизации на cookie:<br /></p><div class="codebox"><pre><code>$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;] = &#039;cookie&#039;;</code></pre></div><p>Либо для авторизации 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;pass&#039;;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Hanut)]]></author>
			<pubDate>Tue, 10 Jul 2012 14:27:37 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=20709#p20709</guid>
		</item>
		<item>
			<title><![CDATA[Ошибка с форумом]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=20708#p20708</link>
			<description><![CDATA[<p>Ошибка при работе с базой данных&nbsp; &nbsp; Возникла проблема при работе с базой данных.&nbsp; &nbsp; Вы можете попробовать обновить эту страницу, нажав сюда Хочу зайти в админ панель, чтобы исправить ошибку, но тут:Добро пожаловать в phpMyAdminОшибкаОтвет MySQL: Документация#1045 - Access denied for user &#039;root&#039;@&#039;localhost&#039; (using password: NO)phpMyAdmin не смог установить соединение с сервером MySQL. Проверьте хост, имя пользователя и пароль установленные в конфигурационном файле config.inc.php и удостоверьтесь, что они соответствуют данным полученным от администратора сервера MySQL.Файл config.inc.php выглядит так: <br /></p><div class="quotebox"><blockquote><p>&lt;?php<br />/* vim: set expandtab sw=4 ts=4 sts=4: */<br />/**<br /> * phpMyAdmin sample configuration, you can use it as base for<br /> * manual configuration. For easier setup you can use setup/<br /> *<br /> * All directives are explained in Documentation.html and on phpMyAdmin<br /> * wiki &lt;<a href="http://wiki.phpmyadmin.net">http://wiki.phpmyadmin.net</a>&gt;.<br /> *<br /> * @package PhpMyAdmin<br /> */</p><p>/*<br /> * This is needed for cookie based authentication to encrypt password in<br /> * cookie<br /> */<br />$cfg[&#039;blowfish_secret&#039;] = &#039;a8b7c6d&#039;; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */</p><p>/*<br /> * Servers configuration<br /> */<br />$i = 0;</p><p>/*<br /> * First server<br /> */<br />$i++;<br />/* Authentication type */<br />$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;] = &#039;config&#039;;<br />/* Server parameters */<br />$cfg[&#039;Servers&#039;][$i][&#039;host&#039;] = &#039;127.0.0.1&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;] = &#039;tcp&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;compress&#039;] = false;<br />/* Select mysql if your server does not have mysqli */<br />$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;] = &#039;mysqli&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;] = true;</p><p>/*<br /> * phpMyAdmin configuration storage settings.<br /> */</p><p>/* User used to manipulate with storage */<br /> $cfg[&#039;Servers&#039;][$i][&#039;controlhost&#039;] = &#039;localhost&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;] = &#039;pma&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;] = &#039;pmapass&#039;;</p><p>/* Storage database and tables */<br />$cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;] = &#039;phpmyadmin&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;bookmarktable&#039;] = &#039;pma_bookmark&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;relation&#039;] = &#039;pma_relation&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;table_info&#039;] = &#039;pma_table_info&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;table_coords&#039;] = &#039;pma_table_coords&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;pdf_pages&#039;] = &#039;pma_pdf_pages&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;column_info&#039;] = &#039;pma_column_info&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;history&#039;] = &#039;pma_history&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;table_uiprefs&#039;] = &#039;pma_table_uiprefs&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;tracking&#039;] = &#039;pma_tracking&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;designer_coords&#039;] = &#039;pma_designer_coords&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;userconfig&#039;] = &#039;pma_userconfig&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;recent&#039;] = &#039;pma_recent&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;table_uiprefs&#039;] = &#039;pma_table_uiprefs&#039;;<br />/* Contrib / Swekey authentication */<br />// $cfg[&#039;Servers&#039;][$i][&#039;auth_swekey_config&#039;] = &#039;/etc/swekey-pma.conf&#039;;</p><p>/*<br /> * End of servers configuration<br /> */</p><p>/*<br /> * Directories for saving/loading files from server<br /> */<br />$cfg[&#039;UploadDir&#039;] = &#039;/tmp&#039;;<br />$cfg[&#039;SaveDir&#039;] = &#039;/tmp&#039;;</p><p>/**<br /> * Defines whether a user should be displayed a &quot;show all (records)&quot;<br /> * button in browse mode or not.<br /> * default = false<br /> */<br />//$cfg[&#039;ShowAll&#039;] = true;</p><p>/**<br /> * Number of rows displayed when browsing a result set. If the result<br /> * set contains more rows, &quot;Previous&quot; and &quot;Next&quot;.<br /> * default = 30<br /> */<br />//$cfg[&#039;MaxRows&#039;] = 50;</p><p>/**<br /> * Use graphically less intense menu tabs<br /> * default = false<br /> */<br />//$cfg[&#039;LightTabs&#039;] = true;</p><p>/**<br /> * disallow editing of binary fields<br /> * valid values are:<br /> *&nbsp; &nbsp;false&nbsp; allow editing<br /> *&nbsp; &nbsp;&#039;blob&#039; allow editing except for BLOB fields<br /> *&nbsp; &nbsp;&#039;all&#039;&nbsp; disallow editing<br /> * default = blob<br /> */<br />//$cfg[&#039;ProtectBinary&#039;] = &#039;false&#039;;</p><p>/**<br /> * Default language to use, if not browser-defined or user-defined<br /> * (you find all languages in the locale folder)<br /> * uncomment the desired line:<br /> * default = &#039;en&#039;<br /> */<br />$cfg[&#039;DefaultLang&#039;] = &#039;ru&#039;;<br />//$cfg[&#039;DefaultLang&#039;] = &#039;de&#039;;</p><p>/**<br /> * default display direction (horizontal|vertical|horizontalflipped)<br /> */<br />//$cfg[&#039;DefaultDisplay&#039;] = &#039;vertical&#039;;</p><br /><p>/**<br /> * How many columns should be used for table display of a database?<br /> * (a value larger than 1 results in some information being hidden)<br /> * default = 1<br /> */<br />//$cfg[&#039;PropertiesNumColumns&#039;] = 2;</p><p>/**<br /> * Set to true if you want DB-based query history.If false, this utilizes<br /> * JS-routines to display query history (lost by window close)<br /> *<br /> * This requires configuration storage enabled, see above.<br /> * default = false<br /> */<br />//$cfg[&#039;QueryHistoryDB&#039;] = true;</p><p>/**<br /> * When using DB-based query history, how many entries should be kept?<br /> *<br /> * default = 25<br /> */<br />//$cfg[&#039;QueryHistoryMax&#039;] = 100;</p><p>/*<br /> * You can find more configuration options in Documentation.html<br /> * or here: <a href="http://wiki.phpmyadmin.net/pma/Config">http://wiki.phpmyadmin.net/pma/Config</a><br /> */<br />?&gt;</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (apolon17)]]></author>
			<pubDate>Tue, 10 Jul 2012 14:08:02 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=20708#p20708</guid>
		</item>
	</channel>
</rss>
