聚指尖-聚指尖-第5页
聚指尖的头像-聚指尖
UID:1 已加入本站3177天 总消费:0.00 徽章-人气大使-聚指尖徽章-备受喜爱-聚指尖徽章-人气佳作-聚指尖8枚徽章管理员超级版主
Strict standards: Non-static method cls_image::gd_version() should not be called statically in-聚指尖

Strict standards: Non-static method cls_image::gd_version() should not be called statically in

Strict standards: Non-static method cls_image::gd_version() should not be called statically in E:\SiteAll\zbphp.com\www\includes\lib_base.php on line346 这个错误的的处理是修改文件...
10个月前
02412
WordPress教程 简洁清新评论回复邮件模板-聚指尖

WordPress教程 简洁清新评论回复邮件模板

给自己的WordPress添加一个简洁的评论回复邮件模板,让用户收到来自你网站的回复邮件通知的时候也感受到你的小清新。废话不多了开始动手把下面代码放到functions.php里,?>之前,(P.S. 如果之...
Win10默认开启数字小键盘的方法-聚指尖

Win10默认开启数字小键盘的方法

用Win10系统的用户很多都设置了开机密码,但有不少用户开机时数字小键盘的状态是关闭的。怎么设置开机默认打开数字小键盘,以方便输入密码呢?操作方法第一步、按下Win+R组合键,再出现的运行命...
Centos最新方法升级php版本到5.2.11-聚指尖

Centos最新方法升级php版本到5.2.11

Centos最新方法升级php版本到5.2.11 rpm --import http://repo.webtatic.com/yum/RPM-GPG-KEY-webtatic-andy wget -P /etc/yum.repos.d/ http://repo.webtatic.com/yum/webtatic.repo yum --ena...
mysql 启动报错 /usr/local/mysql//libexec/mysqld: Can't create/write to file '/var/run/mysqld/mysqld.pid' (Errcode: 13) 120516 15:23:19 [ERROR] Can't start server: can't create PID file: Permission denied-聚指尖

mysql 启动报错 /usr/local/mysql//libexec/mysqld: Can’t create/write to file ‘/var/run/mysqld/mysqld.pid’ (Errcode: 13) 120516 15:23:19 [ERROR] Can’t start server: can’t create PID file: Permission denied

mysql启动 提示 [root@localhost var]# Starting mysqld daemon with databases from /var/lib/mysql STOPPING server from pid file /var/run/mysqld/mysqld.pid 120516 15:23:19 mysqld ended...
10个月前
0229
试试Linux下的ip命令,ifconfig已经过时了-聚指尖

试试Linux下的ip命令,ifconfig已经过时了

linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者。使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务。ifconfig是net-tools中已被废弃使用的一个命令,许多年前就...
10个月前
02113
CentOS正确关机方法-聚指尖

CentOS正确关机方法

关机前准备 1.观察系统使用状态 谁在线:who 联网状态:netstat -a 后台执行的程序:ps -aux 2.通知在线使用者关机时间 shutdown +2 'The machine will shutdown' # 2min 后关机,并通知在线者 关...
日期类问题-聚指尖

日期类问题

给两个日期怎么计算两者间的日期差数,其中还要考虑闰年。 闰年的判断规则是:当年数不能被100整除时若其能被4整除则为闰年,或者其能被400整除时也是闰年。有了这个规则,怎么写就简单了。 #in...
10个月前
0207
tomcat manager 无法使用-聚指尖

tomcat manager 无法使用

在点击tomcat manager的时候提示以下内容: You are not authorized to view this page. By default the Host Manager is only accessible from a browser running on the same machine as Tomc...
秒数转换为天小时分钟秒的格式-聚指尖

秒数转换为天小时分钟秒的格式

num 为需要转换的秒数 //天数计算 int days = (num)/(24*3600); //小时计算 int hours = (num)%(24*3600)/3600; //分钟计算 int minutes = (num)%3600/60; //秒计算 int second = (num)%60; `
10个月前
02014