<?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=3921&amp;type=atom" />
	<updated>2014-11-29T18:25:24Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=3921</id>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25865#p25865" />
			<content type="html"><![CDATA[<p>всё спасибо ошибку нашел исправил вот если кому надо </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
     */
     
    /*
     * Your phpMyAdmin url
     *
     * Complete the variable below with the full url ie
     *    https://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[&#039;PmaAbsoluteUri_DisableWarning&#039;] variable below.
     */
    $cfg[&#039;PmaAbsoluteUri&#039;] = &#039;&#039;;
     
    /*
     * Disable the default warning about $cfg[&#039;PmaAbsoluteUri&#039;] not being set
     * You should use this if and ONLY if the PmaAbsoluteUri auto-detection
     * works perfectly.
     */
    $cfg[&#039;PmaAbsoluteUri_DisableWarning&#039;] = false;
     
    /*
     * Disable the default warning that is displayed on the DB Details Structure page if
     * any of the required Tables for the relationfeatures could not be found
     */
    $cfg[&#039;PmaNoRelation_DisableWarning&#039;]  = false;
     
    /*
     * Disable the default warning that is displayed if Suhosin is detected
     *
     * @global boolean $cfg[&#039;SuhosinDisableWarning&#039;]
     */
    $cfg[&#039;SuhosinDisableWarning&#039;] = true;
     
    /*
     * This is needed for cookie based authentication to encrypt password in
     * cookie
     */
    $cfg[&#039;blowfish_secret&#039;] = &#039;4f2sdgf1DF354fdds4dfFD42s21vb5x41fdgdfg6s4jghkbndDd&#039;; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
     
    /*
     * Servers configuration
     */
    $i = 0;
     
    /*
     * First server
     */
    $i++;
    // MySQL hostname or IP address
    $cfg[&#039;Servers&#039;][$i][&#039;host&#039;]                = &#039;localhost&#039;;
     
    // MySQL port - leave blank for default port
    $cfg[&#039;Servers&#039;][$i][&#039;port&#039;]                = &#039;&#039;;
     
    // Path to the socket - leave blank for default socket
    $cfg[&#039;Servers&#039;][$i][&#039;socket&#039;]              = &#039;&#039;;
     
    // Use SSL for connecting to MySQL server?
    $cfg[&#039;Servers&#039;][$i][&#039;ssl&#039;]                 = false;
     
    // How to connect to MySQL server (&#039;tcp&#039; or &#039;socket&#039;)
    $cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;]        = &#039;socket&#039;;
     
    // The PHP MySQL extension to use (&#039;mysql&#039; or &#039;mysqli&#039;)
    $cfg[&#039;Servers&#039;][$i][&#039;extension&#039;]           = &#039;mysqli&#039;;
     
    // Use compressed protocol for the MySQL connection (requires PHP &gt;= 4.3.0)
    $cfg[&#039;Servers&#039;][$i][&#039;compress&#039;]            = false;
     
    // Authentication method (config, http or cookie based)?
    $cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;]           = &#039;cookie&#039;;
     
    // MySQL user
    $cfg[&#039;Servers&#039;][$i][&#039;user&#039;]                = &#039;root&#039;;
     
    // MySQL password (only needed with &#039;config&#039; auth_type)
    $cfg[&#039;Servers&#039;][$i][&#039;password&#039;]            = &#039;&#039;;
     
    // Allow access without password
    $cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;]     = false;
     
    // whether to allow root login
    $cfg[&#039;Servers&#039;][$i][&#039;AllowRoot&#039;]           = true;
     
    // Session to use for &#039;signon&#039; authentication method
    $cfg[&#039;Servers&#039;][$i][&#039;SignonSession&#039;]       = &#039;&#039;;
     
    // URL where to redirect user to login for &#039;signon&#039; authentication method
    $cfg[&#039;Servers&#039;][$i][&#039;SignonURL&#039;]           = &#039;&#039;;
     
    // URL where to redirect user after logout
    $cfg[&#039;Servers&#039;][$i][&#039;LogoutURL&#039;]           = &#039;&#039;;
     
    // If set to a db-name, only this db is displayed in left frame
    // It may also be an array of db-names, where sorting order is relevant.
    $cfg[&#039;Servers&#039;][$i][&#039;only_db&#039;]             = &#039;&#039;;
     
    // Verbose name for this host - leave blank to show the hostname
    $cfg[&#039;Servers&#039;][$i][&#039;verbose&#039;]             = &#039;&#039;;
     
    // set to false if you know that your pma_* tables
    // are up to date. This prevents compatibility
    // checks and thereby increases performance.
    $cfg[&#039;Servers&#039;][$i][&#039;verbose_check&#039;]       = true;
     
    // Host authentication order, leave blank to not use
    $cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;order&#039;]  = &#039;&#039;;
     
    // Host authentication rules, leave blank for defaults
    $cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;rules&#039;]  = array();
     
    /*
     * phpMyAdmin configuration storage settings.
     */
    $cfg[&#039;Servers&#039;][$i][&#039;controlhost&#039;]         = &#039;localhost&#039;;
     
    // MySQL control user settings (this user must have read-only
    // access to the &quot;mysql/user&quot; and &quot;mysql/db&quot; tables).
    // The controluser is also used for all relational features (pmadb)
    $cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;]         = &#039;pma&#039;;
     
    // The password needed for the controluser to login
    // (see $cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;])
    $cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;]         = &#039;****&#039;;
     
    // Database used for Relation, Bookmark and PDF Features
    // (see _docdir/examples/create_tables.sql)
    //   - leave blank for no support
    //     DEFAULT: &#039;phpmyadmin&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;]               = &#039;phpmyadmin&#039;;
     
    // Bookmark table
    //   - leave blank for no bookmark support
    //     DEFAULT: &#039;pma_bookmark&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;bookmarktable&#039;]       = &#039;pma__bookmark&#039;;
     
    // table to describe the relation between links (see doc)
    //   - leave blank for no relation-links support
    //     DEFAULT: &#039;pma_relation&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;relation&#039;]            = &#039;pma__relation&#039;;
     
    // table to describe the display fields
    //   - leave blank for no display fields support
    //     DEFAULT: &#039;pma_table_info&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;table_info&#039;]          = &#039;pma__table_info&#039;;
     
    // table to describe the tables position for the PDF schema
    //   - leave blank for no PDF schema support
    //     DEFAULT: &#039;pma_table_coords&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;table_coords&#039;]        = &#039;pma__table_coords&#039;;
     
    // table to describe pages of relationpdf
    //   - leave blank if you don&#039;t want to use this
    //     DEFAULT: &#039;pma_pdf_pages&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;pdf_pages&#039;]           = &#039;pma__pdf_pages&#039;;
     
    // table to store column information
    //   - leave blank for no column comments/mime types
    //     DEFAULT: &#039;pma_column_info&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;column_info&#039;]         = &#039;pma__column_info&#039;;
     
    // table to store SQL history
    //   - leave blank for no SQL query history
    //     DEFAULT: &#039;pma_history&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;history&#039;]             = &#039;pma__history&#039;;
     
    // Table to store user interface enhancement data.
    //   - Leave blank to disable.
    //     DEFAULT: &#039;pma_table_uiprefs&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;table_uiprefs&#039;]       = &#039;pma__table_uiprefs&#039;;
     
    // Table to store version/change tracking data
    //   - leave blank to disable
    //     DEFAULT: &#039;pma_tracking&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;tracking&#039;]            = &#039;pma__tracking&#039;;
     
    // Table in which to store information for the designer feature.
    //     DEFAULT: &#039;pma_designer_coords&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;designer_coords&#039;]     = &#039;pma__designer_coords&#039;;
     
    // Table to store user preferences -- allows users to set most
    // preferences by themselves and store them in the phpMyAdmin
    // configuration storage database.
    // If you don&#039;t allow for storing preferences in pmadb, users can
    // still personalize phpMyAdmin, but settings will be saved in
    // browser&#039;s local storage, or, it is is unavailable, until the end
    // of session.
    //    DEFAULT: &#039;pma_userconfig&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;userconfig&#039;]          = &#039;pma__userconfig&#039;;
     
    // Table to store a list of recently used tables to be shown in the
    // left navigation frame. It helps you to jump across table directly,
    // without the need to select the database, and then select the table.
    // Using $cfg[&#039;LeftRecentTable&#039;] you can configure the maximum number
    // of recent tables shown.
    // Without configuring the storage, you can still access the recently
    // used tables, but it will disappear after you logout.
    //   DEFAULT: &#039;pma_recent&#039;
    $cfg[&#039;Servers&#039;][$i][&#039;recent&#039;]              = &#039;pma__recent&#039;;
     
    // You can create different user groups with menu items attached to them.
    // Users can be assigned to these groups and the logged in user
    // would only see menu items configured to the usergroup he is assigned to.
    // To do this it needs two tables “usergroups” (storing allowed menu items for each user group)
    // and “users” (storing users and their assignments to user groups).
    //   DEFAULT: &#039;pma_users&#039;
    //   DEFAULT: &#039;pma_usergroups&#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;;
     
    // You can hide/show items in the navigation tree.
    //   DEFAULT: &#039;pma_navigationhiding&#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 */
    // The name of the file containing Swekey ids and login names for
    // hardware authentication. Leave the string empty to deactivate this
    // feature.
    // see _docdir/examples/swekey.sample.conf
    //$cfg[&#039;Servers&#039;][$i][&#039;auth_swekey_config&#039;]  = &#039;/etc/phpMyAdmin/swekey-pma.conf&#039;;
     
     
    /***************************************
     * Second Server
     */
     
    /*
    $i++;
    $cfg[&#039;Servers&#039;][$i][&#039;host&#039;]                = &#039;localhost&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;port&#039;]                = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;socket&#039;]              = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;ssl&#039;]                 = false;
    $cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;]        = &#039;socket&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;extension&#039;]           = &#039;mysqli&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;compress&#039;]            = false;
    $cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;]           = &#039;cookie&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;user&#039;]                = &#039;root&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;password&#039;]            = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;]     = false;
    $cfg[&#039;Servers&#039;][$i][&#039;AllowRoot&#039;]           = true;
    $cfg[&#039;Servers&#039;][$i][&#039;SignonSession&#039;]       = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;SignonURL&#039;]           = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;LogoutURL&#039;]           = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;only_db&#039;]             = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;verbose&#039;]             = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;verbose_check&#039;]       = true;
    $cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;order&#039;]  = &#039;&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;rules&#039;]  = array();
    */
     
    /*
     * phpMyAdmin configuration storage settings.
     */
     
     
    $cfg[&#039;Servers&#039;][$i][&#039;controlhost&#039;]         = &#039;localhost&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;]         = &#039;pma&#039;;
    $cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;]         = &#039;***&#039;;
    $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;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;;
    $cfg[&#039;Servers&#039;][$i][&#039;auth_swekey_config&#039;]  = &#039;/etc/phpMyAdmin/swekey-pma_02.conf&#039;;
     
     
    // If you have more than one server configured, you can set $cfg[&#039;ServerDefault&#039;]
    // to any one of them to autoconnect to that server when phpMyAdmin is started,
    // or set it to 0 to be given a list of servers without logging in
    // If you have only one server configured, $cfg[&#039;ServerDefault&#039;] *MUST* be
    // set to that server.
     
    // Default server (0 = no default server)
    $cfg[&#039;ServerDefault&#039;] = 1;
    $cfg[&#039;Server&#039;]        = &#039;0&#039;;
    unset($cfg[&#039;Servers&#039;][0]);
     
    /*
     * 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>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T18:25:24Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25865#p25865</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25864#p25864" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Hanut сказал:</cite><blockquote><p>Проверьте соответствие имен таблиц. Вижу на втором сервере имя с ошибкой pma__table_cords.</p></blockquote></div><p>а вы бы не могли подсказать как это сделать</p>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T17:30:35Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25864#p25864</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25863#p25863" />
			<content type="html"><![CDATA[<p>Проверьте соответствие имен таблиц. Вижу на втором сервере имя с ошибкой pma__table_cords.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2014-11-29T17:25:36Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25863#p25863</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25862#p25862" />
			<content type="html"><![CDATA[<p>с проблемой справился но не до конца <span class="postimg"><img src="http://s61.radikal.ru/i171/1411/2f/a63912a0ce2b.png" alt="http://s61.radikal.ru/i171/1411/2f/a63912a0ce2b.png" /></span></p>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T17:02:23Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25862#p25862</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25861#p25861" />
			<content type="html"><![CDATA[<p>у меня у пользователя pma почему то в колонке предоставить (нет) это нормально <br /><span class="postimg"><img src="http://s018.radikal.ru/i520/1411/f1/0b7c7f3101a8.png" alt="http://s018.radikal.ru/i520/1411/f1/0b7c7f3101a8.png" /></span></p>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T16:57:10Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25861#p25861</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25860#p25860" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Hanut сказал:</cite><blockquote><p>У вас указана база данных расширений с именем phpmyadmin. В списке этой базы данных не видно. Создайте ее и импортируйте таблицы расширений. Смотрите здесь: <a href="http://php-myadmin.ru/learning/instrument-pma.html">http://php-myadmin.ru/learning/instrument-pma.html</a></p></blockquote></div><p>теперь вот в config.inc.php как я понимая нужно добавить pma пользователя и пароль я добавил но ошибка всё равно не исчезает</p>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T16:52:13Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25860#p25860</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25859#p25859" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Hanut сказал:</cite><blockquote><p>У вас указана база данных расширений с именем phpmyadmin. В списке этой базы данных не видно. Создайте ее и импортируйте таблицы расширений. Смотрите здесь: <a href="http://php-myadmin.ru/learning/instrument-pma.html">http://php-myadmin.ru/learning/instrument-pma.html</a></p></blockquote></div><p>сделал вот что получается <span class="postimg"><img src="http://s018.radikal.ru/i511/1411/f2/abe116ed7f0e.png" alt="http://s018.radikal.ru/i511/1411/f2/abe116ed7f0e.png" /></span></p>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T16:47:28Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25859#p25859</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25858#p25858" />
			<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></p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2014-11-29T16:13:34Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25858#p25858</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Ошибка Дополнительные возможности phpMyAdmin не настроены в полной мер]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=25857#p25857" />
			<content type="html"><![CDATA[<p>Здравствуйте я знаю что такая тема у же есть но у меня не получается настроить <br />при входе выдает внизу<br /> Дополнительные возможности phpMyAdmin не настроены в полной мере, некоторые функции были отключены. Для определения причины нажмите здесь.<br /><span class="postimg"><img src="http://s018.radikal.ru/i514/1411/6e/eeac4aae95ac.png" alt="http://s018.radikal.ru/i514/1411/6e/eeac4aae95ac.png" /></span><br />нажимаю здесь и появляется <br /><span class="postimg"><img src="http://s008.radikal.ru/i305/1411/94/da2c0ff7ec7d.png" alt="http://s008.radikal.ru/i305/1411/94/da2c0ff7ec7d.png" /></span><br /><span class="postimg"><img src="http://i038.radikal.ru/1411/78/ea25cd28f0f2.png" alt="http://i038.radikal.ru/1411/78/ea25cd28f0f2.png" /></span><br />в etc/phpMyAdmin/config.inc.php&nbsp; вот что у меня<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
 */

/* 
 * Your phpMyAdmin url
 *
 * Complete the variable below with the full url ie
 *    https://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[&#039;PmaAbsoluteUri_DisableWarning&#039;] variable below.
 */
$cfg[&#039;PmaAbsoluteUri&#039;] = &#039;&#039;;

/*
 * Disable the default warning about $cfg[&#039;PmaAbsoluteUri&#039;] not being set
 * You should use this if and ONLY if the PmaAbsoluteUri auto-detection
 * works perfectly.
 */
$cfg[&#039;PmaAbsoluteUri_DisableWarning&#039;] = false;

/*
 * Disable the default warning that is displayed on the DB Details Structure page if
 * any of the required Tables for the relationfeatures could not be found
 */
$cfg[&#039;PmaNoRelation_DisableWarning&#039;]  = false;

/*
 * Disable the default warning that is displayed if Suhosin is detected
 *
 * @global boolean $cfg[&#039;SuhosinDisableWarning&#039;]
 */
$cfg[&#039;SuhosinDisableWarning&#039;] = true;

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

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

/*
 * First server
 */
$i++;
// MySQL hostname or IP address
$cfg[&#039;Servers&#039;][$i][&#039;host&#039;]                = &#039;localhost&#039;;

// MySQL port - leave blank for default port
$cfg[&#039;Servers&#039;][$i][&#039;port&#039;]                = &#039;&#039;;

// Path to the socket - leave blank for default socket
$cfg[&#039;Servers&#039;][$i][&#039;socket&#039;]              = &#039;&#039;;

// Use SSL for connecting to MySQL server?
$cfg[&#039;Servers&#039;][$i][&#039;ssl&#039;]                 = false;

// How to connect to MySQL server (&#039;tcp&#039; or &#039;socket&#039;)
$cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;]        = &#039;socket&#039;;

// The PHP MySQL extension to use (&#039;mysql&#039; or &#039;mysqli&#039;)
$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;]           = &#039;mysqli&#039;;

// Use compressed protocol for the MySQL connection (requires PHP &gt;= 4.3.0)
$cfg[&#039;Servers&#039;][$i][&#039;compress&#039;]            = false;

// Authentication method (config, http or cookie based)?
$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;]           = &#039;cookie&#039;;

// MySQL user
$cfg[&#039;Servers&#039;][$i][&#039;user&#039;]                = &#039;root&#039;;

// MySQL password (only needed with &#039;config&#039; auth_type)
$cfg[&#039;Servers&#039;][$i][&#039;password&#039;]            = &#039;&#039;;

// Allow access without password
$cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;]     = false;

// whether to allow root login
$cfg[&#039;Servers&#039;][$i][&#039;AllowRoot&#039;]           = true;

// Session to use for &#039;signon&#039; authentication method
$cfg[&#039;Servers&#039;][$i][&#039;SignonSession&#039;]       = &#039;&#039;;

// URL where to redirect user to login for &#039;signon&#039; authentication method
$cfg[&#039;Servers&#039;][$i][&#039;SignonURL&#039;]           = &#039;&#039;;

// URL where to redirect user after logout
$cfg[&#039;Servers&#039;][$i][&#039;LogoutURL&#039;]           = &#039;&#039;;

// If set to a db-name, only this db is displayed in left frame
// It may also be an array of db-names, where sorting order is relevant.
$cfg[&#039;Servers&#039;][$i][&#039;only_db&#039;]             = &#039;&#039;;

// Verbose name for this host - leave blank to show the hostname
$cfg[&#039;Servers&#039;][$i][&#039;verbose&#039;]             = &#039;&#039;;

// set to false if you know that your pma_* tables
// are up to date. This prevents compatibility
// checks and thereby increases performance.
$cfg[&#039;Servers&#039;][$i][&#039;verbose_check&#039;]       = true;

// Host authentication order, leave blank to not use
$cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;order&#039;]  = &#039;&#039;;

// Host authentication rules, leave blank for defaults
$cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;rules&#039;]  = array();
 
/*
 * phpMyAdmin configuration storage settings.
 */
$cfg[&#039;Servers&#039;][$i][&#039;controlhost&#039;]         = &#039;localhost&#039;;

// MySQL control user settings (this user must have read-only
// access to the &quot;mysql/user&quot; and &quot;mysql/db&quot; tables).
// The controluser is also used for all relational features (pmadb)
$cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;]         = &#039;&#039;;

// The password needed for the controluser to login
// (see $cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;])
$cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;]         = &#039;&#039;;

// Database used for Relation, Bookmark and PDF Features
// (see _docdir/examples/create_tables.sql)
//   - leave blank for no support
//     DEFAULT: &#039;phpmyadmin&#039;
$cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;]               = &#039;phpmyadmin&#039;;

// Bookmark table
//   - leave blank for no bookmark support
//     DEFAULT: &#039;pma_bookmark&#039;
$cfg[&#039;Servers&#039;][$i][&#039;bookmarktable&#039;]       = &#039;pma__bookmark&#039;;

// table to describe the relation between links (see doc)
//   - leave blank for no relation-links support
//     DEFAULT: &#039;pma_relation&#039;
$cfg[&#039;Servers&#039;][$i][&#039;relation&#039;]            = &#039;pma__relation&#039;;

// table to describe the display fields
//   - leave blank for no display fields support
//     DEFAULT: &#039;pma_table_info&#039;
$cfg[&#039;Servers&#039;][$i][&#039;table_info&#039;]          = &#039;pma__table_info&#039;;

// table to describe the tables position for the PDF schema
//   - leave blank for no PDF schema support
//     DEFAULT: &#039;pma_table_coords&#039;
$cfg[&#039;Servers&#039;][$i][&#039;table_coords&#039;]        = &#039;pma__table_coords&#039;;

// table to describe pages of relationpdf
//   - leave blank if you don&#039;t want to use this
//     DEFAULT: &#039;pma_pdf_pages&#039;
$cfg[&#039;Servers&#039;][$i][&#039;pdf_pages&#039;]           = &#039;pma__pdf_pages&#039;;

// table to store column information
//   - leave blank for no column comments/mime types
//     DEFAULT: &#039;pma_column_info&#039;
$cfg[&#039;Servers&#039;][$i][&#039;column_info&#039;]         = &#039;pma__column_info&#039;;

// table to store SQL history
//   - leave blank for no SQL query history
//     DEFAULT: &#039;pma_history&#039;
$cfg[&#039;Servers&#039;][$i][&#039;history&#039;]             = &#039;pma__history&#039;;

// Table to store user interface enhancement data.
//   - Leave blank to disable.
//     DEFAULT: &#039;pma_table_uiprefs&#039;
$cfg[&#039;Servers&#039;][$i][&#039;table_uiprefs&#039;]       = &#039;pma__table_uiprefs&#039;;

// Table to store version/change tracking data
//   - leave blank to disable
//     DEFAULT: &#039;pma_tracking&#039;
$cfg[&#039;Servers&#039;][$i][&#039;tracking&#039;]            = &#039;pma__tracking&#039;;

// Table in which to store information for the designer feature.
//     DEFAULT: &#039;pma_designer_coords&#039;
$cfg[&#039;Servers&#039;][$i][&#039;designer_coords&#039;]     = &#039;pma__designer_coords&#039;;

// Table to store user preferences -- allows users to set most
// preferences by themselves and store them in the phpMyAdmin
// configuration storage database.
// If you don&#039;t allow for storing preferences in pmadb, users can
// still personalize phpMyAdmin, but settings will be saved in
// browser&#039;s local storage, or, it is is unavailable, until the end
// of session.
//    DEFAULT: &#039;pma_userconfig&#039;
$cfg[&#039;Servers&#039;][$i][&#039;userconfig&#039;]          = &#039;pma__userconfig&#039;;

// Table to store a list of recently used tables to be shown in the
// left navigation frame. It helps you to jump across table directly,
// without the need to select the database, and then select the table.
// Using $cfg[&#039;LeftRecentTable&#039;] you can configure the maximum number
// of recent tables shown.
// Without configuring the storage, you can still access the recently
// used tables, but it will disappear after you logout.
//   DEFAULT: &#039;pma_recent&#039;
$cfg[&#039;Servers&#039;][$i][&#039;recent&#039;]              = &#039;pma__recent&#039;;

// You can create different user groups with menu items attached to them.
// Users can be assigned to these groups and the logged in user
// would only see menu items configured to the usergroup he is assigned to.
// To do this it needs two tables “usergroups” (storing allowed menu items for each user group)
// and “users” (storing users and their assignments to user groups).
//   DEFAULT: &#039;pma_users&#039;
//   DEFAULT: &#039;pma_usergroups&#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;;

// You can hide/show items in the navigation tree.
//   DEFAULT: &#039;pma_navigationhiding&#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 */
// The name of the file containing Swekey ids and login names for
// hardware authentication. Leave the string empty to deactivate this
// feature.
// see _docdir/examples/swekey.sample.conf
//$cfg[&#039;Servers&#039;][$i][&#039;auth_swekey_config&#039;]  = &#039;/etc/phpMyAdmin/swekey-pma.conf&#039;;


/***************************************
 * Second Server
 */

/*
$i++;
$cfg[&#039;Servers&#039;][$i][&#039;host&#039;]                = &#039;localhost&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;port&#039;]                = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;socket&#039;]              = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;ssl&#039;]                 = false;
$cfg[&#039;Servers&#039;][$i][&#039;connect_type&#039;]        = &#039;socket&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;]           = &#039;mysqli&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;compress&#039;]            = false;
$cfg[&#039;Servers&#039;][$i][&#039;auth_type&#039;]           = &#039;cookie&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;user&#039;]                = &#039;root&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;password&#039;]            = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;]     = false;
$cfg[&#039;Servers&#039;][$i][&#039;AllowRoot&#039;]           = true;
$cfg[&#039;Servers&#039;][$i][&#039;SignonSession&#039;]       = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;SignonURL&#039;]           = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;LogoutURL&#039;]           = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;only_db&#039;]             = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;verbose&#039;]             = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;verbose_check&#039;]       = true;
$cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;order&#039;]  = &#039;&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;AllowDeny&#039;][&#039;rules&#039;]  = array();
*/
 
/*
 * phpMyAdmin configuration storage settings.
 */


$cfg[&#039;Servers&#039;][$i][&#039;controlhost&#039;]         = &#039;localhost&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;controluser&#039;]         = &#039;root&#039;;
$cfg[&#039;Servers&#039;][$i][&#039;controlpass&#039;]         = &#039;No#FNhI&#039;;
$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_cords&#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;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;;
$cfg[&#039;Servers&#039;][$i][&#039;auth_swekey_config&#039;]  = &#039;/etc/phpMyAdmin/swekey-pma_02.conf&#039;;


// If you have more than one server configured, you can set $cfg[&#039;ServerDefault&#039;]
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfg[&#039;ServerDefault&#039;] *MUST* be
// set to that server.

// Default server (0 = no default server)
$cfg[&#039;ServerDefault&#039;] = 1;
$cfg[&#039;Server&#039;]        = &#039;0&#039;;
unset($cfg[&#039;Servers&#039;][0]);

/*
 * 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>Помогите пожалуйста</p>]]></content>
			<author>
				<name><![CDATA[ch11000000a]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=6433</uri>
			</author>
			<updated>2014-11-29T15:03:59Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=25857#p25857</id>
		</entry>
</feed>
