<?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; Дополнительные возможности phpMyAdmin]]></title>
		<link>https://forum.php-myadmin.ru/viewtopic.php?id=3858</link>
		<atom:link href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=3858&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «Дополнительные возможности phpMyAdmin».]]></description>
		<lastBuildDate>Fri, 24 Oct 2014 09:17:51 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Дополнительные возможности phpMyAdmin]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=25790#p25790</link>
			<description><![CDATA[<p>Текст начинающийся с &lt;!DOCTYPE html&gt; - это HTML разметка, которая появилась в дампе ошибочно и не может быть выполнена, как SQL запрос.</p><p>__________<br />adil</p>]]></description>
			<author><![CDATA[null@example.com (pomi123)]]></author>
			<pubDate>Fri, 24 Oct 2014 09:17:51 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=25790#p25790</guid>
		</item>
		<item>
			<title><![CDATA[Re: Дополнительные возможности phpMyAdmin]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=25602#p25602</link>
			<description><![CDATA[<div class="quotebox"><cite>roman001 сказал:</cite><blockquote><p>USE phpmyadmin;# MySQL вернула пустой результат (т.е. ноль строк).</p></blockquote></div><p>Попробуйте вручную создать базу данных phpmyadmin.</p>]]></description>
			<author><![CDATA[null@example.com (Hanut)]]></author>
			<pubDate>Sun, 31 Aug 2014 16:32:32 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=25602#p25602</guid>
		</item>
		<item>
			<title><![CDATA[Re: Дополнительные возможности phpMyAdmin]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=25601#p25601</link>
			<description><![CDATA[<p>Заметил что не импортируется таблица create_tables.sql<br />пишет:<br />Импорт успешно завершен, запросов выполнено: 19. (create_tables.sql)</p><br /><p>-- --------------------------------------------------------<br /> -- SQL Commands to set up the pmadb as described in the documentation.<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 /> --<br /> -- This user &quot;pma&quot; must be defined in config.inc.php (controluser/controlpass)<br /> --<br /> -- Please don&#039;t forget to set up the tablenames in config.inc.php<br /> --</p><p> -- --------------------------------------------------------</p><p> --<br /> -- Database : `phpmyadmin`<br /> --<br /> CREATE DATABASE IF NOT EXISTS `phpmyadmin`<br /> DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;# Затронута 1 строка.</p><p>USE phpmyadmin;# MySQL вернула пустой результат (т.е. ноль строк).</p><br /><p>-- --------------------------------------------------------</p><p> --<br /> -- Privileges<br /> --<br /> -- (activate this statement if necessa[...]</p>]]></description>
			<author><![CDATA[null@example.com (roman001)]]></author>
			<pubDate>Sat, 30 Aug 2014 22:01:11 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=25601#p25601</guid>
		</item>
		<item>
			<title><![CDATA[Дополнительные возможности phpMyAdmin]]></title>
			<link>https://forum.php-myadmin.ru/viewtopic.php?pid=25600#p25600</link>
			<description><![CDATA[<p>Добрый вечер.<br />Обновил сегодня phpMyAdmin.<br />После это в phpMyAdmin&nbsp; появились следующие строки:<br /> <strong>Дополнительные возможности phpMyAdmin не настроены в полной мере, некоторые функции были отключены. Для определения причины нажмите здесь.</strong><br /><span class="postimg"><img src="https://file-up.net/big_e8376e5cf0d97fda2320140830182442.jpg" alt="https://file-up.net/big_e8376e5cf0d97fda2320140830182442.jpg" /></span></p><p>config.inc.php:<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 in the doc/ folder
 * or at &lt;http://docs.phpmyadmin.net/&gt;.
 *
 * @package PhpMyAdmin
 */

/*
 * This is needed for cookie based authentication to encrypt password in
 * cookie
 */
$cfg[&#039;blowfish_secret&#039;] = &#039;a8b7c6d&#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;config&#039;;  
$cfg[&#039;Servers&#039;][$i][&#039;user&#039;] = &#039;root&#039;;  
$cfg[&#039;Servers&#039;][$i][&#039;password&#039;] = &#039;&#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 mysqli if your server has it */  
$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;] = &#039;mysqli&#039;;  
$cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;] = true;  
$cfg[&#039;Servers&#039;][$i][&#039;nopassword&#039;] = true;

/*
 * phpMyAdmin configuration storage settings.
 */

/* User used to manipulate with storage */
// $cfg[&#039;Servers&#039;][$i][&#039;controlhost&#039;] = &#039;&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;controlport&#039;] = &#039;&#039;;
// $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;table_uiprefs&#039;] = &#039;pma__table_uiprefs&#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;;
// $cfg[&#039;Servers&#039;][$i][&#039;recent&#039;] = &#039;pma__recent&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;favorite&#039;] = &#039;pma__favorite&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;users&#039;] = &#039;pma__users&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;usergroups&#039;] = &#039;pma__usergroups&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;navigationhiding&#039;] = &#039;pma__navigationhiding&#039;;
// $cfg[&#039;Servers&#039;][$i][&#039;savedsearches&#039;] = &#039;pma__savedsearches&#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;;

/**
 * Whether to display icons or text or both icons and text in table row
 * action segment. Value can be either of &#039;icons&#039;, &#039;text&#039; or &#039;both&#039;.
 */
//$cfg[&#039;RowActionType&#039;] = &#039;both&#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;

/**
 * disallow editing of binary fields
 * valid values are:
 *   false    allow editing
 *   &#039;blob&#039;   allow editing except for BLOB fields
 *   &#039;noblob&#039; disallow 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;

/**
 * Should error reporting be enabled for JavaScript errors
 *
 * default = &#039;ask&#039;
 */
//$cfg[&#039;SendErrorReports&#039;] = &#039;ask&#039;;

/*
 * You can find more configuration options in the documentation
 * in the doc/ folder or at &lt;http://docs.phpmyadmin.net/&gt;.
 */
?&gt;</code></pre></div><p><strong>Если не трудно ткните пальцем где не правильно и что нужно сделать.</strong></p>]]></description>
			<author><![CDATA[null@example.com (roman001)]]></author>
			<pubDate>Sat, 30 Aug 2014 16:29:30 +0000</pubDate>
			<guid>https://forum.php-myadmin.ru/viewtopic.php?pid=25600#p25600</guid>
		</item>
	</channel>
</rss>
