码迷,mamicode.com
首页 > 其他好文 > 详细

配置yii2 lamp 环境 出错解决记录

时间:2014-11-05 00:00:53      阅读:1857      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   使用   for   

1. minimum-stability  错误

    使用composer 安装yii2的时候会出现下面的问题。

  1. composer install  
  2. Loading composer repositories with package information  
  3. Installing dependencies (including require-dev)  
  4. Your requirements could not be resolved to an installable set of packages.  
  5.   
  6.   Problem 1  
  7.     - Installation request for yiisoft/yii2 * -> satisfiable by yiisoft/yii2[2.0.0].  
  8.     - yiisoft/yii2 2.0.0 requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.  
  9.   Problem 2  
  10.     - Installation request for yiisoft/yii2-bootstrap * -> satisfiable by yiisoft/yii2-bootstrap[2.0.0].  
  11.     - yiisoft/yii2-bootstrap 2.0.0 requires bower-asset/bootstrap 3.2.* | 3.1.* -> no matching package found.  
  12.   Problem 3  
  13.     - Installation request for yiisoft/yii2-gii * -> satisfiable by yiisoft/yii2-gii[2.0.0].  
  14.     - yiisoft/yii2-gii 2.0.0 requires bower-asset/typeahead.js 0.10.* -> no matching package found.  
  15.   Problem 4  
  16.     - yiisoft/yii2 2.0.0 requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.  
  17.     - yiisoft/yii2-faker 2.0.0 requires yiisoft/yii2 * -> satisfiable by yiisoft/yii2[2.0.0].  
  18.     - Installation request for yiisoft/yii2-faker * -> satisfiable by yiisoft/yii2-faker[2.0.0].  
  19.   
  20. Potential causes:  
  21.  - A typo in the package name  
  22.  - The package is not available in a stable-enough version according to your minimum-stability setting  

所以我们只要改一下   minimum-stability

"minimum-stability": "stable"  ->  "minimum-stability": "dev"

 https://github.com/composer/composer/issues/2873

 

2.rhel 7 mysql源问题

  rhel 使用mariadb替代了 mysql,所以没有mysql安装源,如果安装mysql的话去 mysql官网下载 yum 安装源

http://dev.mysql.com/downloads/repo/yum/

 估计以后开源数据库阵营会转向 mariadb了

 

3. rhel 7 apache2.4配置虚拟主机不成功问题

 在rhel中配置了虚拟主机如下,但是不能访问,仍然重定向到默认目录,后来加上index.php 访问发现403没权限,恍然大悟,

  setenforce 没关掉(setenforce 0);setenforce 自己弄就关掉了,还没仔细研究 ToT。。。

<VirtualHost *:80>
  DocumentRoot /home/web/yii-baisic/web
  ServerName www.xxx.com
  ServerAlias xxx.com
  <Directory "/home/web/yii-baisic/web">
  #  Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
  </Directory>
</VirtualHost>

  

 

配置yii2 lamp 环境 出错解决记录

标签:style   blog   http   io   color   ar   os   使用   for   

原文地址:http://www.cnblogs.com/krytor/p/4075033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!