最新发布第3页

WordPress后台框架Codestar Framework讲解01

Codestar Framework地址:Github 我的Island和LazyCat都是基于这个后台框架制作的,所以一直想分享一下这个框架,也是为我的制作Wordpress主题教程做铺垫。我从作者开始发布这个项目开始就一直...

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版本引起的 /** * 类...
聚指尖的头像-聚指尖聚指尖2年前
0327

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 这个错误提示...
聚指尖的头像-聚指尖聚指尖2年前
03914
友链界面-聚指尖

友链界面

演示地址可看:https://blog.juzhijian.com/link 路径:/wp-content/themes/zibll/pages/links.php 注意备份原文件,删除原代码将下方代码复制进去即可,自行修改图片地址 <?php /** * Te...
聚指尖的头像-聚指尖聚指尖2年前
012610

活动倒计时代码,网站计时器

活动倒计时 #countdown { font-size: 24px; font-weight: bold; color: red; /* 将字体颜色设置为红色 */ } function startCountdown(endTime) { function updateCountdown() { var now = new D...

Git 怎么添加多个远程仓库呢

#添加githubgit remote add origin https://github.com/xxx(仓库地址) #添加oschinagit remote add oschina https://git.oschina.net/xxxx(仓库地址) #提交到oschinagit push oschina master(分...
聚指尖的头像-聚指尖聚指尖2年前
08314

打印机共享11b错误

计算机\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print 创建DWORD(32位) 名称RpcAuthnLevelPrivacyEnabled 值:0

装完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...
聚指尖的头像-聚指尖聚指尖2年前
04015

Qt之正则表达式

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

CentOS常用命令

cd用来进入指定的某个目录。 说cd这个命令是Linux上使用率最高的两个命令之一不为过吧(另一个当然是ls了),前两天看到了一个cd命令的小技巧是我一直都不知道的,呵呵,这里顺便记下来。 cd - ...