- 博客(62)
- 资源 (3)
- 收藏
- 关注
原创 open webui 部署 以及解决,首屏加载缓慢,nginx反向代理访问404,WebSocket后端服务器链接失败等问题
OpenAI API默认 chart gpt的访问链接 删除掉。问题原因 接口 api/models 调用加载模型列表缓慢。部署完成后可直接访问 ip+3000端口。Ollama API默认链接 删除掉。
2025-02-21 10:37:23
4794
4
原创 echarts雷达图中多个数据项比例不同问题、坐标标题自定义样式问题
本身就解决了,多个雷达图中取每个坐标中最大的值*1.2这样子 就会得到比例合适的雷达图。1、数据项比例不同问题。
2025-01-12 08:21:53
155
原创 企业微信中设置回调接口url以及验证 spring boot项目实现
接收消息与事件:加密解密文档:加解密库下载与返回码 - 文档 - 企业微信开发者中心加解密库下载与返回码 - 文档 - 企业微信开发者中心将解压开的代码‘将文件夹:qq\weixin\mp\aes的代码作为工具拷到项目中pom文件中加入编写会回调接口
2024-11-20 15:21:08
642
原创 PHP 中使用jupitern/docx将多个work文档合并为一个word文档
PHP 中使用jupitern/docx将多个work文档合并为一个word文档
2024-07-13 16:05:42
476
原创 php种调用jodConverter+ openoffic实现word转pdf
php种调用 jodConverter + openoffic实现word转pdf
2024-05-17 16:05:38
382
原创 springboot 中通过定时任务备份数据库并压缩传输到指定另外一台linux服务器得文件夹中 或 发送压缩包到指定邮箱
springboot 中通过定时任务备份数据库并压缩传输到指定另外一台linux服务器得文件夹中 或 发送压缩包到指定邮箱
2023-11-27 12:13:05
796
原创 ubuntu(18.04)中安装open babel docker镜像并在php项目中调用容器中的obabel命令解析结果使用
ubuntu(18.04)中安装open babel docker镜像并在php项目中调用容器中的obabel命令解析结果使用
2023-11-09 12:01:03
661
原创 ubuntu(18.04)中架设HiGlass docker镜像服务,已尝试mcool、bedpe、wig格式文件
ubuntu(18.04)中架设HiGlass docker镜像服务,已尝试mcool、bedpe、wig格式文件
2023-11-01 19:02:58
662
2
原创 win10系统中 mysql5.7 SELECT list is not in GROUP BY clause and contains nonaggregated column解决
如果是解压版可能在安装路径中没有mysql.ini,那就手动创建一个配置文件。在mysql配置文件 mysql.ini 中的。[mysqld]下面添加。需要替换为自己的安装路径。
2023-05-26 10:41:05
191
原创 ubuntu 中磁盘爆满排查异常文件
磁盘异常饱满排查异常文件,Mysql报错误Error writing file ‘/home/tmp/xxxx’
2022-08-10 16:40:16
1133
原创 ubuntu中已通过apt安装的nginx添加新模块(http_gzip_static_module)静态压缩
ubuntu中已通过apt安装的nginx添加新模块(http_gzip_static_module)备份 防止出错在目录 /usr/sbin中找到nginx备份sudo cp /usr/sbin/ngin /usr/sbin/nginx.bak使用已经重新编译过的nginx替换安装的nginx程序具体编译过程看链接sudo mv ~/nginx /usr/sbin/重启nginxsudo service nginx restart测试静态压缩模块和动态压缩模块是否
2021-08-19 14:57:39
1689
原创 ubuntu使用apt安装nginx后,编辑源码nginx添加新模块
起因:在ubuntu中使用nginx的时候由于使用apt安装的软件,需要给nginx安装模块。需要重新编译。在使用nginx -V 查看到apt安装是的 ./configure 的参数 中有要用的模块(http_gzip_static_module),但是好像没有安装上去。所以拿这些参数重新编译nginx,得到编译后软件替换已经安装的。./configure --with-cc-opt='-g -O2 -fdebug-prefix-map=/build/nginx-H4cN7P/nginx-..
2021-08-19 14:51:43
3953
原创 CodeIgniter 框架中上传文件,wps和微软office创建编辑的差异性问题,导致上传不成功。 .docx .xlsx
方法一:直接修改config/upload.php中的文件类型限制为 *$config['allowed_types'] = "*";方法二:修改 config/mimes.php 中的各个文件类型的类别配置'xlsx' => array( 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/zip', 'application/..
2021-03-25 14:33:14
266
原创 springboot插入中文数据到mysql出现????
修改mysql配置文件my.ini[client]default-character-set=utf8[mysqld]character-set-server=utf8重启mysqlservice mysqld.service restart
2021-03-06 16:07:23
168
原创 mybatis-generator-maven-plugin:1.3.7 报 Either set the home directory in the configuration dialog or
错误 :Error running 'mybatis-demo [org.mybatis.generator:mybatis-generator-maven-plugin:1.3.7:generate]': No valid Maven installation found. Either set the home directory in the configuration dialog or set the M2_HOME environment variable on your system.
2021-02-02 00:40:41
618
原创 http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd 爆红
1、下载http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd,放入到指定文件夹2、打开url 输入http://mybatis.org/dtd/mybatis-generator-config_1_0.dtdfile 输入 刚刚存放的文件
2021-02-02 00:34:24
326
原创 php二维数组 根据二位数组中的某个属性排序,
usort($data_arr,function($object1, $object2) { return $object1["publish_date"] < $object2["publish_date"];});$data_arr = array( array( "id"=>1, ...
2020-04-24 20:55:16
163
原创 linux下安装 redis
1、下载安装wget http://download.redis.io/releases/redis-3.2.0.tar.gztar xzf redis-3.2.0.tar.gzcd redis-3.2.0make2、后台启动,远程访问 (注意redis版本 3.2以上版本才有protected-mode配置) 修改redis.conf 注释: ...
2020-01-11 15:54:33
148
转载 vue中拖拽组件使用------vuedraggable
1、安装cnpm i -S vuedraggable2、使用import draggable from "vuedraggable";3、代码<template> <section class="main"> <div class="crumbs"> <el-breadcrumb separator="/...
2019-12-30 16:59:35
3166
2
转载 vue中使用pdf阅读器 --- pdf.js
一、下载 https://mozilla.github.io/pdf.js/getting_started/#download 二、导入 三、使用<template> <div> <iframe :src="'/static/pdf/web/viewer2.html?file='+url" width="8...
2019-12-28 16:32:44
1568
原创 element ui 中的 Container 布局容器 main中的table表头高度调整
问题:解决://原始.el-main { background-color: #e9eef3; color: #333; line-height: 461px;} //修改.el-main { background-color: #e9eef3; color: #333; line-height: 20px !important...
2019-12-14 15:29:00
1304
转载 Vue-cli项目中使用mockjs模拟数据
转载自慕课手记:http://www.imooc.com/article/51073vue-cli项目中如何使用在项目中安装mockjs、axios(http请求库)cnpm install mockjs axios --save在项目中新建一个mock.js文件,用于定义接口返回的数据 在main.js引入mock.jsmock.jsconst Mock = req...
2019-12-07 11:06:08
187
转载 quill-editor + element ui 上传组件 改造富文本图片上传服务器问题
来源:参考转载自:https://blog.youkuaiyun.com/wepe12/article/details/894478291、安装quill-editor ,element uicnpm install vue-quill-editor --savecnpm i element-ui -S3、main.js引入import VueQuillEditor fro...
2019-12-06 11:00:08
252
2
转载 Linux(Ubuntu)下如何安装JDK
Linux 下如何安装 JDK ,以 Ubuntu 为例。一、JDKJDK1.8链接:https://pan.baidu.com/s/1TiN4qBrg3N-ioF3ibbV7xA 提取码:f6c1 二、 解压创建目录 :sudo mkdir /usr/lib/jvm/将文件移至了 /usr/lib/jvm/ 目录下sudo mv./jdk-8u221-l...
2019-08-29 17:00:12
134
原创 nginx -- 配置跨域问题
upstream video_server_pool{ server 127.0.0.1:3359 weight=10; } #允许跨域访问的列表 map $http_origin $origin_list{ default http://www.boqian.com; "~http://www.xuecheng.c...
2019-08-20 00:37:15
432
原创 elasticsearch + logstash 的时间插不进去的坑
创建文档时设置的时间日期格式要与数据库中的时间格式相同。//创建文档时的设置"start_time" : { "format" : "yyyy-MM-dd HH:mm:ss", "type" : "date" },//模板文件中的复制过去"start_time" : { ...
2019-08-15 00:13:28
376
原创 使用CI框架----前后端分离---运用CI表单验证函数验证前端ajax发送的json数据
一、主要函数//在文件Form_validation.php /** * Set Rules * * This function takes an array of field names and validation * rules as input, any custom error messages, validates the info...
2019-07-29 16:37:51
444
原创 PhpOffice --- Excle 使用
表格使用相关设置函数1、创建实例$spreadsheet = new Spreadsheet();//实例化类2、设置横向标识//横向单元格标识$cellName = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',...
2019-07-19 11:28:44
2063
2
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人