1. minimum-stability 错误
使用composer 安装yii2的时候会出现下面的问题。
- composer install
- Loading composer repositories with package information
- Installing dependencies (including require-dev)
- Your requirements could not be resolved to an installable set of packages.
- Problem 1
- - Installation request for yiisoft/yii2 * -> satisfiable by yiisoft/yii2[2.0.0].
- - yiisoft/yii2 2.0.0 requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.
- Problem 2
- - Installation request for yiisoft/yii2-bootstrap * -> satisfiable by yiisoft/yii2-bootstrap[2.0.0].
- - yiisoft/yii2-bootstrap 2.0.0 requires bower-asset/bootstrap 3.2.* | 3.1.* -> no matching package found.
- Problem 3
- - Installation request for yiisoft/yii2-gii * -> satisfiable by yiisoft/yii2-gii[2.0.0].
- - yiisoft/yii2-gii 2.0.0 requires bower-asset/typeahead.js 0.10.* -> no matching package found.
- Problem 4
- - yiisoft/yii2 2.0.0 requires bower-asset/jquery 2.1.*@stable | 1.11.*@stable -> no matching package found.
- - yiisoft/yii2-faker 2.0.0 requires yiisoft/yii2 * -> satisfiable by yiisoft/yii2[2.0.0].
- - Installation request for yiisoft/yii2-faker * -> satisfiable by yiisoft/yii2-faker[2.0.0].
- Potential causes:
- - A typo in the package name
- - 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>
时间: 2024-10-11 22:00:43