所以,如果你有完整的教程请给我链接或在这里分享, 感谢。
答案 0 :(得分:1)
Basic Skeleton Application setup - 打开命令提示符,然后运行命令 A." php ./composer.phar自我更新" 一个。它将更新作曲家 - 依赖管理器 B." php ./composer.phar update"
℃。 " php ./composer.phar install"
注意: - 如果此步骤中出现以下问题 [您必须启用openssl扩展才能通过https下载文件] 那么你应该通过在D:\ wamp \ bin \ php \ php5.4.12 \ php.ini中删除分号(;)查找行; extension = php_openssl.dll并取消注释(通过删除;)来启用openssl。 一个。它将安装zend框架和其他依赖项。 湾zend框架将安装在./vendor/zendframework
vHost设置
一次性设置 1.使用指南http://cesaric.com/?p=255创建新的虚拟主机以允许直接访问开发区域 2.在httpd.conf文件中为zend base-directory创建一个文档根目录,类似于DocumentRoot" d:/ wamp / www /" [改变路径]
Note-if there is an error check your xxx-error.log file,
find file in following path
D:\wamp\bin\apache\Apache2.4.4\logs\xxx-error.log
if it has following line
D:/zend/zend_test/public/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
then go to wampserver->apache->apache modules and check rewrite_module and then restart your wampserver and check your site
每个项目设置 1.从" C:\ Windows \ System32 \ drivers \ etc"编辑主机文件 2.在apache文件夹
中的文件httpd-vhosts.conf中创建虚拟主机对于每个模块 1.下载" Zend Skeleton Module"来自https://github.com/zendframework/ZendSkeletonModule并开始构建相同的
有关详细信息,请参阅以下链接http://framework.zend.com/manual/2.0/en/user-guide/skeleton-application.html
答案 1 :(得分:1)