<?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=2129&amp;type=atom" />
	<updated>2011-03-11T05:16:34Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=2129</id>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15413#p15413" />
			<content type="html"><![CDATA[<p>Однако не верный подход, и почему у вас выше * вместо IP хостов виртуальных, пропишите теперь по образцу:<br /></p><div class="codebox"><pre><code>NameVirtualHost 127.0.0.1:80

&lt;VirtualHost 127.0.0.1:80&gt;
   DocumentRoot &quot;C:/apache/localhost/www&quot;
   ServerName localhost
   ErrorLog &quot;C:/apache/localhost/error.log&quot;
   CustomLog &quot;C:/apache/localhost/access.log&quot; common
&lt;/VirtualHost&gt;

&lt;VirtualHost 127.0.0.1:80&gt;
   # Папка, в которой будет корень вашего хоста.
   DocumentRoot &quot;C:/apache/test.ru/www&quot;
   # Домен по которому вы сможете обращаться к виртуальному хосту.
   ServerName test.ru
   # Алиас (добавочное имя) домена.
   ServerAlias www.test.ru
   # Файл, в который будут записываться ошибки.
   ErrorLog &quot;C:/apache/test.ru/error.log&quot;
   # Файл журнала доступа к хосту.
   CustomLog &quot;C:/apache/test.ru/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div><p>и не забудьте поправить hosts а также проверить не заняты ли на 127.0.0.1 порты 80 каким либо другим сервисом и отключить в скайпе в настройках - дополнитеотно использование 80 и 443 портов - это не допустимо. эти порты для www серверов.</p>]]></content>
			<author>
				<name><![CDATA[DmitryV]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=2987</uri>
			</author>
			<updated>2011-03-11T05:16:34Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15413#p15413</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15412#p15412" />
			<content type="html"><![CDATA[<p>Проблема решилась элементарно просто - я вообще отказался от IP 127.0.0.1 поставил везде 127.0.0.2 и все заработало вот так:</p><p>httpd-vhosts.conf:</p><div class="codebox"><pre><code>NameVirtualHost 127.0.0.2:80

&lt;VirtualHost 127.0.0.2:80&gt;
   DocumentRoot &quot;C:/apache/localhost/www&quot;
   ServerName localhost
   ErrorLog &quot;C:/apache/localhost/error.log&quot;
   CustomLog &quot;C:/apache/localhost/access.log&quot; common
&lt;/VirtualHost&gt;

&lt;VirtualHost 127.0.0.2:80&gt;
   # Папка, в которой будет корень вашего хоста.
   DocumentRoot &quot;C:/apache/test.ru/www&quot;
   # Домен по которому вы сможете обращаться к виртуальному хосту.
   ServerName test.ru
   # Алиас (добавочное имя) домена.
   ServerAlias www.test.ru
   # Файл, в который будут записываться ошибки.
   ErrorLog &quot;C:/apache/test.ru/error.log&quot;
   # Файл журнала доступа к хосту.
   CustomLog &quot;C:/apache/test.ru/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div><p>hosts.conf:</p><div class="codebox"><pre><code># Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a &#039;#&#039; symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#    
#    ::1             localhost

127.0.0.2 localhost 
127.0.0.2 test.ru
127.0.0.2 www.test.ru</code></pre></div><p>Однако, спасибо за участие.</p>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T22:11:14Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15412#p15412</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15411#p15411" />
			<content type="html"><![CDATA[<p>Теперь введите в браузере test.ru и в логах смотрите где веб-сервер пытается найти корень сайта test.ru. Если он вообще ничего не пытается искать - значит файл hosts вы редактируете не тот или не так.</p><p>Самый простой способ проверить работу домена после записи его в hosts - это запустить командную строку и ввести:<br /></p><div class="codebox"><pre><code>ping test.ru</code></pre></div><p>Должен появиться IP 127.0.0.1</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T21:24:33Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15411#p15411</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15408#p15408" />
			<content type="html"><![CDATA[<p>httpd-vhosts.conf:</p><div class="codebox"><pre><code>NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
   DocumentRoot &quot;C:/apache/localhost/www&quot;
   ServerName localhost
   ErrorLog &quot;C:/apache/localhost/error.log&quot;
   CustomLog &quot;C:/apache/localhost/access.log&quot; common
&lt;/VirtualHost&gt;

&lt;VirtualHost *:80&gt;
   # Папка, в которой будет корень вашего хоста.
   DocumentRoot &quot;C:/apache/test.ru/www&quot;
   # Домен по которому вы сможете обращаться к виртуальному хосту.
   ServerName test.ru
   # Алиас (добавочное имя) домена.
   ServerAlias www.test.ru
   # Файл, в который будут записываться ошибки.
   ErrorLog &quot;C:/apache/test.ru/error.log&quot;
   # Файл журнала доступа к хосту.
   CustomLog &quot;C:/apache/test.ru/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T18:50:49Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15408#p15408</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15401#p15401" />
			<content type="html"><![CDATA[<p>Покажите как у вас httpd-vhosts.conf выглядит.</p><p>Этой строки в логах я не понял.<br />C:/apache/localhost/www/test.ru<br />В адресной строке браузера надо ввести test.ru, но не localhost/test.ru</p><p>Посмотрите на ошибки файл C:\apache\error.log</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T16:19:15Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15401#p15401</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15396#p15396" />
			<content type="html"><![CDATA[<p>Комп я перегружал неоднократно, надеясь, что это что-то исправит, но нет. Теперь по поводу логов, в папку localhost, они исправно пишуться вот:<br />access.log:</p><div class="codebox"><pre><code>127.0.0.1 - - [10/Mar/2011:16:28:36 +0300] &quot;GET /phpmyadmin/js/mootools-domready-rainbow.js HTTP/1.1&quot; 200 759
127.0.0.1 - - [10/Mar/2011:16:28:36 +0300] &quot;GET /phpmyadmin/js/functions.js HTTP/1.1&quot; 200 58954
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/tooltip.js HTTP/1.1&quot; 200 5441
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_host.png HTTP/1.1&quot; 200 316
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_docs.png HTTP/1.1&quot; 200 292
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_selboard.png HTTP/1.1&quot; 200 274
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_sql.png HTTP/1.1&quot; 200 322
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_db.png HTTP/1.1&quot; 200 285
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_asci.png HTTP/1.1&quot; 200 254
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_engine.png HTTP/1.1&quot; 200 362
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_replication.png HTTP/1.1&quot; 200 447
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_rights.png HTTP/1.1&quot; 200 512
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_process.png HTTP/1.1&quot; 200 362
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_export.png HTTP/1.1&quot; 200 313
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_import.png HTTP/1.1&quot; 200 310
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_sync.png HTTP/1.1&quot; 200 551
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_info.png HTTP/1.1&quot; 200 234
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/window-new.png HTTP/1.1&quot; 200 583
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_passwd.png HTTP/1.1&quot; 200 505
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_status.png HTTP/1.1&quot; 200 313
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_loggoff.png HTTP/1.1&quot; 200 262
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/mooRainbow/images/rainbow.png HTTP/1.1&quot; 200 794
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/item_ltr.png HTTP/1.1&quot; 200 173
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_newdb.png HTTP/1.1&quot; 200 408
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_vars.png HTTP/1.1&quot; 200 306
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_lang.png HTTP/1.1&quot; 200 422
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_notice.png HTTP/1.1&quot; 200 247
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_warn.png HTTP/1.1&quot; 200 261
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/s_theme.png HTTP/1.1&quot; 200 737
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/themes/original/img/b_sqlhelp.png HTTP/1.1&quot; 200 287
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/mooRainbow/images/moor_arrows.gif HTTP/1.1&quot; 200 94
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/mooRainbow/images/moor_slider.png HTTP/1.1&quot; 200 590
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/mooRainbow/images/moor_cursor.gif HTTP/1.1&quot; 200 80
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/mooRainbow/images/moor_woverlay.png HTTP/1.1&quot; 200 768
127.0.0.1 - - [10/Mar/2011:16:28:37 +0300] &quot;GET /phpmyadmin/js/mooRainbow/images/moor_boverlay.png HTTP/1.1&quot; 200 799
127.0.0.1 - - [10/Mar/2011:16:29:00 +0300] &quot;GET /pma/ HTTP/1.1&quot; 200 8222
127.0.0.1 - - [10/Mar/2011:16:29:01 +0300] &quot;GET /pma/phpmyadmin.css.php?token=b2217258481412a05e47192b2bab56af&amp;js_frame=right&amp;nocache=2594836636 HTTP/1.1&quot; 200 21786
127.0.0.1 - - [10/Mar/2011:16:29:02 +0300] &quot;GET /pma/print.css HTTP/1.1&quot; 200 1063
127.0.0.1 - - [10/Mar/2011:16:29:02 +0300] &quot;GET /pma/favicon.ico HTTP/1.1&quot; 200 18902
127.0.0.1 - - [10/Mar/2011:16:29:02 +0300] &quot;GET /pma/themes/original/img/b_help.png HTTP/1.1&quot; 200 229
127.0.0.1 - - [10/Mar/2011:16:29:02 +0300] &quot;GET /pma/themes/original/img/logo_right.png HTTP/1.1&quot; 200 5658
127.0.0.1 - - [10/Mar/2011:16:29:14 +0300] &quot;POST /pma/index.php HTTP/1.1&quot; 302 -
127.0.0.1 - - [10/Mar/2011:16:29:14 +0300] &quot;GET /pma/index.php?token=b2217258481412a05e47192b2bab56af HTTP/1.1&quot; 200 2430
127.0.0.1 - - [10/Mar/2011:16:29:14 +0300] &quot;GET /pma/js/common.js HTTP/1.1&quot; 200 13404
127.0.0.1 - - [10/Mar/2011:16:29:14 +0300] &quot;GET /pma/navigation.php?token=b2217258481412a05e47192b2bab56af HTTP/1.1&quot; 200 4187
127.0.0.1 - - [10/Mar/2011:16:29:15 +0300] &quot;GET /pma/main.php?token=b2217258481412a05e47192b2bab56af HTTP/1.1&quot; 200 73736
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_loggoff.png HTTP/1.1&quot; 200 262
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_selboard.png HTTP/1.1&quot; 200 274
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_docs.png HTTP/1.1&quot; 200 292
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_sqlhelp.png HTTP/1.1&quot; 200 287
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/phpmyadmin.css.php?token=b2217258481412a05e47192b2bab56af&amp;js_frame=right&amp;nocache=2594836718 HTTP/1.1&quot; 200 21786
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/mooRainbow.css HTTP/1.1&quot; 200 2270
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mootools.js HTTP/1.1&quot; 200 92584
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/mooRainbow.js HTTP/1.1&quot; 200 18707
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mootools-domready-rainbow.js HTTP/1.1&quot; 200 759
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/tooltip.js HTTP/1.1&quot; 200 5441
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_host.png HTTP/1.1&quot; 200 316
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_db.png HTTP/1.1&quot; 200 285
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_sql.png HTTP/1.1&quot; 200 322
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_status.png HTTP/1.1&quot; 200 313
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_vars.png HTTP/1.1&quot; 200 306
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_asci.png HTTP/1.1&quot; 200 254
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_engine.png HTTP/1.1&quot; 200 362
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_rights.png HTTP/1.1&quot; 200 512
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_replication.png HTTP/1.1&quot; 200 447
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_process.png HTTP/1.1&quot; 200 362
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_export.png HTTP/1.1&quot; 200 313
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_import.png HTTP/1.1&quot; 200 310
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_sync.png HTTP/1.1&quot; 200 551
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_info.png HTTP/1.1&quot; 200 234
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/window-new.png HTTP/1.1&quot; 200 583
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/images/rainbow.png HTTP/1.1&quot; 200 794
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_passwd.png HTTP/1.1&quot; 200 505
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/item_ltr.png HTTP/1.1&quot; 200 173
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/b_newdb.png HTTP/1.1&quot; 200 408
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_lang.png HTTP/1.1&quot; 200 422
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_theme.png HTTP/1.1&quot; 200 737
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_notice.png HTTP/1.1&quot; 200 247
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/themes/original/img/s_warn.png HTTP/1.1&quot; 200 261
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/images/moor_arrows.gif HTTP/1.1&quot; 200 94
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/images/moor_woverlay.png HTTP/1.1&quot; 200 768
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/images/moor_boverlay.png HTTP/1.1&quot; 200 799
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/images/moor_cursor.gif HTTP/1.1&quot; 200 80
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/mooRainbow/images/moor_slider.png HTTP/1.1&quot; 200 590
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/js/navigation.js HTTP/1.1&quot; 200 4870
127.0.0.1 - - [10/Mar/2011:16:29:17 +0300] &quot;GET /pma/themes/original/img/logo_left.png HTTP/1.1&quot; 200 6854
127.0.0.1 - - [10/Mar/2011:16:29:17 +0300] &quot;GET /pma/js/functions.js HTTP/1.1&quot; 200 58954
127.0.0.1 - - [10/Mar/2011:16:29:17 +0300] &quot;GET /pma/themes/original/img/b_home.png HTTP/1.1&quot; 200 370
127.0.0.1 - - [10/Mar/2011:16:29:16 +0300] &quot;GET /pma/phpmyadmin.css.php?token=b2217258481412a05e47192b2bab56af&amp;js_frame=left&amp;nocache=2594836718 HTTP/1.1&quot; 200 3955</code></pre></div><p>error.log:</p><div class="codebox"><pre><code>[Thu Mar 10 01:10:22 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 02:33:10 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 05:08:19 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 05:38:16 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:01:18 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:39:39 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:39:39 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:39:42 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:49:08 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:51:52 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 06:53:14 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 07:01:04 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 07:29:35 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 08:01:23 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 08:04:42 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 08:15:10 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 08:38:37 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 09:41:42 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 10:17:25 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 10:38:58 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 10:38:58 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 10:39:01 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 11:07:58 2011] [error] [client 127.0.0.1] script &#039;C:/apache/index.php&#039; not found or unable to stat, referer: http://localhost/pma/
[Thu Mar 10 11:08:13 2011] [error] [client 127.0.0.1] script &#039;C:/apache/index.php&#039; not found or unable to stat, referer: http://localhost/pma/
[Thu Mar 10 11:08:37 2011] [error] [client 127.0.0.1] script &#039;C:/apache/index.php&#039; not found or unable to stat, referer: http://localhost/pma/
[Thu Mar 10 11:57:39 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/.test.ru
[Thu Mar 10 14:48:16 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 14:48:16 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 14:48:19 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 14:57:01 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/test.ru
[Thu Mar 10 14:57:19 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/www
[Thu Mar 10 14:58:42 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/.test.ru
[Thu Mar 10 16:15:15 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 16:15:15 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico
[Thu Mar 10 16:15:18 2011] [error] [client 127.0.0.1] File does not exist: C:/apache/localhost/www/favicon.ico</code></pre></div><br /><p>А вот в папку test.ru никакие логи не пишутся, оба файла пустые.</p>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T13:57:49Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15396#p15396</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15394#p15394" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>mjc66 сказал:</cite><blockquote><p>Но ситуация, увы, никак не исправилась.</p></blockquote></div><p>Такого просто не может быть.</p><p>Попробуйте перезагрузить компьютер.<br />Посмотрите основной error.log, может там будут какие ошибки.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T13:36:08Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15394#p15394</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15393#p15393" />
			<content type="html"><![CDATA[<p>Все изменения которые вы мне посоветовали я внес и при этом перегружал Apache по мере их внесения, это обязательно. Но ситуация, увы, никак не исправилась.</p>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T12:49:31Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15393#p15393</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15392#p15392" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>mjc66 сказал:</cite><blockquote><p>может быть нужен еще какой-то хост или должны быть внесены какие-нибудь изменения?</p></blockquote></div><p>Изменения вносятся только в файл httpd-vhosts.conf и в файл hosts, после чего перезагружается Apache.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T12:43:54Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15392#p15392</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15391#p15391" />
			<content type="html"><![CDATA[<p>Нет, все осталось как и прежде: phpmyadmin - открывается, test.ru или <a href="http://www.test.ru">www.test.ru</a> - нет, т.е. их вообще не видно. Кстати, в связи с прикруткой phpmyadmin, может быть нужен еще какой-то хост или должны быть внесены какие-нибудь изменения?</p>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T12:37:13Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15391#p15391</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15390#p15390" />
			<content type="html"><![CDATA[<p>Добавьте блок управления test.ru.<br /></p><div class="codebox"><pre><code>&lt;VirtualHost *:80&gt;
   # Папка, в которой будет корень вашего хоста.
   DocumentRoot &quot;C:/apache/test.ru/www&quot;
   # Домен по которому вы сможете обращаться к виртуальному хосту.
   ServerName test.ru
   # Алиас (добавочное имя) домена.
   ServerAlias www.test.ru
   # Файл, в который будут записываться ошибки.
   ErrorLog &quot;C:/apache/test.ru/error.log&quot;
   # Файл журнала доступа к хосту.
   CustomLog &quot;C:/apache/test.ru/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T12:14:54Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15390#p15390</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15389#p15389" />
			<content type="html"><![CDATA[<p>да работать оно работает, но все равно как-то криво: Апач ни в какую не хочет видеть папку test.ru</p>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T11:53:19Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15389#p15389</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15388#p15388" />
			<content type="html"><![CDATA[<p>Так должно работать.<br /></p><div class="codebox"><pre><code>NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
   DocumentRoot &quot;C:/apache/localhost/www&quot;
   ServerName localhost
   ErrorLog &quot;C:/apache/localhost/error.log&quot;
   CustomLog &quot;C:/apache/localhost/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T11:28:50Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15388#p15388</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15386#p15386" />
			<content type="html"><![CDATA[<p>В файл httpd-vhosts.conf теперь такой:</p><div class="codebox"><pre><code>#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn&#039;t need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# &lt;URL:http://httpd.apache.org/docs/2.2/vhosts/&gt;
# for further details before you try to setup virtual hosts.
#
# You may use the command line option &#039;-S&#039; to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost *:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any &lt;VirtualHost&gt; block.
#

&lt;VirtualHost 127.0.0.1:80&gt;
   DocumentRoot &quot;C:/apache/localhost/www&quot;
   ServerName localhost
   ErrorLog &quot;C:/apache/localhost/error.log&quot;
   CustomLog &quot;C:/apache/localhost/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div><p>если же я пишу в нем вторую дерективу<br /></p><div class="codebox"><pre><code>NameVirtualHost 127.0.0.1:80</code></pre></div><p>то Апач вообще вырубается<br />однако даже при таком раскладе папка test.ru все равно не видна</p>]]></content>
			<author>
				<name><![CDATA[mjc66]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=682</uri>
			</author>
			<updated>2011-03-10T10:36:27Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15386#p15386</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Некорректно работает phpmyadmin]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=15384#p15384" />
			<content type="html"><![CDATA[<p>В файле httpd-vhosts.conf обратите внимание на строку:<br />NameVirtualHost *:80<br />она означает, что блоки виртуальных хостов должны выглядеть не так<br />&lt;VirtualHost 127.0.0.1:80&gt;<br />а так<br />&lt;VirtualHost *:80&gt;</p><p>Если надо настроить заход на виртуальный хост только с локального компьютера, а так же отдельный хост для доступа из сети, то директив будет уже две:<br /></p><div class="codebox"><pre><code>NameVirtualHost 127.0.0.1:80
NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
   DocumentRoot &quot;C:/apache/localnetwork/www&quot;
   ServerName localnetwork
   ErrorLog &quot;C:/apache/localnetwork/error.log&quot;
   CustomLog &quot;C:/apache/localnetwork/access.log&quot; common
&lt;/VirtualHost&gt;

&lt;VirtualHost 127.0.0.1:80&gt;
   DocumentRoot &quot;C:/apache/localhost/www&quot;
   ServerName localhost
   ErrorLog &quot;C:/apache/localhost/error.log&quot;
   CustomLog &quot;C:/apache/localhost/access.log&quot; common
&lt;/VirtualHost&gt;</code></pre></div><p>У меня тоже Интернет через роутер идет, так что это не должно быть проблемой.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2011-03-10T10:04:50Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=15384#p15384</id>
		</entry>
</feed>
