<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Форум PHP-MyAdmin.RU &mdash; Дополнительные возможности phpMyAdmin не настроены в полной мере]]></title>
	<link rel="self" href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=4195&amp;type=atom" />
	<updated>2015-11-29T20:06:22Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=4195</id>
		<entry>
			<title type="html"><![CDATA[Re: Дополнительные возможности phpMyAdmin не настроены в полной мере]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=26804#p26804" />
			<content type="html"><![CDATA[<p>спасибо переустановил пакет. Удалил apt-get --purge remove имя_пакета и установил наново все работает спасибо.</p>]]></content>
			<author>
				<name><![CDATA[Rubik]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=7337</uri>
			</author>
			<updated>2015-11-29T20:06:22Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=26804#p26804</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Дополнительные возможности phpMyAdmin не настроены в полной мере]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=26803#p26803" />
			<content type="html"><![CDATA[<p>Попробуйте очистить куки браузера, или зайти с альтернативного браузера.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2015-11-29T20:03:22Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=26803#p26803</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Дополнительные возможности phpMyAdmin не настроены в полной мере]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=26802#p26802" />
			<content type="html"><![CDATA[<p>создал базу данных phpmyadmin с сайта <a href="http://php-myadmin.ru">http://php-myadmin.ru</a>/ скачал свою версию phpmyadmin залил create_tables.sql в базу но дополнения не стали.</p><p><span class="postimg"><img src="http://joxi.ru/4AkZWj0FxvwX2q.png" alt="http://joxi.ru/4AkZWj0FxvwX2q.png" /></span></p><p><span class="postimg"><img src="http://joxi.ru/BA0axVnc0LnJry.png" alt="http://joxi.ru/BA0axVnc0LnJry.png" /></span></p><p>config.inc.php</p><div class="codebox"><pre><code>&lt;?php
/**
 * Debian local configuration file
 *
 * This file overrides the settings made by phpMyAdmin interactive setup
 * utility.
 *
 * For example configuration see
 *   /usr/share/doc/phpmyadmin/examples/config.sample.inc.php
 * or
 *   /usr/share/doc/phpmyadmin/examples/config.manyhosts.inc.php
 *
 * NOTE: do not add security sensitive data to this file (like passwords)
 * unless you really know what you&#039;re doing. If you do, any user that can
 * run PHP or CGI on your webserver will be able to read them. If you still
 * want to do this, make sure to properly secure the access to this file
 * (also on the filesystem level).
 */

// Load secret generated on postinst
include(&#039;/var/lib/phpmyadmin/blowfish_secret.inc.php&#039;);

// Load autoconf local config
include(&#039;/var/lib/phpmyadmin/config.inc.php&#039;);

/**
 * Server(s) configuration
 */
$i = 0;
// The $cfg[&#039;Servers&#039;] array starts with $cfg[&#039;Servers&#039;][1].  Do not use $cfg[&#039;Servers&#039;][0].
// You can disable a server config entry by setting host to &#039;&#039;.
$i++;

/**
 * Read configuration from dbconfig-common
 * You can regenerate it using: dpkg-reconfigure -plow phpmyadmin
 */
if (is_readable(&#039;/etc/phpmyadmin/config-db.php&#039;)) {
    require(&#039;/etc/phpmyadmin/config-db.php&#039;);
} else {
    error_log(&#039;phpmyadmin: Failed to load /etc/phpmyadmin/config-db.php.&#039;
        . &#039; Check group www-data has read access.&#039;);
}

/* Configure according to dbconfig-common if enabled */
if (!empty($dbname)) {
    /* Authentication type */
    $cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;] = &#039;cookie&#039;;
    /* Server parameters */
    if (empty($dbserver)) $dbserver = &#039;localhost&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;host&#039;] = $dbserver;

    if (!empty($dbport) || $dbserver != &#039;localhost&#039;) {
        $cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;] = &#039;tcp&#039;;
        $cfg[&#039;Servers&#039;][$i][&#039;port&#039;] = $dbport;
    }
    //$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;;
    /* Optional: User for advanced features */
    /*$cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;] = $dbuser;*/
    /*$cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;] = $dbpass;*/
    /* Optional: Advanced phpMyAdmin features */
    /*$cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;] = $dbname;*/
    $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;designer_coords&#039;] = &#039;pma_designer_coords&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;tracking&#039;] = &#039;pma_tracking&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;userconfig&#039;] = &#039;pma_userconfig&#039;;

    /* Uncomment the following to enable logging in to passwordless accounts,
     * after taking note of the associated security risks. */
    // $cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;] = TRUE;

    /* Advance to next server for rest of config */
    $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 mysqli if your server has it */
//$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;] = &#039;mysql&#039;;
/* Optional: User for advanced features */
$cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;] = &#039;pma&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;] = &#039;pmapass&#039;;
/* Optional: Advanced phpMyAdmin features */
$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;designer_coords&#039;] = &#039;pma_designer_coords&#039;;
/* Uncomment the following to enable logging in to passwordless accounts,
 * after taking note of the associated security risks. */
// $cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;] = TRUE;

/*
 * End of servers configuration
 */

/*
 * Directories for saving/loading files from server
 */
$cfg[&#039;UploadDir&#039;] = &#039;&#039;;
$cfg[&#039;SaveDir&#039;] = &#039;&#039;;</code></pre></div><p>phpmyadmin стоит на debian 8</p>]]></content>
			<author>
				<name><![CDATA[Rubik]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=7337</uri>
			</author>
			<updated>2015-11-29T18:35:41Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=26802#p26802</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Дополнительные возможности phpMyAdmin не настроены в полной мере]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=26801#p26801" />
			<content type="html"><![CDATA[<p>Описание установки посмотрите здесь: <a href="http://php-myadmin.ru/learning/instrument-pma.html">http://php-myadmin.ru/learning/instrument-pma.html</a></p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2015-11-29T18:13:54Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=26801#p26801</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Дополнительные возможности phpMyAdmin не настроены в полной мере]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=26800#p26800" />
			<content type="html"><![CDATA[<p>Здравствуйте, подскажите пж как включить дополнительные возможности phpMyAdmin это видел читал </p><p>Шаги необходимые для установки дополнительных функций:</p><p>Создайте необходимые таблицы с помощью скрипта script/create_tables.sql. Документация<br />Создайте пользователя pma и предоставьте доступ к этим таблицам. Документация<br />Подключите дополнительные функции в конфигурационном файле (config.inc.php), начните с примера в config.sample.inc.php. Документация<br />Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл.</p><br /><p>Создайте необходимые таблицы с помощью скрипта script/create_tables.sql. - как и где ее создать?<br />Создайте пользователя pma и предоставьте доступ к этим таблицам - создал<br />Подключите дополнительные функции в конфигурационном файле (config.inc.php)- как подключить?</p><p><span class="postimg"><img src="http://joxi.ru/p27gJV6CQy6W27.png" alt="http://joxi.ru/p27gJV6CQy6W27.png" /></span></p>]]></content>
			<author>
				<name><![CDATA[Rubik]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=7337</uri>
			</author>
			<updated>2015-11-29T17:10:55Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=26800#p26800</id>
		</entry>
</feed>
