位置: 编程技术 - 正文
推荐整理分享Ubuntu10.10 Zend FrameWork配置方法及helloworld显示 ,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
一、大概思路
1.1、
(备注:安装Zend Framework,其附带apache2和php5)
1.2、
二、Zend Framework配置
2.1、安装Zend Framework
在ubuntu.的软件中心安装zf.
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
2.4、创建firstProject项目
终端输入:zf create project firstProject
(其路径默认为 Ubuntu主文件目录下)
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、启动运行
三、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="#FF"> <?=$this->content;?> </font></p> </center> 3.4、运行 四、总结 配置环境虽然是件很麻烦的事,但是只要花一些时间,总可以找到相应的解决方法。
Ubuntu . 配置 Zend Framework 第一步,打开apache的rewrite模块,因为在UBUNTU下使用apache必须执行这一步复制代码代码如下:sudoa2enmodrewrite#激活rewrite模块sudo/etc/init.d/apache2restart#激活
ubuntu 无线拨号上网方法 命令行下操作,先用如下命令配置一个pppoe连接:sudopppoeconf向导最后一步会提示启动拨号,或者手动用以下命令sudopondsl-providersudogedit/etc/NetworkManager/nm-sy
ubuntu的ADSL拨号上网(主要是无线网情况下) 1.ADSL在ubuntu下拨号用ADSL拨号上网,首先需要用pppoeconf进行用户名和密码的设置。(参看ubuntu帮助)1.确认您的以太网卡已被检测到。2.输入您的用户名。
标签: Ubuntu10.10 Zend FrameWork配置方法及helloworld显示
本文链接地址:https://www.jiuchutong.com/biancheng/356376.html 转载请保留说明!友情链接: 武汉网站建设