无为清净楼资源网 Design By www.qnjia.com

一、大概思路

1.1、

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示

(备注:安装Zend Framework,其附带apache2和php5)

1.2、

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示

 

二、Zend Framework配置

2.1、安装Zend Framework

在ubuntu10.10的软件中心安装zf.

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示

2.2、激活apache的rewrite模块

命令行输入:sudo a2enmod rewrite

 

2.3、配置PHP5路径

配置include_path路径信息,修改/etc/php5/con.d目录下的zend-framework.ini

终端输入:sudo gedit /etc/php5/conf.d/zend-framework.ini

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示

2.4、创建firstProject项目

终端输入:zf create project firstProject

(其路径默认为 Ubuntu主文件目录下)

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示

 

2.5、在Apache2建立firstProject项目配置文件

因为apache默认的web目录是在/var/www下,为了能够让 apache自动定位到指定目录下的web应用,这里我们在/etc/apache2/conf.d中创建一个关于firstProject的配置文件,称为 firstProject.conf。

终端输入:sudo gedit /etc/apache2/conf.d/firstProject.conf

文件的内容是:

复制代码代码如下:
<IfModule alias_module>
Alias /firstProject "/home/administrator/firstProject/public/"
<Directory "/home/administrator/firstProject/public/">
Allow from all
RewriteEngine on
RewriteBase /firstProject
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule !\.(css|js|jpg|gif|png|swf|flv)$ index.php
Options FollowSymlinks MultiViews
AllowOverride All
</Directory>
</IfModule>

2.6、修改项目firstProject的public文件下的.htaccess

增加一行RewriteBase /firstProject

(.htaccess默认是隐藏的,可按快捷键Ctrl+H显示出来)

RewriteEngine On

RewriteBase /firstProject

RewriteCond %{REQUEST_FILENAME} -s [OR]

RewriteCond %{REQUEST_FILENAME} -l [OR]

RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^.*$ - [NC,L]

RewriteRule ^.*$ index.php [NC,L]

 

2.7、启动运行http://localhost/firstProject

Ubuntu10.10 Zend FrameWork配置方法及helloworld显示

 

三、Zend Framework显示hello 

3.1、从终端进入firstProject文件夹内,运行zf create Controller showhello 
3.2、编写application/controllers/ShowhelloController.php

复制代码代码如下:
<?php
class ShowhelloController extends Zend_Controller_Action {
public function init() {
/* Initialize action controller here */
}
public function indexAction() {
// action body
$this->view->content = "Hello World";
$this->render ();
}
}

3.3、编写application/views/scripts/showhello/index.phtml

复制代码代码如下:


<center>View script for controller <b>Showhello </b> and script/action
name <b>index</b>
<p><font color="#FF0000">
<?=$this->content;?>
</font></p>
</center>

3.4、运行http://localhost/firstProject/showhello

四、总结

配置环境虽然是件很麻烦的事,但是只要花一些时间,总可以找到相应的解决方法。

标签:
Ubuntu,Zend,FrameWork

无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com

P70系列延期,华为新旗舰将在下月发布

3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。

而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?

根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。