<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Install PHPMyAdmin on IIS7 and Server 2008</title>
	<atom:link href="http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/</link>
	<description>Free Computer Training &#38; News Brought To You By Train Signal</description>
	<lastBuildDate>Thu, 11 Mar 2010 08:29:03 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: David</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-2/#comment-85345</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 03 Mar 2010 23:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-85345</guid>
		<description>AAH THANK YOU MARK LAYTON!! :D

Took me many hours to find that answer :D</description>
		<content:encoded><![CDATA[<p>AAH THANK YOU MARK LAYTON!! :D</p>
<p>Took me many hours to find that answer :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DaveW</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-2/#comment-83787</link>
		<dc:creator>DaveW</dc:creator>
		<pubDate>Wed, 24 Feb 2010 06:14:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-83787</guid>
		<description>Dave - thanks for the great initial writeup.

Johnboy - THANK YOU for the &gt;v5.2x update!!!!!!!!  I have been searching for hours on why my login to phpmyadmin wasn&#039;t working after following these instructions (server error 500 or #202 server isn&#039;t responding).  Commenting the ::1 as you stated solved the problem.  

My setup is:
Windows server 2008
phpMyAdmin-3.3.0
php-5.3.1
mysql-essential-5.1.44

DaveW</description>
		<content:encoded><![CDATA[<p>Dave &#8211; thanks for the great initial writeup.</p>
<p>Johnboy &#8211; THANK YOU for the &gt;v5.2x update!!!!!!!!  I have been searching for hours on why my login to phpmyadmin wasn&#8217;t working after following these instructions (server error 500 or #202 server isn&#8217;t responding).  Commenting the ::1 as you stated solved the problem.  </p>
<p>My setup is:<br />
Windows server 2008<br />
phpMyAdmin-3.3.0<br />
php-5.3.1<br />
mysql-essential-5.1.44</p>
<p>DaveW</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: johnboy</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-2/#comment-83106</link>
		<dc:creator>johnboy</dc:creator>
		<pubDate>Fri, 19 Feb 2010 11:06:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-83106</guid>
		<description>had this too and discovered another fix while searching high and low. PHP 5.3 and up has a conflict with dns in windows 7 and server 2008. Browse to the hosts file in windows\system32\drivers\etc\hosts and open in notepad and remove the comment (#) in fron of 127.0.0.,1. Make sure that the 2nd line ::1 localhost is commented out.

php 5.2 does not display this issue.

hope this helps others</description>
		<content:encoded><![CDATA[<p>had this too and discovered another fix while searching high and low. PHP 5.3 and up has a conflict with dns in windows 7 and server 2008. Browse to the hosts file in windows\system32\drivers\etc\hosts and open in notepad and remove the comment (#) in fron of 127.0.0.,1. Make sure that the 2nd line ::1 localhost is commented out.</p>
<p>php 5.2 does not display this issue.</p>
<p>hope this helps others</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Layton</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-2/#comment-82772</link>
		<dc:creator>Mark Layton</dc:creator>
		<pubDate>Wed, 17 Feb 2010 22:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-82772</guid>
		<description>Had a problem after everything was installed - browser times out after a few minutes and I get the http: 500 page - error codes etc

Found the answer over on the MySQL forum. Seems this is a quirk in Windows - In the config.inc.php file you need to change
$cfg[$i][&#039;host&#039;] = &#039;localhost&#039;; 
to 
$cfg[&#039;Servers&#039;][$i][&#039;host&#039;] = &#039;127.0.0.1&#039;; 

For some reason they are not recognized by Windows 7 as being the same. (it runs fine without the change on my XP machine)</description>
		<content:encoded><![CDATA[<p>Had a problem after everything was installed &#8211; browser times out after a few minutes and I get the http: 500 page &#8211; error codes etc</p>
<p>Found the answer over on the MySQL forum. Seems this is a quirk in Windows &#8211; In the config.inc.php file you need to change<br />
$cfg[$i]['host'] = &#8216;localhost&#8217;;<br />
to<br />
$cfg['Servers'][$i]['host'] = &#8216;127.0.0.1&#8242;; </p>
<p>For some reason they are not recognized by Windows 7 as being the same. (it runs fine without the change on my XP machine)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TL Chang</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-81397</link>
		<dc:creator>TL Chang</dc:creator>
		<pubDate>Tue, 09 Feb 2010 10:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-81397</guid>
		<description>Hi,

I have downloaded phpMyAdmin-2.11.10-english.zip and extracted all the contents.
When I reached step: 

5. Now go into your php directory and find php.ini  — we have to make a few changes:

Find session.save_path and set it to the same as you used in step 4 which in our case is C:\temp\phpsessions and save the file.

* The problem is that I could not find &quot;php.ini&quot; in the extracted php directory.
Is this because of phpmyadmin version issue?

Thanks you.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have downloaded phpMyAdmin-2.11.10-english.zip and extracted all the contents.<br />
When I reached step: </p>
<p>5. Now go into your php directory and find php.ini  — we have to make a few changes:</p>
<p>Find session.save_path and set it to the same as you used in step 4 which in our case is C:\temp\phpsessions and save the file.</p>
<p>* The problem is that I could not find &#8220;php.ini&#8221; in the extracted php directory.<br />
Is this because of phpmyadmin version issue?</p>
<p>Thanks you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: King Wilder</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-79758</link>
		<dc:creator>King Wilder</dc:creator>
		<pubDate>Fri, 08 Jan 2010 19:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-79758</guid>
		<description>I also have a screenshot of the &quot;Additional Features&quot; error.

http://www.gizmobeach.com/downloads/phpmyadminconfigerrors.jpg</description>
		<content:encoded><![CDATA[<p>I also have a screenshot of the &#8220;Additional Features&#8221; error.</p>
<p><a href="http://www.gizmobeach.com/downloads/phpmyadminconfigerrors.jpg" rel="nofollow">http://www.gizmobeach.com/downloads/phpmyadminconfigerrors.jpg</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: King Wilder</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-79757</link>
		<dc:creator>King Wilder</dc:creator>
		<pubDate>Fri, 08 Jan 2010 19:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-79757</guid>
		<description>Sorry, also, is it generally not acceptable to use the Web Platform Installer to install PHP on Windows Server 2008?

Thanks.</description>
		<content:encoded><![CDATA[<p>Sorry, also, is it generally not acceptable to use the Web Platform Installer to install PHP on Windows Server 2008?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: King Wilder</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-79756</link>
		<dc:creator>King Wilder</dc:creator>
		<pubDate>Fri, 08 Jan 2010 19:19:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-79756</guid>
		<description>I finally got this to kind of work, at least I&#039;m getting the phpMyAdmin interface, but I&#039;m getting a few warnings and errors:

I have a screenshot of my page here: http://www.gizmobeach.com/downloads/phpmyadminerrors.jpg

Any ideas?

Thanks.</description>
		<content:encoded><![CDATA[<p>I finally got this to kind of work, at least I&#8217;m getting the phpMyAdmin interface, but I&#8217;m getting a few warnings and errors:</p>
<p>I have a screenshot of my page here: <a href="http://www.gizmobeach.com/downloads/phpmyadminerrors.jpg" rel="nofollow">http://www.gizmobeach.com/downloads/phpmyadminerrors.jpg</a></p>
<p>Any ideas?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Juian</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-78083</link>
		<dc:creator>Dave Juian</dc:creator>
		<pubDate>Sun, 29 Nov 2009 02:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-78083</guid>
		<description>Ive spent all morning on this.. followed the tute to the letter (twice) and still get &#039;cannot start session without errors ...&#039; any one have any ideas? IIs7 php and mysql(all all latest versions) work fine

by the way in step 4 adding full rights to IUSR, IIS_IUSRS and Network Service
right click on the folder select properties/ security / edit and add. Simply add the users and select full control. Any way thats how I didi it.. but I still havent got it working so im no expert. 

Also restart IIS after changing php.ini.

Thanks for the tute anyway Ill try again later.</description>
		<content:encoded><![CDATA[<p>Ive spent all morning on this.. followed the tute to the letter (twice) and still get &#8216;cannot start session without errors &#8230;&#8217; any one have any ideas? IIs7 php and mysql(all all latest versions) work fine</p>
<p>by the way in step 4 adding full rights to IUSR, IIS_IUSRS and Network Service<br />
right click on the folder select properties/ security / edit and add. Simply add the users and select full control. Any way thats how I didi it.. but I still havent got it working so im no expert. </p>
<p>Also restart IIS after changing php.ini.</p>
<p>Thanks for the tute anyway Ill try again later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-77814</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Sat, 21 Nov 2009 17:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-77814</guid>
		<description>Bit rusty on IIS, didnt notice I had put the phpmyadmin folder too deep and brought it back up a folder, that fixed that problem.  

I then had the &quot;Connection for controluser as defined in your configuration failed&quot; which as described above changed the controluser = &#039;root&#039;   and    controlpass = &#039;[mysqlpassword]&#039;  this fixed the problem.

Now I just get the $cfg not OK [Documentation] errors, but these should affect the functionality too much.

Thanks again


Richard</description>
		<content:encoded><![CDATA[<p>Bit rusty on IIS, didnt notice I had put the phpmyadmin folder too deep and brought it back up a folder, that fixed that problem.  </p>
<p>I then had the &#8220;Connection for controluser as defined in your configuration failed&#8221; which as described above changed the controluser = &#8216;root&#8217;   and    controlpass = &#8216;[mysqlpassword]&#8216;  this fixed the problem.</p>
<p>Now I just get the $cfg not OK [Documentation] errors, but these should affect the functionality too much.</p>
<p>Thanks again</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-77813</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Sat, 21 Nov 2009 17:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-77813</guid>
		<description>Everything went fine and it was a great tutorial, but when I goto the phpmyadmin login page I get:   

HTTP Error 403.14 - Forbidden
The Web server is configured to not list the contents of this directory

Now it gives a possible workaround in the error, simply enable directory browsing in IIS under Default Web Site and hey presto all you then do is goto http://localhost/phpmyadmin and click on the phpmyadmin-3.2 folder listed.  That then brings up the login page.

But how do I fix this to go straight to the login page when entering http://localhost/phpmyadmin , as shown above in the tutorial?


Thanks in advance

Richard</description>
		<content:encoded><![CDATA[<p>Everything went fine and it was a great tutorial, but when I goto the phpmyadmin login page I get:   </p>
<p>HTTP Error 403.14 &#8211; Forbidden<br />
The Web server is configured to not list the contents of this directory</p>
<p>Now it gives a possible workaround in the error, simply enable directory browsing in IIS under Default Web Site and hey presto all you then do is goto <a href="http://localhost/phpmyadmin" rel="nofollow">http://localhost/phpmyadmin</a> and click on the phpmyadmin-3.2 folder listed.  That then brings up the login page.</p>
<p>But how do I fix this to go straight to the login page when entering <a href="http://localhost/phpmyadmin" rel="nofollow">http://localhost/phpmyadmin</a> , as shown above in the tutorial?</p>
<p>Thanks in advance</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russ Cobb</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-77471</link>
		<dc:creator>Russ Cobb</dc:creator>
		<pubDate>Fri, 13 Nov 2009 15:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-77471</guid>
		<description>Hi Dave,

Thanks so mucn for these tutorials. They&#039;re fanstastic. 

I followed your lessons for installing PHP for IIS 7 on Windows 2008 and I just did the one for phpMyAdmin. I ran PHP installer per your instructions, including the extentions (and PHP is running fine) but I still don&#039;t see the following extensions in my php.ini file at all:

extension=php_mysql
extension=php_gd2.dll
extension=php_mbstring.dll 

And of course, when I try to run phpMyAdmin, I&#039;m getting the error:

&quot;Cannot load mysql extension. Please check your PHP configuration. - Documentation&quot;

What I do have at the bottom of my php.ini file is:

; Local Variables:
; tab-width: 4
; End:
[PHP_MSSQL]
extension=php_mssql.dll

Can you suggest what I might&#039;ve done wrong?

Thanks so much in advance.
Russ</description>
		<content:encoded><![CDATA[<p>Hi Dave,</p>
<p>Thanks so mucn for these tutorials. They&#8217;re fanstastic. </p>
<p>I followed your lessons for installing PHP for IIS 7 on Windows 2008 and I just did the one for phpMyAdmin. I ran PHP installer per your instructions, including the extentions (and PHP is running fine) but I still don&#8217;t see the following extensions in my php.ini file at all:</p>
<p>extension=php_mysql<br />
extension=php_gd2.dll<br />
extension=php_mbstring.dll </p>
<p>And of course, when I try to run phpMyAdmin, I&#8217;m getting the error:</p>
<p>&#8220;Cannot load mysql extension. Please check your PHP configuration. &#8211; Documentation&#8221;</p>
<p>What I do have at the bottom of my php.ini file is:</p>
<p>; Local Variables:<br />
; tab-width: 4<br />
; End:<br />
[PHP_MSSQL]<br />
extension=php_mssql.dll</p>
<p>Can you suggest what I might&#8217;ve done wrong?</p>
<p>Thanks so much in advance.<br />
Russ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-77377</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 10 Nov 2009 20:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-77377</guid>
		<description>Hello all:

Just a quick one relating to the second post...
Chris Perry Says: 
October 9th, 2008 at 4:43 am 

Fixed it. Just had to change ‘controluser’ from “PMA” to “root”


Could you tell me where this is changed please as I have the same issue.

Much appriciated


Paul</description>
		<content:encoded><![CDATA[<p>Hello all:</p>
<p>Just a quick one relating to the second post&#8230;<br />
Chris Perry Says:<br />
October 9th, 2008 at 4:43 am </p>
<p>Fixed it. Just had to change ‘controluser’ from “PMA” to “root”</p>
<p>Could you tell me where this is changed please as I have the same issue.</p>
<p>Much appriciated</p>
<p>Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alternative a PhpMyAdmin</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-75783</link>
		<dc:creator>Alternative a PhpMyAdmin</dc:creator>
		<pubDate>Fri, 23 Oct 2009 19:47:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-75783</guid>
		<description>[...] PhpMyAdmin non è semplicissimo da installare su IIS 7 e Windows 2008 (vi giro a tal proposito un&#8217;utile guida) [...]</description>
		<content:encoded><![CDATA[<p>[...] PhpMyAdmin non è semplicissimo da installare su IIS 7 e Windows 2008 (vi giro a tal proposito un&#8217;utile guida) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Piedrahita</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-75340</link>
		<dc:creator>Carlos Piedrahita</dc:creator>
		<pubDate>Mon, 19 Oct 2009 02:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-75340</guid>
		<description>I have this problem whit the instalation of the phpmyadmin and too whit joomla instalation.
whats the problem?
thank you

Server Error in Application &quot;Default Web Site/phpmyadmin&quot;
HTTP Error 404.4 - Not Found

Description: The resource you are looking for does not have a handler associated with it.

Error Code: 0x80070002

Notification: MapRequestHandler

Module: IIS Web Core

Requested URL: http://localhost:80/phpmyadmin/

Physical Path: C:\inetpub\wwwroot\phpmyadmin\

Logon User: Anonymous

Logon Method: Anonymous

Handler: Not yet determined

Most likely causes:

    * The file extension for the requested URL does not have a handler configured to process the request on the Web server.

What you can try:

    * If the file extension does not have a handler associated with it, add a handler mapping for the extension.
    * Verify that the handler associated with the file extension is properly installed and configured.
    * Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.</description>
		<content:encoded><![CDATA[<p>I have this problem whit the instalation of the phpmyadmin and too whit joomla instalation.<br />
whats the problem?<br />
thank you</p>
<p>Server Error in Application &#8220;Default Web Site/phpmyadmin&#8221;<br />
HTTP Error 404.4 &#8211; Not Found</p>
<p>Description: The resource you are looking for does not have a handler associated with it.</p>
<p>Error Code: 0&#215;80070002</p>
<p>Notification: MapRequestHandler</p>
<p>Module: IIS Web Core</p>
<p>Requested URL: <a href="http://localhost:80/phpmyadmin/" rel="nofollow">http://localhost:80/phpmyadmin/</a></p>
<p>Physical Path: C:\inetpub\wwwroot\phpmyadmin\</p>
<p>Logon User: Anonymous</p>
<p>Logon Method: Anonymous</p>
<p>Handler: Not yet determined</p>
<p>Most likely causes:</p>
<p>    * The file extension for the requested URL does not have a handler configured to process the request on the Web server.</p>
<p>What you can try:</p>
<p>    * If the file extension does not have a handler associated with it, add a handler mapping for the extension.<br />
    * Verify that the handler associated with the file extension is properly installed and configured.<br />
    * Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynn Breaux</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-75045</link>
		<dc:creator>Lynn Breaux</dc:creator>
		<pubDate>Fri, 16 Oct 2009 21:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-75045</guid>
		<description>I figured out the blowfish thing. I had replaced blowfish_secret with my secret instead of putting my secret in between the two quotes after the = sign.
Thanks anyway,
Lynn
I am sill getting this error:
The additional features for working with linked tables have been deactivated. To find out why click here.</description>
		<content:encoded><![CDATA[<p>I figured out the blowfish thing. I had replaced blowfish_secret with my secret instead of putting my secret in between the two quotes after the = sign.<br />
Thanks anyway,<br />
Lynn<br />
I am sill getting this error:<br />
The additional features for working with linked tables have been deactivated. To find out why click here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynn Breaux</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-75024</link>
		<dc:creator>Lynn Breaux</dc:creator>
		<pubDate>Fri, 16 Oct 2009 17:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-75024</guid>
		<description>I&#039;m in the same shape as Bob above. The mbstring looked to be in the default extensions, but I did not see it in the ini file. I am also getting these errors when starting phpmyadmin:
The additional features for working with linked tables have been deactivated. To find out why click here.
Cannot load mcrypt extension. Please check your PHP configuration.
The configuration file now needs a secret passphrase (blowfish_secret).

When I click the here link, I get this:
$cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;] ...  OK 
$cfg[&#039;Servers&#039;][$i][&#039;relation&#039;] ...  not OK [ Documentation ] 
General relation features: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;table_info&#039;] ...  not OK [ Documentation ] 
Display Features: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;table_coords&#039;] ...  not OK [ Documentation ] 
$cfg[&#039;Servers&#039;][$i][&#039;pdf_pages&#039;] ...  not OK [ Documentation ] 
Creation of PDFs: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;column_info&#039;] ...  not OK [ Documentation ] 
Displaying Column Comments: Disabled 
Bookmarked SQL query: Disabled 
Browser transformation: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;history&#039;] ...  not OK [ Documentation ] 
SQL history: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;designer_coords&#039;] ...  not OK [ Documentation ] 
Designer: Disabled</description>
		<content:encoded><![CDATA[<p>I&#8217;m in the same shape as Bob above. The mbstring looked to be in the default extensions, but I did not see it in the ini file. I am also getting these errors when starting phpmyadmin:<br />
The additional features for working with linked tables have been deactivated. To find out why click here.<br />
Cannot load mcrypt extension. Please check your PHP configuration.<br />
The configuration file now needs a secret passphrase (blowfish_secret).</p>
<p>When I click the here link, I get this:<br />
$cfg['Servers'][$i]['pmadb'] &#8230;  OK<br />
$cfg['Servers'][$i]['relation'] &#8230;  not OK [ Documentation ]<br />
General relation features: Disabled </p>
<p>$cfg['Servers'][$i]['table_info'] &#8230;  not OK [ Documentation ]<br />
Display Features: Disabled </p>
<p>$cfg['Servers'][$i]['table_coords'] &#8230;  not OK [ Documentation ]<br />
$cfg['Servers'][$i]['pdf_pages'] &#8230;  not OK [ Documentation ]<br />
Creation of PDFs: Disabled </p>
<p>$cfg['Servers'][$i]['column_info'] &#8230;  not OK [ Documentation ]<br />
Displaying Column Comments: Disabled<br />
Bookmarked SQL query: Disabled<br />
Browser transformation: Disabled </p>
<p>$cfg['Servers'][$i]['history'] &#8230;  not OK [ Documentation ]<br />
SQL history: Disabled </p>
<p>$cfg['Servers'][$i]['designer_coords'] &#8230;  not OK [ Documentation ]<br />
Designer: Disabled</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richdev</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-74645</link>
		<dc:creator>richdev</dc:creator>
		<pubDate>Tue, 13 Oct 2009 10:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-74645</guid>
		<description>followed your TUT but keep getting the following error?

#0  PMA_sendHeaderLocation(http://localhost/phpmyadmin/index.php?token=a15158e53ee2b40dfebaaf27cf3a99ff) called at [G:\inetpub\wwwroot\phpmyadmin\libraries\auth\cookie.auth.lib.php:628]
#1  PMA_auth_set_user() called at [G:\inetpub\wwwroot\phpmyadmin\libraries\common.inc.php:829]
#2  require_once(G:\inetpub\wwwroot\phpmyadmin\libraries\common.inc.php) called at [G:\inetpub\wwwroot\phpmyadmin\index.php:35]

Im new to IIS so its probably simple but buggered if i know what it is.

thanks Rich</description>
		<content:encoded><![CDATA[<p>followed your TUT but keep getting the following error?</p>
<p>#0  PMA_sendHeaderLocation(http://localhost/phpmyadmin/index.php?token=a15158e53ee2b40dfebaaf27cf3a99ff) called at [G:\inetpub\wwwroot\phpmyadmin\libraries\auth\cookie.auth.lib.php:628]<br />
#1  PMA_auth_set_user() called at [G:\inetpub\wwwroot\phpmyadmin\libraries\common.inc.php:829]<br />
#2  require_once(G:\inetpub\wwwroot\phpmyadmin\libraries\common.inc.php) called at [G:\inetpub\wwwroot\phpmyadmin\index.php:35]</p>
<p>Im new to IIS so its probably simple but buggered if i know what it is.</p>
<p>thanks Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-73604</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Thu, 01 Oct 2009 19:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-73604</guid>
		<description>Hi,
I&#039;ve followed Daves&#039;s excellent, step-by-step instructions for installing all kinds of software and everything works fine, except for the following errors with phpmyadmin.

Cannot load mcrypt extension. Please check your PHP configuration.
	I&#039;ve added the code in the php.ini file as advised and the dll is in the ext folder.


The mbstring PHP extension was not found and you seem to be using a multibyte charset. Without the mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.
	I&#039;ve added the code in the php.ini file as advised and the dll is in the ext folder.


The configuration file now needs a secret passphrase (blowfish_secret).
	I&#039;ve done this and made sure it was not commented out.



Your PHP MySQL library version 5.0.51a differs from your MySQL server version 5.1.39. This may cause unpredictable behavior.
	Is this the libmysql.dll? 



And then there&#039;s this....

$cfg[&#039;Servers&#039;][$i][&#039;pmadb&#039;] ...  not OK [ Documentation ] 
$cfg[&#039;Servers&#039;][$i][&#039;relation&#039;] ...  not OK [ Documentation ] 
General relation features: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;table_info&#039;] ...  not OK [ Documentation ] 
Display Features: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;table_coords&#039;] ...  not OK [ Documentation ] 
$cfg[&#039;Servers&#039;][$i][&#039;pdf_pages&#039;] ...  not OK [ Documentation ] 
Creation of PDFs: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;column_info&#039;] ...  not OK [ Documentation ] 
Displaying Column Comments: Disabled 
Bookmarked SQL query: Disabled 
Browser transformation: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;history&#039;] ...  not OK [ Documentation ] 
SQL history: Disabled 
  
$cfg[&#039;Servers&#039;][$i][&#039;designer_coords&#039;] ...  not OK [ Documentation ] 
Designer: Disabled

Help with any or all of these errors is greatly appreciated
Thanks
Bob</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;ve followed Daves&#8217;s excellent, step-by-step instructions for installing all kinds of software and everything works fine, except for the following errors with phpmyadmin.</p>
<p>Cannot load mcrypt extension. Please check your PHP configuration.<br />
	I&#8217;ve added the code in the php.ini file as advised and the dll is in the ext folder.</p>
<p>The mbstring PHP extension was not found and you seem to be using a multibyte charset. Without the mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.<br />
	I&#8217;ve added the code in the php.ini file as advised and the dll is in the ext folder.</p>
<p>The configuration file now needs a secret passphrase (blowfish_secret).<br />
	I&#8217;ve done this and made sure it was not commented out.</p>
<p>Your PHP MySQL library version 5.0.51a differs from your MySQL server version 5.1.39. This may cause unpredictable behavior.<br />
	Is this the libmysql.dll? </p>
<p>And then there&#8217;s this&#8230;.</p>
<p>$cfg['Servers'][$i]['pmadb'] &#8230;  not OK [ Documentation ]<br />
$cfg['Servers'][$i]['relation'] &#8230;  not OK [ Documentation ]<br />
General relation features: Disabled </p>
<p>$cfg['Servers'][$i]['table_info'] &#8230;  not OK [ Documentation ]<br />
Display Features: Disabled </p>
<p>$cfg['Servers'][$i]['table_coords'] &#8230;  not OK [ Documentation ]<br />
$cfg['Servers'][$i]['pdf_pages'] &#8230;  not OK [ Documentation ]<br />
Creation of PDFs: Disabled </p>
<p>$cfg['Servers'][$i]['column_info'] &#8230;  not OK [ Documentation ]<br />
Displaying Column Comments: Disabled<br />
Bookmarked SQL query: Disabled<br />
Browser transformation: Disabled </p>
<p>$cfg['Servers'][$i]['history'] &#8230;  not OK [ Documentation ]<br />
SQL history: Disabled </p>
<p>$cfg['Servers'][$i]['designer_coords'] &#8230;  not OK [ Documentation ]<br />
Designer: Disabled</p>
<p>Help with any or all of these errors is greatly appreciated<br />
Thanks<br />
Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.trainsignaltraining.com/install-phpmyadmin-on-iis7-and-server-2008/2008-09-16/comment-page-1/#comment-71620</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Wed, 19 Aug 2009 16:15:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.trainsignaltraining.com/?p=599#comment-71620</guid>
		<description>Hi, I am having the same problem as the person who just posted.  PHP and MySQL is working but i cant get myphpadmin to work.  This is the error i&#039;m getting:

Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

Does someone know how to fix this?

Great articles by the way!!</description>
		<content:encoded><![CDATA[<p>Hi, I am having the same problem as the person who just posted.  PHP and MySQL is working but i cant get myphpadmin to work.  This is the error i&#8217;m getting:</p>
<p>Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.</p>
<p>Does someone know how to fix this?</p>
<p>Great articles by the way!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
