<select id="c-group" data-rule="required" class="form-control" name="row[group]"> {volist name='group_list' id='group_list'} <option value='{$group_li ...
分类:
数据库 时间:
2020-07-09 12:33:30
阅读次数:
70
原因:多数是因为在nginx下找不到路由 if (!-d $request_filename){ set $rule_0 1$rule_0; } if (!-f $request_filename){ set $rule_0 2$rule_0; } if ($rule_0 = "21"){ rewr ...
分类:
Web程序 时间:
2020-07-09 12:02:03
阅读次数:
87
1、LAMP 环境搭建 1.1 、安装 apache 安装 pcre tar -zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/home/pcre make make install 安装 apr tar -zxvf apr-1.6. ...
分类:
其他好文 时间:
2020-07-08 21:26:11
阅读次数:
65
题目链接:https://codeforces.com/problemset/problem/687/C 题目大意:给你n个数,然后让这些数相加组合,然后在这些组合的数里可以再相加组合搞出给定 k,输出这些组合的数。 Examples Input 6 185 6 1 10 12 2 Output 1 ...
分类:
其他好文 时间:
2020-07-08 01:41:40
阅读次数:
87
+ sh make_release.sh fatal: could not read Username for 'http://gitlab.yintech.net': No such device or address vim .git/config [core] repositoryformat ...
分类:
其他好文 时间:
2020-07-07 20:17:20
阅读次数:
64
出现这个报错通常是因为使用了AopContext.currentProxy()函数却没有添加相应的配置造成的。 通过注解添加配置(加在类上): @EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true) 或通过xml配置文 ...
分类:
其他好文 时间:
2020-07-07 10:21:40
阅读次数:
203
1.安装wget yum install -y wget 2.完事前都做备份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 3.下载阿里云镜像文件 wget -O /etc/yum.repo ...
分类:
其他好文 时间:
2020-07-06 16:17:29
阅读次数:
228
linux(debian)安装USB无线网卡(tp-link TL-WN725N rtl8188eu ) 3.下载git上的驱动,下载完.zip文件后,进行如下步骤:$ unzip rtl8188eu-master.zip $ cd rtl8188eu-master $ sudo make $ su ...
分类:
系统相关 时间:
2020-07-06 16:02:08
阅读次数:
116
git clone https://github.com/TarsPHP/tars-extension.gitcd /opt/tars/TarsPHP/tars-extensionphpize./configure makemake install extension=phptars.so ...
分类:
Web程序 时间:
2020-07-06 13:13:07
阅读次数:
80
输出结果 package main import "fmt" func main() { type Map map[string][]int m := make(Map) // 值为切片类型的map s := []int{1, 2} // 初始化切片s s = append(s, 3) // 切片s ...
分类:
其他好文 时间:
2020-07-05 21:27:27
阅读次数:
58