Submitted by gouki on 2016, March 30, 6:05 PM
标题的内容也是手贱导致的,本来composer不self-update也不会出现这个问题,这不,一升到最新的composer就出问题了
1、由于我们为了追求速度,大部分都是用的国内的源,这些源往往都不是https的,这回好了,出错了。
XML/HTML代码
- Your configuration does not allow connection to http://packagist.phpcomposer.com. See https://getcomposer.org/doc/06-config.md#secure-http for details.
- http://packagist.phpcomposer.com could not be fully loaded, package information was loaded from the local cache and may be out of date
OK,打开https://getcomposer.org/doc/06-config.md#secure-http查看了一下,在composer.json和~/.composer/config.json中的config节点下,增加:"secure-http":false
2、composer update的时候报:
XML/HTML代码
- Installation failed, reverting ./composer.json to its original content.
OK,现在可以用composer diag来检查 一下了,结果 发现:
XML/HTML代码
- composer diag
- Checking composer.json: FAIL
- No license specified, it is recommended to do so. For closed-source software you may use "proprietary" as license.
- require.yiisoft/yii2 : unbound version constraints (*) should be avoided
- Checking platform settings: OK
- Checking git settings: OK
- Checking http connectivity to packagist: OK
- Checking https connectivity to packagist: OK
- Checking github.com oauth access: OK
- Checking disk free space: OK
- Checking pubkeys:
- Tags Public Key Fingerprint: ???? 已隐藏
- Dev Public Key Fingerprint: ????? 已隐藏
- OK
- Checking composer version: FAIL
- You are not running the latest stable version, run `composer self-update` to update (e8b1a5f35772e39ca21ab855a278bd84a0a534b2 => 1.0.0-beta2)
居然显示 ,composer中一定要有license节点,require的也需要带 版本号了。于是一一加上,然后接着composer update
3、出现如标题一般的错误
处理方法:一般出现这种错误 ,大部分情况下是fxp插件需要更新了,执行composer global require fxp/composer-asset-plugin --prefer-dist,
XML/HTML代码
- Changed current directory to /Users/gouki/.composer
- Using version ^1.1 for fxp/composer-asset-plugin
- ./composer.json has been updated
- Loading composer repositories with package information
- Updating dependencies (including require-dev)
- - Removing fxp/composer-asset-plugin (v1.1.1)
- - Installing fxp/composer-asset-plugin (v1.1.2)
- Downloading: 100%
-
- Writing lock file
- Generating autoload files
更新完后,再composer udpate就OK了!
当然如果还有问题,你应该查看官网的issue,比如:https://github.com/francoispluchino/composer-asset-plugin/issues/191,刚开始的时候确实是BUG,后面更新了就好了。哈哈
PHP | 评论:0
| 阅读:20719
Submitted by gouki on 2016, January 22, 9:00 AM
标题所说的问题可能早期用户都遇到过。但其实这个问题在官方也早就有解决方案了,不知道为什么还有人问起。
这其实是与:fxp/composer-asset-plugin 相关的一个BUG,你在global require的时候,用1.1的beta版就没问题了。
很简单就能发现这个问题了,你先:composer global require "fxp/composer-asset-plugin:~1.1.1",然后composer install就OK了。
其实你如果每次composer update报这个错,你就应该有警惕了:
XML/HTML代码
- Deprecation Notice: The Composer\Package\LinkConstraint\MultiConstraint class is deprecated, use Composer\Semver\Constraint\MultiConstraint instead. in phar:///usr/local/bin/compose
- r/src/Composer/Package/LinkConstraint/MultiConstraint.php:17
- Deprecation Notice: The Composer\Package\LinkConstraint\LinkConstraintInterface interface is deprecated, use Composer\Semver\Constraint\ConstraintInterface instead. in phar:///usr/l
- ocal/bin/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php:17
当然如果你操作完后还是没看到有任何反应,OK,先清除cache......
不多说,Over
PHP | 评论:0
| 阅读:24125
Submitted by gouki on 2015, October 20, 10:08 AM
position有9个点:lt,mt,rt,lm,mm,rm,lb,mb,rb,其实对应的是几个英文:lt(left top),mt(middle top),rt(right top),以此类推
上官方原图:
OK,然后我们看一下他的代码是怎么写的,如果有人涉及到也可以借鉴:
PHP代码
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public static function calculatePositions($containerWidth, $containerHeight, $layerWidth, $layerHeight, $layerPositionX, $layerPositionY, $position = 'LT')
- {
- $position = strtolower($position);
-
- if ($position == 'rt') {
-
- $layerPositionX = $containerWidth - $layerWidth - $layerPositionX;
-
- } elseif ($position == 'lb') {
-
- $layerPositionY = $containerHeight - $layerHeight - $layerPositionY;
-
- } elseif ($position == 'rb') {
-
- $layerPositionX = $containerWidth - $layerWidth - $layerPositionX;
- $layerPositionY = $containerHeight - $layerHeight - $layerPositionY;
-
- } elseif ($position == 'mm') {
-
- $layerPositionX = (($containerWidth - $layerWidth) / 2) + $layerPositionX;
- $layerPositionY = (($containerHeight - $layerHeight) / 2) + $layerPositionY;
-
- } elseif ($position == 'mt') {
-
- $layerPositionX = (($containerWidth - $layerWidth) / 2) + $layerPositionX;
-
- } elseif ($position == 'mb') {
-
- $layerPositionX = (($containerWidth - $layerWidth) / 2) + $layerPositionX;
- $layerPositionY = $containerHeight - $layerHeight - $layerPositionY;
-
- } elseif ($position == 'lm') {
-
- $layerPositionY = (($containerHeight - $layerHeight) / 2) + $layerPositionY;
-
- } elseif ($position == 'rm') {
-
- $layerPositionX = $containerWidth - $layerWidth - $layerPositionX;
- $layerPositionY = (($containerHeight - $layerHeight) / 2) + $layerPositionY;
- }
-
- return array(
- 'x' => $layerPositionX,
- 'y' => $layerPositionY,
- );
- }
END;
Tags: imageworkshop, position
PHP | 评论:1
| 阅读:26324
Submitted by gouki on 2015, September 7, 10:56 PM
原文来自:http://stackoverflow.com/questions/1653308/access-control-allow-origin-multiple-origin-domains
主要是因为涉及到CSS和JS文件是挂在别的域,然后又遇到了ajax之类的操作,所以就需要有跨域操作了,本来很方便的,只是在.htaccess文件中加了一句
XML/HTML代码
- Header add Access-Control-Allow-Origin "http://xxxxxx.com"
但因为备案原因,所以又添加了一个备用域名,结果,就报错了,报错提示是:
XML/HTML代码
- font from origin 'http://xxxxx.com' has been blocked from loading by Cross-Origin Resource Sharing policy: The 'Access-Control-Allow-Origin' header contains multiple values 'http://yyyy.com, http://zzzz.com', but only one is allowed. Origin 'http://xxxxx.com' is therefore not allowed access.
我晶,不支持多域名啊,google了一下,找到了这一篇:http://stackoverflow.com/questions/1653308/access-control-allow-origin-multiple-origin-domains
不多贴,其实挺有意思。。方法也有不少
1、利用apache的环境变量:
XML/HTML代码
- SetEnvIf Origin "^(.*\.example\.com)$" ORIGIN_SUB_DOMAIN=$1
- <FilesMatch "\.woff$">
- Header set Access-Control-Allow-Origin "%{ORIGIN_SUB_DOMAIN}e" env=ORIGIN_SUB_DOMAIN
- </FilesMatch>
2、用PHP来判断:
PHP代码
- $http_origin = $_SERVER['HTTP_ORIGIN'];
-
- if ($http_origin == "http://www.domain1.com" || $http_origin == "http://www.domain2.com" || $http_origin == "http://www.domain3.info")
- {
- header("Access-Control-Allow-Origin: $http_origin");
- }
3、和1有点类似
XML/HTML代码
- SetEnvIf Origin "^http(s)?://(.+\.)?(domain\.org|domain2\.com)$" origin_is=$0
- Header always set Access-Control-Allow-Origin %{origin_is}e env=origin_is
4、这是nginx的:
XML/HTML代码
- location /fonts {
- # this will echo back the origin header
- if ($http_origin ~ "example.org$") {
- add_header "Access-Control-Allow-Origin" $http_origin;
- }
- }
更多的,还是去原网页看吧。。
PHP | 评论:0
| 阅读:20573
Submitted by gouki on 2015, August 13, 5:16 PM
BUG提醒工具其实有很多,比如可以在有BUG的时候发封邮件到你的常用邮箱,这样你的手机上(邮件APP)就会收到一条提醒。或者有短信SP通道的话,你也可以有类似处理。当然还有monolog,支持php-console插件,可以发送到你的chrome上面,我在这里再换个小方式,利用pubu.im这个IM工具(或者说。。。。说不出来)来做提醒
流程很简单
1、去pubu.im测试一个帐户。。这不用我多说吧
2、下载MAC客户端登录,自己添加自己为一个机器人,相当于自己和自己聊天,如果你的消息不算隐私,你可以直接用现成的:小布 这个通道
3、在聊天界面选择插件,点击更多,打开网页,添加“incoming”插件,生成一个URL,选择你刚才聊天组
4、根据提示信息在你的APP里写上一段测试代码,POST方式的,可以用curl/file_get_contents/Requests/guzzle等,工具实在太多,不想多说
5、测试通过后,可以尝试自己用set_error_handle,自己处理出错信息,在出错信息前进行判断:
if(debug_mode){ //send report }
6、你会发现 右上角弹了一个小窗,就是你刚才的测试标题!
----EOF---
就这样,你在工作的时候不需要打开手机,电脑上会直接有提醒哦~~~而且因为是聊天记录,你还可以往前翻,到底是什么BUG,嗯,再也不用客户端开发人员和你说,XXX接口出错了。。。因为他一出错你就收到,然后你就可以在他没有和你提的时候悄悄的改掉,等他提出来有BUG的时候,你说,在哪里?一定是你访问的姿势不对,不信你试试
哈哈
Tags: bug
PHP | 评论:1
| 阅读:21651