最新发布第5页

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...
聚指尖的头像-聚指尖聚指尖10个月前
0216

Qt之正则表达式

在用写程序的时候,往往会用到正则表达式,不仅仅是Web开发,MFC、GTK+、Qt开发的图形界面也是如此,只要了解其原理,语法也都大相径庭!1、非汉字(6-20位)常例:密码框 QRegExp password_reg...
聚指尖的头像-聚指尖聚指尖10个月前
02012

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

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

装完Centos7提示Initial setup of CentOS Linux 7 (core)

在用U盘装完CentOS后,重新开机启动后显示: Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information (no user will be created) (license not accepted) Pleas...
聚指尖的头像-聚指尖聚指尖10个月前
02415
Win10默认开启数字小键盘的方法-聚指尖

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

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

2015.11.06

你是我一生中,只会遇见一次的惊喜。就像上帝派来的天使,在我心里留下了一颗欢乐的种子。现在,它已经发芽了。
聚指尖的头像-聚指尖聚指尖10个月前
13213

WordPress的伪静态设置方法

多少了解一点SEO知识的朋友都知道静态化的URL(什么是URL?自行百度)更利于搜索引擎收录,WordPress实现伪静态其实是很简单的,但有不少新人朋友还是始终无法成功设置WordPress伪静态。 WordPr...
聚指尖的头像-聚指尖聚指尖10个月前
45810

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个月前
0219

Strict Standards: Redefining already defined constructor for class cls_sql_dump in D:\WWW\ecshop\admin\includes\cls_sql_dump.php on line 90

Strict Standards: Redefining already defined constructor for class cls_sql_dump in D:\WWW\ecshop\admin\includes\cls_sql_dump.php on line 90此问题主要是php4与php5版本引起的 /** * 类...
聚指尖的头像-聚指尖聚指尖10个月前
0197

ECShop后台报错:mktime(): You should be using the time() function instead in

ECShop安装之后,在后台发现一个错误提示: Strict Standards: mktime(): You should be using the time() function instead in E:\web\shopex\admin\shop_config.php on line 32 这个错误提示...
聚指尖的头像-聚指尖聚指尖10个月前
01814