Hush Framework配置


首先, Hush Framework是一个PHP的网页框架,国内大神的作品。据作者自己说 是一个基于Smarty和Zend Framework的强大的面相企业应用的PHP框架。
    下载xampp,
(Apache+MySQL+PHP+PERL)是一个功能强大的建 XAMPP 软件站集成软件包。 百度一搜一大堆,官网是 https://www.apachefriends.org/zh_cn/index.html。 无脑安装就行,最后会检查端口,冲突的话改端口就行。
  
启动Apache和MySQL,点击Apache的admin,能进入主页就证明没问题。 
现在就开始配置hush framework了。下载地址
https://github.com/jameschz/hush ;
解压之后随便放哪里都没问题,建议放到工作路径,毕竟是一个框架,主体还是代码。 
首先配置环境变量,包括php.exe的绝对路径,mysql的bin路径,都加到path中。

然后cmd进入
hush_framework\hush-app\bin路劲下,键入命令hush sys init,初始化hush framework。 不出意外这时候会报错,提示
Execute Command : mysql  -hlocalhost -P3306 -uroot -p"passwd"  < D:\hush_framewo rk\hush-app\doc\sql\ihush_core.sql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: Y ES) 由于,这是由于hush framework默认的MySQL登录密码为passwd,而xampp中MySQL的密码为空。
进入MySQL,将密码改成passwd,然后修改phpMyAdmin的默认登录MySQL密码,打开 xampp\phpMyAdmin\ config.inc.php
将    
$cfg [ 'Servers' ][ $i ][ 'password' ]    =  '' ;  
改成
      $cfg [ 'Servers' ][ $i ][ 'password' ]    =  ' passwd ' ;
或尝试修改hush framework的默认MySQL密码,打开hush_framework\hush-lib\Hush\Db\Config.php,将const DEFAULT_PASS = 'passwd';
改成自己需要的密码

保存之后重新执行
hush sys init 命令,一切OK,显示 Thank you for using Hush Framework !!!
接着修改Apache的虚拟主机配置,打开
xampp\apache\conf\ extra\ httpd-vhosts.conf
添加如下信息:注意修改红色字体的路径
<VirtualHost *:80>
    DocumentRoot "D:\hush_framework\hush-app\web\backend"
    ServerName hush-app-backend
    <Directory />
        AllowOverride All
        Allow from all
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "D:\hush_framework\hush-app\web\frontend"
    ServerName hush-app-frontend
    <Directory />
        AllowOverride All
        Allow from all
    </Directory>
</VirtualHost>  
由于用到了域名,所以接下来还要修改hosts, 路径是
C:\Windows\System32\drivers\etc ,加入如下配置
127.0.0.1 hush-app-frontend
127.0.0.1 hush-app-backend  
这时候就可以通过 http://hush-app-frontend/http://hush-app-backend/来访问hush framework自带的demo的前台和后台。
  

/***************
***************** * ************ ********** **** *********我是华丽丽的分割线************ ************** ************** *************************/ 

运行后如果出现
Access forbidden!  E RROR 403   ,打开Apache的 httpd.conf,将
<Directory />
    AllowOverride none
    Require all denied
</Directory>  
改成
<Directory />
    Order deny,allow
    Allow from all
</Directory>    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值