设置yii2基本框架和ibm bluemix时遇到问题

时间:2016-10-06 03:07:29

标签: yii2 ibm-cloud

设置yii2基本框架和ibm bluemix时遇到问题。

我使用此链接作为指南:https://github.com/Twanawebtech/yii2App-Bluemix/blob/master/README.md

步骤1a:克隆代码并设置

Open your terminal
$ git clone https://github.com/Twanawebtech/yii2App-Bluemix.git
$ cd yii2App-Bluemix

步骤1b:将config / web.php文件中的cookie验证密钥设置为某个随机密钥字符串:

'request' => [
// !!! insert a secret key in the following (if it is empty)
- this is    required by cookie validation
'cookieValidationKey' => '<secret random string goes here>',
],

步骤1c:您可以通过以下URL访问该应用程序:

http://localhost/yii2App-Bluemix/web

你应该看到祝贺屏幕

Congratulations Screen

步骤1d:清单

返回yii2App-Bluemix文件夹 并打开清单文件 将名称和主机重命名为要调用它的名称。

Manifest File

转到命令提示符并使用Cloud Foundary CLI(一旦设置了Cloud Foundary CLI)

 enter cf login
 API endpoint: https://api.ng.bluemix.net
 enter Email Address: 
 enter Password:
 Select a space (if you have more than one space allocated)

第2步:将代码推送到Bluemix

   $ cf push yii2App-Bluemix -b https://github.com/cloudfoundry/php-buildpack.git -s cflinuxfs2

Completion of the Push to Bluemix

步骤3:在浏览器中输入以下URL访问您的应用程序:

  http://yii2basic.mybluemix.net/yii

但是我没有得到祝贺屏幕,但我得到以下内容,这是在web文件夹中找到的index.php文件的源代码

index.php source code

我想念或忘记做什么???

0 个答案:

没有答案