码迷,mamicode.com
首页 >  
搜索关键字:no rule to make targ    ( 12102个结果
select取数据库值设为默认值,TP框架模板中ifelse
<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
tp5在apache下能访问,但放到nginx下报404
原因:多数是因为在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
zabbix 安装(离线源码安装)
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
CodeForces - 687C The Values You Can Make (多背包解法)
题目链接: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
jenkins编译代码git脚本报错
+ 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
Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available.
出现这个报错通常是因为使用了AopContext.currentProxy()函数却没有添加相应的配置造成的。 通过注解添加配置(加在类上): @EnableAspectJAutoProxy(proxyTargetClass = true, exposeProxy = true) 或通过xml配置文 ...
分类:其他好文   时间:2020-07-07 10:21:40    阅读次数:203
wget和yum下载慢,更换阿里镜像源
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 )
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
安装phptars扩展
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
GO-Map
输出结果 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
12102条   上一页 1 ... 34 35 36 37 38 ... 1211 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!