Questions tagged «zend-framework»

16
如何在XAMPP上创建虚拟主机
我确信这个问题已经被问过很多次了,但是我没有遇到任何问题。我在配置Zend框架的地方使用XAMPP。 XAMPP在8081端口上运行,因为80正在被某些Windows进程占用,因此我需要使用以下C:/xampp/apache/config/extra/httpd-vhosts.config(或C:/xampp/apache/conf/extra/httpd-vhosts.conf在较新版本中)以下代码配置的虚拟主机。 <VirtualHost *:80> ServerName comm-app.local DocumentRoot "C:/xampp/htdocs/CommunicationApp/public" SetEnv APPLICATION_ENV "development" <Directory "C:/xampp/htdocs/CommunicationApp/public" DirectoryIndex index.php AllowOverride All Order allow,deny Allow from all </Directory> </VirtualHost> 并使用来更新hosts文件,127.0.0.1 comm-app.local并尝试重新启动apache,但显示错误。 15:03:01 [Apache] Error: Apache shutdown unexpectedly. 15:03:01 [Apache] This may be due to a blocked port, missing dependencies, 15:03:01 [Apache] improper privileges, a crash, …

14
如何在zend框架中打印确切的sql查询?
我有以下代码是我从模型中获取的, ... $select = $this->_db->select() ->from($this->_name) ->where('shipping=?',$type) ->where('customer_id=?',$userid); echo $select; exit; // which gives exact mysql query. ..... 当我在zend中使用更新查询时, $up_value = array('billing'=> '0'); $this->update($up_value,'customer_id ='.$userid.' and address_id <> '.$data['address_Id']); 在这里我想知道确切的mysql查询。有什么办法可以在zend中打印mysql查询吗?友善的建议

7
从Zend教程开始-Zend_DB_Adapter引发异常:“ SQLSTATE [HY000] [2002]没有这样的文件或目录”
我已经开始用德语的“ Zend Framework in Action”一书来学习Zend Framework。 就在开始变得有趣的地方,我的PHP单元测试抛出了此错误:“ Zend_Db_Adapter_Exception:SQLSTATE [HY000] [2002]没有这样的文件或目录” 我无法通过Google搜索找到任何提示。我做了所有的事情,就像书中那样。谁能给我提示到哪里寻找故障? 这是一个常见的初学者错误吗?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.