Virtualbox 安装centos7.0 无法全屏问题

1、打开虚拟机设置,选择显示,将分辨率调整到最大,然后点击“确定”;

2、在虚拟机中安装VirtualBox Guest Additions,安装完成后重启虚拟机;

3、在虚拟机中打开终端,输入命令:sudo yum install epel-release;

4、安装完成后,输入命令:sudo yum install xorg-x11-drv-qxl;

5、安装完成后,重启虚拟机,此时就可以实现全屏了。

READ MORE

xhprof

  1. 安装扩展

  2. 下载 https://pecl.php.net/get/xhprof-2.3.9.tgz

  3. 解压后进入extension目录安装

  4. xhprof_html为前端显示使用

  5. index.php和callgraph.php引入了xhprof_lib,需要注意一下路径

  6. 配置php.ini

extension=xhprof.so xhprof.output_dir=/var/www/html/xhprof_html/xhprof_runs/

  1. 配置nginx
server {
    listen 80; 
    server_name xhprof.localhost.com;
    root /var/www/html/xhprof_html/xhprof_html;
    index index.php;

    location ~ \.php$ {
        error_page 500 502 503 504 /static/error_pc_5xx.html;
        include fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME "$document_root$fastcgi_script_name";
        fastcgi_pass php;
    }   
}

查看图片报错:failed to execute cmd: " dot -Tsvg". stderr: `sh: dot: command not found ‘

需要安装graphviz才能查看图片

brew install graphviz 需要翻墙

使用源码安装

https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/7.0.4/graphviz-7.0.4.tar.gz

READ MORE

yii 队列消费报错

Exception 'TypeError' with message 'Argument 5 passed to SymfonyComponentProcessProcess::__construct() must be of the type float or null, string given, called in /var/www/html/5i5j-cron/vendor/yiisoft/yii2-queue/src/cli/Command.php on line 185'

原因是ttr取到空字符串

0

正常消息体结构为

// $res = $redis->hscan('house_queue.messages', $iterator, '*', 100); 300;O:31:"app\models\jobs\HouseCompareJob":9:{s:6:"cityId";i:2;s:7:"houseId";i:90356895;s:9:"houseType";i:1;s:5:"price";i:0;s:9:"priceUnit";i:0;s:9:"buildArea";i:0;s:6:"updown";i:2;s:10:"updateTime";i:1700750747090;s:5:"retry";i:0;}

前面的300为ttr,用分号分隔

READ MORE

Yii2 composer报错处理

报错信息

  Problem 1
    - yiisoft/yii2-composer 2.0.6 requires composer-plugin-api ^1.0 -> found composer-plugin-api[2.2.0] but it does not match the constraint.
    - yiisoft/yii2 2.0.15.1 requires yiisoft/yii2-composer ~2.0.4 -> satisfiable by yiisoft/yii2-composer[2.0.6].
    - yiisoft/yii2 is locked to version 2.0.15.1 and an update of this package was not requested.

解决 运行composer update yiisoft/yii2-composercomposer update yiisoft/yii2-composer --no-plugins获取最新版本的插件,即可。

READ MORE

zsh

oh-my-zsh配置主题

p10k configure

READ MORE