Yii2 安装 [ 2.0 版本 ]
这些天看了一下,发现还有很多人对 Yii2 安装存在许多问题,在网上搜了很多资料,才发现他们都很不全面,以至于走了很多弯路,
下面我把完整的安装流程介绍给大家:按照这个流程走,相信你一定可以成功!
总感觉这个教程排版都很靠左,感觉这个样式排版不好的话,可以去我的博客看:http://happymc.iteye.com/blog/2150829
希望对你们有帮助!
前提:非常重要,你的php版本必须是php5.4以上
1.首先需要下载应用模板,分为基础模板和高级应用模板,这里我以高级应用模板为例子 :
去这里现在高级应用模板 https://github.com/yiisoft/yii2-app-advanced
2.下载完之后解压放在www目录我是放在 D:\wamp\www\yii2\advanced
cmd dos命令进入这个D:\wamp\www\yii2\advanced下:
3.运行 php -r "readfile('https://getcomposer.org/installer');" | php
4.这是就在D:\wamp\www\yii2\advanced
目录下面下载了一个composer.phar
文件,有了这个文件就可以执行php composer.phar
命令了,提示:
5.准备所有插件!!非常重要,少了这步一切都会失败 (记得配置php环境变量啊)
执行命令:php composer.phar global require "fxp/composer-asset-plugin:1.0.0"
6.安装我们的yii2的应用:
执行命令:php composer.phar create-project --prefer-dist --stability=dev yiisoft/yii2-app-advanced ../yii2test
就会在上一层目录下生成yii2test应用 。
请注意,到第六步很可能就一直停在那里了,这个时候,登录GitHub的用户名和密码没有就注册个账号,退出cmd,重新执行第6步可。
若提示安装过程中输入你的 GitHub 的用户名和密码。那就输入它们并继续即可。现在可能是输入token了
7.最后一步:初始化我们的应用,初始化是在你创建的yii2test目录下 执行cmd init命令 选0 y
ok,这么我们的yii2的安装就完成了,进入测试目录:
localhost/yii2/yii2test/frontend/web/index.php
会看到如下界面:
这就表明的你的yii2安装成功了,一定要记住你的php版本是php5.4以上的!
小马哥
最后登录:2016-09-25
在线时长:40小时54分
- 粉丝66
- 金钱615
- 威望60
- 积分1615
共 68 条评论
Writing lock file Generating autoload files D:\kadifu\advanced>composer create-project --prefer-dist --stability=dev yiisoft /yii2-app-advanced ../Community Installing yiisoft/yii2-app-advanced (dev-master b0534c270c55217d68f95723a2cb685 5fffe4712) - Installing yiisoft/yii2-app-advanced (dev-master master) Loading from cache Created project in ../Community Loading composer repositories with package information Installing dependencies (including require-dev)
第七步到这里就不动了怎么破?都等了一天了,还是这样。
cmd 关掉 重新执行第7步试试
不行的话 直接下载的yii2 安装好的源码 直接可以用:http://www.yiichina.com/tutorial/359
[Composer\Downloader\TransportException] The "https://packagist.org/packages.json" file could not be downloaded: SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed Failed to enable crypto failed to open stream: operation failed
出现这个错误知道是什么原因吗?我openssl.dll已开启
这个见某被墙的网页,说是SSL的证书过时,下载新的ssl本地判别文件
wget http://curl.haxx.se/ca/cacert.pem
并更名为ca-bundle.crt放置到默认目录
mv cacert.pem ca-bundle.crt | mv ca-bundle.crt /etc/pki/tls/certs/
或者curl –cacert cacert.pem 方式指定调用。这是LINUX下的解决方案,我的Deepin2014.3的这样之后就好了。你可以试试下载一下这个证书,然后安装一下呢?
denghp@denghp:~/soft/yii2-app-advanced$ composer global require "fxp/composer-asset-plugin:1.0.0" Changed current directory to /home/denghp/.composer ./composer.json has been created Loading composer repositories with package information [ErrorException] Invalid argument supplied for foreach() require [--dev] [--prefer-source] [--prefer-dist] [--no-progress] [--no-update] [--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [--sort-packages] [packages1] ... [packagesN]
为啥直接报这个错误呢?
还真不太清楚呢,按照这个教程按安装,为啥你们报的错各种各样呢
运行第六步安装yii,输入token并保存成功后,提示
Reading bower.json of bower-asset/jquery (2.1.0)
之后一直卡着不往下走了,请问是什么情况?
因为一直卡着不动,终止程序后,直接运行了第七歩初始化成功了,但访问测试页面时出现:
Warning: require(D:\wampserver\wamp\www\yii2test\frontend\web/../../vendor/autoload.php): failed to open stream: No such file or directory in D:\wampserver\wamp\www\yii2test\frontend\web\index.php on line 5 Fatal error: require(): Failed opening required 'D:\wampserver\wamp\www\yii2test\frontend\web/../../vendor/autoload.php' (include_path='.;C:\php\pear') in D:\wampserver\wamp\www\yii2test\frontend\web\index.php on line 5
应该就是因为第六步没安装完成。于是重新运行了第六步创建yii2test2,但还是卡在
Reading bower.json of bower-asset/jquery (2.1.0)
处,请问有解决方案么?
GitHub账号输入了,没输入的话 ,你在安装的时候 ,先登录GitHub,在安装
@小马哥 再哪里输入账号呀?没看到提示。。。
看完这个之后最大的感触就是composer是他们谁搞出来的,这么一大堆问题。而YII2的大神也够大胆的,这么一个问题多多的玩意也要傍。真是个痛苦的世界。
楼主没有提到第六步的时候 需要github复制链接生成token,因为要求输入token,我走了很多弯路,果断给差评!!!
呵呵,以前是不需要输入token的,更新的太快,没办法 啊
token怎么获取啊 求告知 !!!
@promise 登录 github
@小马哥 已经装好了,谢谢了!!!
终于安装好了!!不容易啊
第五步 woaipai是嘛意思呢 公子
Created project in ../yii2test
Loading composer repositories with package information
Installing dependencies (including require-dev)
以前安装成功,但是路径错了,现在重新安装一直再这里不动,,
你先登录 github ,在安装试试
输入token(hidden)后就一直是下面这个不动了
Reading bower.json of bower-asset/jquery (1.10.0-beta1) 求解
不知道解决没? 就是到token后面
你好
我按着步骤安装的但是 界面运行不了 在Yii2test下面没有vendor 在advanced下面有一个我直接粘贴过来啦这样行吗 一开始为什么没有生成advanced那在Yii2test文件下 有时间帮忙解答下吧 谢谢
写的很好,对于我们这种小白来说很实用,32个赞
`D:\xampp\htdocs\yii2\advanced>php composer.phar global require "fxp/composer-ass et-plugin:1.0.0" Changed current directory to C:/Users/Administrator/AppData/Roaming/Composer [ErrorException] proc_open(NUL): failed to open stream: No such file or directory
require [--dev] [--prefer-source] [--prefer-dist] [--no-progress] [--no-update]
[--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [--sort-
packages] [packages1] ... [packagesN]`
这个错误是咋个回事啊,麻烦小马哥给指点一下
环境变量也都设置了
D:\xampp\php;
C:\ProgramData\ComposerSetup\bin
D:\wamp\www\yii-advanced-app-2.0.6\advanced>php composer.phar global require "fx
p/composer-asset-plugin:1.0.0"
Changed current directory to C:/Users/Administrator/AppData/Roaming/Composer
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Failed to decode response: zlib_decode(): data error
Retrying with degraded mode, check https://getcomposer.org/doc/articles/troubles
hooting.md#degraded-mode for more info
[ErrorException]
zlib_decode(): data error
require [--dev] [--prefer-source] [--prefer-dist] [--no-progress] [--no-update]
[--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [--sort-
packages] [packages1] ... [packagesN]
安装不了插件啊
追加-----执行php composer.phar global require "fxp/composer-asset-plugin:1.0.0" 出现[ErrorException]
zlib_decode(): data error错误 怎么破
Not Found
The requested URL /yii2/yii2test/frontend/web/index.php was not found on this server.
Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80
还是这样
最后一步localhost/yii2/yii2test/frontend/web/index.php报错。说localhost不是内部文件。
最后一步localhost/yii2/yii2test/frontend/web/index.php报错。说localhost不是内部文件。
你已经成功了,就是访问的原因了
小马哥,为啥init时说不是内部外部命令?
我安装成功了,访问错误的页面都调到导航网站是为啥?调试信息为啥不显示,错误日志里有记录,怎么就打印不到页面呢。
好吧,Apache的问题啊,域名设置的怎么就有这种问题呢,端口就没问题。。。
你这里的相关路径 和php 阿帕奇的路径有什么联系吗 希望写明白点
请问一下,我第5步报错,而且没有生成vendor文件夹,是什么原因?