首页
统计
留言
友链
Search
1
关于人生的七个辩题
387 阅读
2
I am no hero-Underwater Cities
261 阅读
3
H3C华为路由器-内网主机通过公网地址访问内部服务器配置
256 阅读
4
H3C ComwareV7 OSPF 错误统计数据
212 阅读
5
Fairy Tale-钟茌
176 阅读
α
β
γ
δ
ε
ζ
登录
Search
标签搜索
散文随笔
励志
无线网络
杂谈
后摇
交换机
资料收集
专辑
华为
WLAN
电声音乐
钢琴曲
流行
VLAN
漫画
心灵鸡汤
信息安全
SDN
网络管理
VM
cych
累计撰写
90
篇文章
累计收到
0
条评论
首页
栏目
α
β
γ
δ
ε
ζ
页面
统计
留言
友链
搜索到
90
篇与
的结果
2014-12-26
升级需谨慎,升级需备份
可能是强迫症作怪,有个更新亮着总觉得不舒服。于是就大胆的升级4.1。也是够大胆的,只把数据库备份了,文件没有备份。升级完成后果断503错误了,这弄得我折腾了大半天。恢复数据库,替换文件反反复复来了几次。还是503,后面想到了可能是插件有问题。于是百度了在数据库禁用插件的方法,果然就O啦。所以啊升级需谨慎,升级需备份。出了问题直接数据库和文件一起恢复。正确的版本升级应该是,备份数据库和文件,然后禁用所有的插件后在执行升级。这样也避免不了升级过后启用插件造成的不兼容。所以升级以后一个一个插件启用。出现问题后在执行数据库修改。一般来说,在主机空间控制面板都会提供诸如 PHPMyAdmin 之类的 MySQL 数据库修改软件,本文就以 PHPMyAdmin 为例。记录 WordPress 插件信息的表位于:wp_options 表中的 active_plugins 字段,active_plugins 的值记录着插件使用情况。如果禁用所有插件,只需要用 a:0:{} 来代替 active_plugins 的值即可。 如果是升级后启用某一个插件造成问题,就删除其中一项。比如我这次升级后503错误就是由于我使用的GravatarLocalCache这款Gravatar头像缓存插件引起的,就删除i:4:s:41:"gravatarlocalcache/GravatarLocalCache.php";GravatarLocalCache这款插件已经2年没有更新的,但是我觉得是头像缓存插件里最好用的一个。升级wp后不能使用了也是很遗憾的。就算慢的要死,现在也只能使用多说的镜像了。
2014年12月26日
118 阅读
0 评论
0 点赞
2014-12-19
小伙伴们,快到墙上来
自从加入WP的大家庭后,连玩游戏都给丢掉了。每天就逛逛大家的博客,也折腾下自己的。看到好看的模板,有华丽效果的模板也很爱不释手,也想给自己这个小站披上。经常逛大家的博客,看到好多人都有一个叫读者墙的页面,都挺好看也很炫酷。琢磨着自己也弄一个,于是就问问度娘了。发现折子戏发布的一个 CSS3 特效的读者墙博文,感觉还不错,就来折腾了。按照原来的码贴上后,GravatarLocalCache插件缓存到本地的Gravatar头像会失效,依然会从Gravatar服务器加载,页面加载非常慢,而且全是裂图。折腾半天,删了一个参数就行了。给和我一样都是外行的朋友们分享下。炫酷的读者墙马上登场。1.复制主题的page.php,另存为readerwall.php,然后在其顶部添加代码<?php /* Template Name: 读者墙 */ ?> 2.接着改文件代码里找到< ?php the_content('');?>在它的前面添加下面的代码(我是加到后面的,根据自己想要放的位置来选择) <!-- 读者墙 --> <?php $query="SELECT COUNT(comment_ID) AS cnt, comment_author, comment_author_url, comment_author_email FROM (SELECT * FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->posts.ID=$wpdb->comments.comment_post_ID) WHERE comment_date > date_sub( NOW(), INTERVAL 24 MONTH ) AND user_id='0' AND comment_author_email != '管理员的邮箱' AND post_password='' AND comment_approved='1' AND comment_type='') AS tempcmt GROUP BY comment_author_email ORDER BY cnt DESC LIMIT 28";//大家把管理员的邮箱改成你的,最后的这个28是选取多少个头像,大家可以按照自己的主题进行修改,来适合主题宽度 $wall = $wpdb->get_results($query); $maxNum = $wall[0]->cnt; foreach ($wall as $comment) { $width = round(40 / ($maxNum / $comment->cnt),2);//此处是对应的血条的宽度 if( $comment->comment_author_url ) $url = $comment->comment_author_url; else $url="#"; $avatar = get_avatar( $comment->comment_author_email, $size = '36' ); $tmp = "<li><a target=\"_blank\" href=\"".$comment->comment_author_url."\">".$avatar."<em>".$comment->comment_author."</em> <strong>+".$comment->cnt."</strong></br>".$comment->comment_author_url."</a></li>"; $output .= $tmp; } $output = "<ul class=\"readers-list\">".$output."</ul>"; echo $output ; ?> <!-- end 读者墙 --> 3.在主题的style.css文件中添加下面的css样式/**读者墙**/ .readers-list {line-height:18px;text-align:left;_zoom:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-o-text- } .readers-list li{width:179px;float:left;*margin-right:-1px} .readers-list a,.readers-list a:hover strong{background-color:#f2f2f2;background-image:-webkit-linear-gradient(#f8f8f8,#f2f2f2);background-image:-moz-linear-gradient(#f8f8f8,#f2f2f2);background-image:linear-gradient(#f8f8f8,#f2f2f2)} .readers-list a{position:relative;display:block;height:36px;margin:4px;padding:4px 4px 4px 44px;color:#999;overflow:hidden;border:#ccc 1px solid;border-radius:2px;box-shadow:#eee 0 0 2px} .readers-list img,.readers-list em,.readers-list strong{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;transition:all .2s ease-out} .readers-list img{width:36px;height:36px;float:left;margin:0 8px 0 -40px;border-radius:2px} .readers-list em{color:#666;font-style:normal;margin-right:10px} .readers-list strong{color:#ddd;width:40px;text-align:right;position:absolute;right:6px;top:4px;font:bold 14px/16px microsoft yahei} .readers-list a:hover{border-color:#bbb;box-shadow:#ccc 0 0 2px;background-color:#fff;background-image:none} .readers-list a:hover img{opacity:.6;margin-left:0} .readers-list a:hover em{color:#DD3322;font:bold 12px/36px microsoft yahei} .readers-list a:hover strong{color:#DD3322;right:129px;top:0;text-align:center;border-right:#ccc 1px solid;height:44px;line-height:40px} 最终效果: http://cych.wang/rwtest
2014年12月19日
124 阅读
0 评论
0 点赞
2014-12-18
让WP的缩略图也扁一下
一直都喜欢简简单单的风格样式。无论是以前的QQ空间还是新浪博客都选用的非常简易的模板,当初找WP主题也是找了好久,才找到这款挺合心意的主题ALITY,最重要的还是免费的。最近在折腾的时候发现主页使用文章第一张图片为缩略图时,虽然尺寸小了但也是全部加载的,有时候上1M的图,也影响加载速度,用插件自动剪也浪费空间。全世界都被压扁了,为何不让WP的缩略图也扁一下。在制作属于自己的缩略图之前,也要好好的选一个配色方案。纯色 色彩样本 复古色 色彩样本 同类色(单色调) 色彩样本 当然也可以使用在线的一些配色方案 Flat design color palette (free) http://codepen.io/cobblucas/pen/iGpIfFlat UI colors (free) http://flatuicolors.com/Adobe Kuler (free) https://kuler.adobe.com/flat-colors-art-colors/ColourLovers (free) http://www.colourlovers.com/palettes/search?query=flat 最后自己制作,制作其实很简单的。PS是大神们玩的,我等用美图秀秀就可以了。
2014年12月18日
170 阅读
0 评论
0 点赞
2014-12-18
阅读的真正意义
阅读的真正意义:make invisible visible对这个世界的认识,大部分人要经历人生三阶段:1、觉得世界是美好的(傻逼阶段);2、觉得世界是操蛋的(犬儒阶段);3、明知道世界是操蛋的却仍然热爱生命,于黑暗中看到光明。读书的意义之一便是这样,看到黑暗,并于黑暗里看见更大,没有雾霾的蓝天白云阳光 [hermit auto="1" loop="1" unexpand="0"]songlist#:1770887278[/hermit]
2014年12月18日
141 阅读
0 评论
0 点赞
2014-12-17
没单反也任性,2014年全球iPhone摄影大赛获奖作品欣赏
对,你没看错,这些精美的照片全是用iPhone拍摄的,这些是第7届iPhone摄影大赛获奖的作品,本届比赛中,使用最多的手机型号为iPhone 5和iPhone 5s。难以想象这些精美的照片竟都是用iPhone所拍摄的。该项赛事始于2007年,比赛要求照片都必须是通过iPhone直接拍摄所得, 但允许用户可以使用Instagram、VSCO等第三方应用对照片进行处理,但不能用PS这类工具对照片进行内容上的改动。下面就来欣赏一下这些用iPhone拍的照片吧。看看和你平时的单反加上山炮一样的镜头拍的有什么不同。 [caption id="" align="aligncenter" width="950"] 2014年度摄影师 第一名 摄影师:JULIO LUCAS(美国)[/caption] [caption id="" align="aligncenter" width="950"] 2014年度摄影师第二名 摄影师:JOSE LUIS BARCIA FERNANDEZ(西班牙)[/caption] [caption id="" align="aligncenter" width="950"] 2014年度摄影师 第三名 摄影师:JILL MISSNER(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:动物 第一名 摄影师:MICHAEL ONEAL(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:动物 第二名 摄影师:NAOMI WU(台湾)[/caption] [caption id="" align="aligncenter" width="950"] 组别:动物 第三名 摄影师:TEDDY COHEN(以色列)[/caption] [caption id="" align="aligncenter" width="950"] 组别:建筑 第一名 摄影师:YILANG PENG(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:建筑 第二名 摄影师:CHUN WAI TO(香港)[/caption] [caption id="" align="aligncenter" width="950"] 组别:建筑 第三名 摄影师:COCU LIU(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:儿童 第一名 摄影师:DANNY VAN VUUREN(南非)[/caption] [caption id="" align="aligncenter" width="950"] 组别:儿童 第二名 摄影师:OLGA OTCHENASHEVA(瑞士)[/caption] [caption id="" align="aligncenter" width="950"] 组别:儿童 第三名 摄影师:MELISA BARILLI(加拿大)[/caption] [caption id="" align="aligncenter" width="917"] 组别:花卉 第一名 摄影师:JENNY ANDERSON(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:花卉 第二名 摄影师:LEE ATWELL(美国)[/caption] [caption id="" align="aligncenter" width="750"] 组别:花卉 第三名 摄影师:MONICA GANTER(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:食物 第一名 摄影师:ALEXA SEIDL(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:食物 第二名 摄影师:CHIEN NAN LIAO(台湾)[/caption] [caption id="" align="aligncenter" width="767"] 组别:食物 第三名 摄影师:SOFIJA STRINDLUND(瑞典)[/caption] [caption id="" align="aligncenter" width="950"] 组别:风景 第一名 摄影师:ELENA GRIMAILO(俄罗斯)[/caption] [caption id="" align="aligncenter" width="950"] 组别:风景 第二名 摄影师:GWENN MCGILL(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:风景 第三名 摄影师:CRAIG HARVEY(英国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:生活方式 第一名 摄影师:BRANDON KIDWELL(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:生活方式 第二名 摄影师:RHONDA DENT(加拿大)[/caption] [caption id="" align="aligncenter" width="950"] 组别:生活方式 第三名 摄影师:MIHAI COLIBAN(罗马尼亚)[/caption] [caption id="" align="aligncenter" width="950"] 组别:自然 第一名 摄影师:FELICIA PANDOLA(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:自然 第二名 摄影师:ERIKA BROTHERS(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:自然 第三名 摄影师:LAURENT CAILLAUD(法国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:新闻 第一名 摄影师:GERARD COLLETT(英国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:新闻 第二名 摄影师:JUANA CHAVES(西班牙)[/caption] [caption id="" align="aligncenter" width="950"] 组别:新闻 第三名 摄影师:JEANNINE DANHIEUX(瑞士)[/caption] [caption id="" align="aligncenter" width="950"] 组别:其他 第一名 摄影师:TERRY VITAL(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:其他 第二名 摄影师:COCU LIU(美国)[/caption] [caption id="" align="aligncenter" width="681"] 组别:其他 第三名 摄影师:TRACEY RENEHAN(瑞典)[/caption] [caption id="" align="aligncenter" width="1024"] 组别:全景 第一名 摄影师:KYLE G. HORST(美国)[/caption] [caption id="" align="aligncenter" width="1024"] 组别:全景 第二名 摄影师:ROBERTO PASTROVICCHIO(意大利)[/caption] [caption id="" align="aligncenter" width="1024"] 组别:全景 第三名 摄影师:BIRSAN IONUT LIVIU(罗马尼亚)[/caption] [caption id="" align="aligncenter" width="950"] 组别:人像 第一名 摄影师:LAUREN SMITH(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:人像 第二名 摄影师:ATHENA TAN(新加坡)[/caption] [caption id="" align="aligncenter" width="950"] 组别:人像 第三名 摄影师:HECTOR-NAVARRO(墨西哥)[/caption] [caption id="" align="aligncenter" width="950"] 组别:季节 第一名 摄影师:COCU LIU(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:季节 第二名 摄影师:DRAGOS BARDAC(罗马尼亚)[/caption] [caption id="" align="aligncenter" width="950"] 组别:季节 第三名 摄影师:ALEXIS CHARTRAND(加拿大)[/caption] [caption id="" align="aligncenter" width="800"] 组别:静物 第一名 摄影师:SOFIJA STRINDLUN(瑞典)[/caption] [caption id="" align="aligncenter" width="950"] 组别:静物 第二名 摄影师:MADDY MCCOY(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:静物 第三名 摄影师:CARA BARER(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:日落 第一名 摄影师:LITTLE SU(台湾)[/caption] [caption id="" align="aligncenter" width="950"] 组别:日落 第二名 摄影师:DANIELLE MILLAR(南非)[/caption] [caption id="" align="aligncenter" width="950"] 组别:日落 第三名 摄影师:EDWARD ADAMS(英国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:旅行 第一名 摄影师:ADRIENNE PITTS(英国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:旅行 第二名 摄影师:JORDAN FRASER(爱尔兰)[/caption] [caption id="" align="aligncenter" width="950"] 组别:旅行 第三名 摄影师:SERGEY KORSHUNOV(俄罗斯)[/caption] [caption id="" align="aligncenter" width="950"] 组别:树木 第一名 摄影师:AARON PIKE(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:树木 第二名 摄影师:COCU LIU(美国)[/caption] [caption id="" align="aligncenter" width="950"] 组别:树木 第三名 摄影师:MARIKO KLUG(德国)[/caption]
2014年12月17日
125 阅读
0 评论
0 点赞
1
2
3
...
18