<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Форум PHP-MyAdmin.RU &mdash; Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
	<link rel="self" href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=2648&amp;type=atom" />
	<updated>2012-08-13T06:39:04Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=2648</id>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21107#p21107" />
			<content type="html"><![CDATA[<p>В php.ini проверьте наличие строки:<br />session.save_path = &quot;C:/php/tmp&quot;<br />Каталог указанный в ней необходимо создать самостоятельно.</p><p>Очистите куки браузера и пробуйте зайти&nbsp; в phpMyAdmin снова.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2012-08-13T06:39:04Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21107#p21107</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21104#p21104" />
			<content type="html"><![CDATA[<p>Вот он, родимый:</p><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;root&#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;cookie&#039;;<br />/* Server parameters */<br />$cfg[&#039;Servers&#039;][$i][&#039;host&#039;] = &#039;localhost&#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 mysqli if your server has it */<br />$cfg[&#039;Servers&#039;][$i][&#039;extension&#039;] = &#039;mysql&#039;;<br />$cfg[&#039;Servers&#039;][$i][&#039;AllowNoPassword&#039;] = false;</p><p>/*<br /> * phpMyAdmin configuration storage settings.<br /> */</p><p>/* User used to manipulate with storage */<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;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 />/* 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;&#039;;<br />$cfg[&#039;SaveDir&#039;] = &#039;&#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;en&#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>]]></content>
			<author>
				<name><![CDATA[Fausthf]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=4490</uri>
			</author>
			<updated>2012-08-12T19:22:58Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21104#p21104</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21098#p21098" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Fausthf сказал:</cite><blockquote><p>но как только выбираешь любую из баз хранящихся там, меня выбрасывает опять на логин.</p></blockquote></div><p>Покажите config.inc.php.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2012-08-12T17:08:12Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21098#p21098</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21096#p21096" />
			<content type="html"><![CDATA[<p>Так возвращение папки с админом в папку с сайтом помогло - но! Теперь новый глюк&nbsp; <img src="https://forum.php-myadmin.ru/img/smilies/lol.png" width="15" height="15" alt="lol" /> Он заходит в базу, но как только выбираешь любую из баз хранящихся там, меня выбрасывает опять на логин. Но теперь уже вход не происходит вводи не вводи юзверь, пароль. Причем не пускает он пока не закроешь страницу. на новой странице опять пускает и тут же вышибает взад... <img src="https://forum.php-myadmin.ru/img/smilies/neutral.png" width="15" height="15" alt="neutral" /></p>]]></content>
			<author>
				<name><![CDATA[Fausthf]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=4490</uri>
			</author>
			<updated>2012-08-12T16:51:35Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21096#p21096</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21092#p21092" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Fausthf сказал:</cite><blockquote><p>сайт то локально нормально работает</p></blockquote></div><p>Туда где сайт находится переместите phpMyAdmin и запускайте.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2012-08-12T15:26:43Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21092#p21092</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21090#p21090" />
			<content type="html"><![CDATA[<p>А может беда с файлом .htaccess? Он у Вас есть? Если да, то там может стоять редикт...</p>]]></content>
			<author>
				<name><![CDATA[Hase]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=4004</uri>
			</author>
			<updated>2012-08-12T15:21:46Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21090#p21090</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21089#p21089" />
			<content type="html"><![CDATA[<p>Хм, если создать каталог localhost, он не находит в нем каталог *название сайта*, после этого не находит каталог *www*, а вот если создать это все и бросить туда папку pma (с админом), то он заходит в окно логина...но не логинится. У меня ощущение, что где-то беда с путем в конфигурации...но, блин, сайт то локально нормально работает!</p>]]></content>
			<author>
				<name><![CDATA[Fausthf]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=4490</uri>
			</author>
			<updated>2012-08-12T15:15:35Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21089#p21089</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21071#p21071" />
			<content type="html"><![CDATA[<p>Каталог E:/Server/localhost не найден. Попробуйте его создать.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2012-08-09T10:20:29Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21071#p21071</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Локальный сервер после Joomla не находит папку phpMyAdmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=21069#p21069" />
			<content type="html"><![CDATA[<p>Добрый день. Проблема следующего характера. Установил сервер, скрипты, базу данных и PhpAdmin. Удивительно, но все стало как положено и даже стало работать <img src="https://forum.php-myadmin.ru/img/smilies/smile.png" width="15" height="15" alt="smile" /> Далее я установил Joomla 2.5. Ковырялся с ней. После этого решил снести ее с локального сервера для дальнейших тестов. Удалил все файлы с сервера за исключением папки pma (в которой лежит PhpAdmin). Вот тут&nbsp; начались проблемы&nbsp; <img src="https://forum.php-myadmin.ru/img/smilies/roll.png" width="15" height="15" alt="roll" /> теперь при вводе localhost/pma он выдает ошибку: The requested URL /pma was not found on this server.</p><p>В логах они пишет вот что: </p><p>[Thu Aug 09 11:39:16 2012] [error] [client 127.0.0.1] File does not exist: E:/Server/localhost<br />[Thu Aug 09 11:50:00 2012] [error] [client 127.0.0.1] File does not exist: E:/Server/localhost</p><p>Помогите советом, я к нему так уже привык <img src="https://forum.php-myadmin.ru/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></content>
			<author>
				<name><![CDATA[Fausthf]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=4490</uri>
			</author>
			<updated>2012-08-09T08:52:27Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=21069#p21069</id>
		</entry>
</feed>
