<?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"
	>
<channel>
	<title>Comments on: Zend Framework Tutorial for 0.9.1</title>
	<atom:link href="http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/feed/" rel="self" type="application/rss+xml" />
	<link>http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/</link>
	<description>Developing PHP and XUL Software in the Real World</description>
	<pubDate>Thu, 28 Aug 2008 13:56:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-18405</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Sun, 02 Dec 2007 20:02:43 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-18405</guid>
		<description>Lalit,


I'd guess that you have a different php.ini file used when using apache.

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>Lalit,</p>
<p>I'd guess that you have a different php.ini file used when using apache.</p>
<p>Regards,</p>
<p>Rob&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lalit</title>
		<link>http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-18403</link>
		<dc:creator>lalit</dc:creator>
		<pubDate>Sun, 02 Dec 2007 19:24:09 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-18403</guid>
		<description>Hi, I have following setting in config.ini
db.adapter = PDO_MYSQL
db.config.host = localhost
db.config.username = root
db.config.password =
db.config.dbname = test

I am connecting using the code below:
$config = new Zend_Config_Ini('./application/config.ini', 'general');
$registry = Zend_Registry::getInstance();
$registry-&#62;set('config', $config);

// setup database
$db = Zend_Db::factory($config-&#62;db-&#62;adapter,$config-&#62;db-&#62;config-&#62;asArray());
Zend_Db_Table::setDefaultAdapter($db);

The strange thing is that, I can connect and query using the php cli, but when I accessing my website, I get this error "The mysql driver is not currently installed"

Please help.</description>
		<content:encoded><![CDATA[<p>Hi, I have following setting in config.ini<br />
db.adapter = PDO_MYSQL<br />
db.config.host = localhost<br />
db.config.username = root<br />
db.config.password =<br />
db.config.dbname = test</p>
<p>I am connecting using the code below:<br />
$config = new Zend_Config_Ini('./application/config.ini', 'general');<br />
$registry = Zend_Registry::getInstance();<br />
$registry-&gt;set('config', $config);</p>
<p>// setup database<br />
$db = Zend_Db::factory($config-&gt;db-&gt;adapter,$config-&gt;db-&gt;config-&gt;asArray());<br />
Zend_Db_Table::setDefaultAdapter($db);</p>
<p>The strange thing is that, I can connect and query using the php cli, but when I accessing my website, I get this error "The mysql driver is not currently installed"</p>
<p>Please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Inanc Gumus</title>
		<link>http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-10024</link>
		<dc:creator>Inanc Gumus</dc:creator>
		<pubDate>Fri, 18 May 2007 15:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-10024</guid>
		<description>Alex Hi,
You may try to enable the mysql PDO extension for your web server. 

Enabling just mysql extension without PDO version is not enough.</description>
		<content:encoded><![CDATA[<p>Alex Hi,<br />
You may try to enable the mysql PDO extension for your web server. </p>
<p>Enabling just mysql extension without PDO version is not enough.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-9644</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 01 May 2007 14:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://akrabat.com/2007/03/24/zend-framework-tutorial-for-091/#comment-9644</guid>
		<description>Hi,
Your tutorial is great. However there is something I can't get working and I am posting it in the case other people using your material would face the same problem.

It deals with the config file.

I am using MySql and here is my info:
[general]
db.adapter = PDO_MYSQL
db.config.host = localhost
db.config.username = root
db.config.password = 
db.config.dbname = test

Nothing crazy going on here... Here is the related bootstrap part:

// load configuration
$config = new Zend_Config_Ini('./application/config.ini', 'general');
$registry = Zend_Registry::getInstance();
$registry-&#62;set('config', $config);

// setup database
$db = Zend_Db::factory($config-&#62;db-&#62;adapter,$config-&#62;db-&#62;config-&#62;asArray());
Zend_Db_Table::setDefaultAdapter($db);

Just like in the tutorial.

However, here is the error message I get:

Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The mysql driver is not currently installed' in C:\wamp\www\test\library\Zend\Db\Adapter\Pdo\Abstract.php:79 ...

Is there something I should install, if yes, how?

Thanks in advance and congratz on your great job!

Alex</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Your tutorial is great. However there is something I can't get working and I am posting it in the case other people using your material would face the same problem.</p>
<p>It deals with the config file.</p>
<p>I am using MySql and here is my info:<br />
[general]<br />
db.adapter = PDO_MYSQL<br />
db.config.host = localhost<br />
db.config.username = root<br />
db.config.password =<br />
db.config.dbname = test</p>
<p>Nothing crazy going on here&#8230; Here is the related bootstrap part:</p>
<p>// load configuration<br />
$config = new Zend_Config_Ini('./application/config.ini', 'general');<br />
$registry = Zend_Registry::getInstance();<br />
$registry-&gt;set('config', $config);</p>
<p>// setup database<br />
$db = Zend_Db::factory($config-&gt;db-&gt;adapter,$config-&gt;db-&gt;config-&gt;asArray());<br />
Zend_Db_Table::setDefaultAdapter($db);</p>
<p>Just like in the tutorial.</p>
<p>However, here is the error message I get:</p>
<p>Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'The mysql driver is not currently installed' in C:\wamp\www\test\library\Zend\Db\Adapter\Pdo\Abstract.php:79 &#8230;</p>
<p>Is there something I should install, if yes, how?</p>
<p>Thanks in advance and congratz on your great job!</p>
<p>Alex</p>
]]></content:encoded>
	</item>
</channel>
</rss>
