分类:折腾日期:2014-05-24 - 17:16:51评论:3条作者:老谢
意外发现博客的rss feed和sitemap.xml出现如下的错误:
This page contains the following errors:
error on line 2 at column 6: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.
网上搜索了一下,可能是由于主题的functions.php文件?>后存在空行导致的,检查后没有发现问题,折腾了半天发现一款名为Fix My Feed RSS Repair的插件,安装使用修复后问题解决
分类:乱七八糟日期:2014-05-24 - 10:44:56评论:26条作者:老谢
PAP认证的方式用了一个多学期,突然无法正常使用,拨号后要求升级到最新客户端,
升级最新版客户端以后重新抓包发现用户名的混淆改了,PAP的认证方式看来是被禁止了,
CHAP的算法根本不知道,本文只是吐槽,淘宝上还有破解的路由器再卖,打算买一个试试看了:
继续阅读…
分类:碎语日期:2014-05-20 - 15:21:52作者:老谢
【WordPress】千人QQ群成立21778118,期待您的加入!
分类:折腾日期:2014-05-09 - 9:07:24评论:12条作者:老谢
之前用LAMP的时候也是这个错误,那时候装了个FTP所以直接在wp-config.php里面定义FTP的办法来解决这个问题,现在用阿里云配置LNMP感觉SFTP也很方便,国内速度够快,所以懒得再去装FTP,所以苦苦搜索解决办法,经过大量搜索,得到的答案都是权限问题,我确信我的php执行用户是www,也给了相应正确的用户权限,但是依旧无解。。。蛋X的是在wp后台编辑插件主题等都是正常的,可以说明php有写入的权限,又一番苦苦搜索,找到了下面一个办法来解决这个问题:
在wp-config.php结尾添加如下字段:
/* Fix WordPress autoupgrades on Byethost.com */
putenv('TMPDIR=' . ini_get('upload_tmp_dir'));
if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );
} |
/* Fix WordPress autoupgrades on Byethost.com */
putenv('TMPDIR=' . ini_get('upload_tmp_dir'));
if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );
}
保存后即可正常使用自动更新的功能
分类:折腾日期:2014-05-06 - 17:53:10评论:2条作者:老谢
官方关于文章形式帮助文档:http://codex.wordpress.org/zh-cn:文章形式
需要说明下的是在使用相册形式的时候,需要在循环体内加入下面的一句代码,以让可以使用自己定义的css样式
<?php add_filter( 'use_default_gallery_style', '__return_false' ); ?> |
<?php add_filter( 'use_default_gallery_style', '__return_false' ); ?>
下面直接贴出我的loop.php以便大家参考:
<?php if ( has_post_format( 'status' )) { ?>
<div class="post<?php sticky_class(); ?>" id="post-<?php the_ID(); ?>">
<div class="post-data">
<div class="title">
<!--<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>-->
<h3 class="aside"><span>分类:<?php the_category(', '); ?></span><span>日期:<?php the_time('Y-m-d'); ?></span><span><span>作者:<?php the_author(); ?></span><span><?php if (function_exists('custom_the_views')) : ?>阅读:<?php custom_the_views($post->ID); ?></span><?php endif; ?>
</h3>
</div>
</div>
<div class="post-txt"><a href="<?php the_permalink() ?>" rel="bookmark"><?php echo get_avatar( get_the_author_meta('ID'), 42 ); ?></a><?php the_content(); ?></div>
</div>
<?php
}else if ( has_post_format( 'gallery' ) ){ ?>
<?php add_filter( 'use_default_gallery_style', '__return_false' ); ?>
<div class="post<?php sticky_class(); ?>" id="post-<?php the_ID(); ?>">
<div class="post-data">
<div class="title">
<!--<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>-->
<h3 class="aside"><span>标题:<?php echo the_title(); ?></span><span>分类:<?php the_category(', '); ?></span><span>日期:<?php the_time('Y-m-d'); ?></span><span><span>作者:<?php the_author(); ?></span><span><?php if (function_exists('custom_the_views')) : ?>阅读:<?php custom_the_views($post->ID); ?></span><?php endif; ?>
</h3>
</div>
</div>
<div class="post-txt"><?php echo do_shortcode('[gallery columns="3" size="thumbnail" link="file"]'); ?></div>
</div>
<?php
}else{ ?>
<div class="post<?php sticky_class(); ?>" id="post-<?php the_ID(); ?>">
<div class="post-data">
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<h3><span>分类:<?php the_category(', '); ?></span><span>日期:<?php the_time('Y-m-d'); ?></span><span>评论:<?php comments_popup_link(__('0条'), __('1条'), __('%条'), '', __('已关闭评论')); ?></span><span>作者:<?php the_author(); ?></span><span><?php if (function_exists('custom_the_views')) : ?>阅读:<?php custom_the_views($post->ID); ?></span><?php endif; ?>
</h3>
</div>
</div>
<div class="post-txt"><?php the_content( __( '<b>继续阅读...</b>') ); ?></div>
<?php the_tags('<div class="tags">Tags: ', ' , ', '</div>'); ?>
</div>
<?php } ?> |
<?php if ( has_post_format( 'status' )) { ?>
<div class="post<?php sticky_class(); ?>" id="post-<?php the_ID(); ?>">
<div class="post-data">
<div class="title">
<!--<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>-->
<h3 class="aside"><span>分类:<?php the_category(', '); ?></span><span>日期:<?php the_time('Y-m-d'); ?></span><span><span>作者:<?php the_author(); ?></span><span><?php if (function_exists('custom_the_views')) : ?>阅读:<?php custom_the_views($post->ID); ?></span><?php endif; ?>
</h3>
</div>
</div>
<div class="post-txt"><a href="<?php the_permalink() ?>" rel="bookmark"><?php echo get_avatar( get_the_author_meta('ID'), 42 ); ?></a><?php the_content(); ?></div>
</div>
<?php
}else if ( has_post_format( 'gallery' ) ){ ?>
<?php add_filter( 'use_default_gallery_style', '__return_false' ); ?>
<div class="post<?php sticky_class(); ?>" id="post-<?php the_ID(); ?>">
<div class="post-data">
<div class="title">
<!--<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>-->
<h3 class="aside"><span>标题:<?php echo the_title(); ?></span><span>分类:<?php the_category(', '); ?></span><span>日期:<?php the_time('Y-m-d'); ?></span><span><span>作者:<?php the_author(); ?></span><span><?php if (function_exists('custom_the_views')) : ?>阅读:<?php custom_the_views($post->ID); ?></span><?php endif; ?>
</h3>
</div>
</div>
<div class="post-txt"><?php echo do_shortcode('[gallery columns="3" size="thumbnail" link="file"]'); ?></div>
</div>
<?php
}else{ ?>
<div class="post<?php sticky_class(); ?>" id="post-<?php the_ID(); ?>">
<div class="post-data">
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<h3><span>分类:<?php the_category(', '); ?></span><span>日期:<?php the_time('Y-m-d'); ?></span><span>评论:<?php comments_popup_link(__('0条'), __('1条'), __('%条'), '', __('已关闭评论')); ?></span><span>作者:<?php the_author(); ?></span><span><?php if (function_exists('custom_the_views')) : ?>阅读:<?php custom_the_views($post->ID); ?></span><?php endif; ?>
</h3>
</div>
</div>
<div class="post-txt"><?php the_content( __( '<b>继续阅读...</b>') ); ?></div>
<?php the_tags('<div class="tags">Tags: ', ' , ', '</div>'); ?>
</div>
<?php } ?>
分类:碎语日期:2014-05-06 - 14:09:46作者:老谢
我陪你走到最后,能不能别想太多,会不会手牵着手,晚一点再到尽头
分类:折腾日期:2014-05-05 - 9:28:59评论:8条作者:老谢
评论一直显示自己的头像很蛋疼,想解决这个问题很久了,一直没动力,现在趁着刚换vps有动力,抓紧折腾,完事以后又是很久很久的懒得折腾,D2主题默认的评论调用一个单独的文件做评论,实在看不懂sql,得了,重新折腾评论吧,新的修改后的评论调用如下,如果是D2主题的朋友,可以直接拿过去用:
<div class="recent-comments">
<h3>最新评论</h3>
<ul>
<?php
$show_comments = 10; //评论数量
$my_email = "your@mail.com"; //获取博主自己的email
$i = 1;
$comments = get_comments('number=200&status=approve&type=comment'); //取得前200个评论,如果你每天的回复量超过200可以适量加大
foreach ($comments as $rc_comment) {
if ($rc_comment->comment_author_email != $my_email) {
?>
<li><dl><dt><?php echo get_avatar($rc_comment->comment_author_email,24); ?><?php echo $comment_author; ?></dt><dd><h5><a href="<?php echo get_permalink($rc_comment->comment_post_ID); ?>#comment-<?php echo $rc_comment->comment_ID; ?>"><?php echo mb_strimwidth(convert_smilies($rc_comment->comment_author.":".$rc_comment->comment_content),0,45,"..."); ?></a></h5></dd></dl></li>
<?php
if ($i == $show_comments) break; //评论数量达到退出遍历
$i++;
} // End if
} //End foreach
?>
</ul>
</div> |
<div class="recent-comments">
<h3>最新评论</h3>
<ul>
<?php
$show_comments = 10; //评论数量
$my_email = "your@mail.com"; //获取博主自己的email
$i = 1;
$comments = get_comments('number=200&status=approve&type=comment'); //取得前200个评论,如果你每天的回复量超过200可以适量加大
foreach ($comments as $rc_comment) {
if ($rc_comment->comment_author_email != $my_email) {
?>
<li><dl><dt><?php echo get_avatar($rc_comment->comment_author_email,24); ?><?php echo $comment_author; ?></dt><dd><h5><a href="<?php echo get_permalink($rc_comment->comment_post_ID); ?>#comment-<?php echo $rc_comment->comment_ID; ?>"><?php echo mb_strimwidth(convert_smilies($rc_comment->comment_author.":".$rc_comment->comment_content),0,45,"..."); ?></a></h5></dd></dl></li>
<?php
if ($i == $show_comments) break; //评论数量达到退出遍历
$i++;
} // End if
} //End foreach
?>
</ul>
</div>
继续阅读…
分类:碎语日期:2014-05-04 - 23:55:52作者:老谢
折腾的差不多了,吐槽的样式似乎勉强能看了,就这样了,以后慢慢再改。。。
分类:乱七八糟日期:2014-05-04 - 21:49:15评论:8条作者:老谢
晚上发现T410的左边喇叭不响了,因为在宿舍没有音响,也没有买音箱的打算,平时用内置的喇叭用的频率很高,突然只有一边有声音让我很不爽,于是乎下单买了个对喇叭,虽然卖家说是原装的,但是看着做工应该是做作坊的货,顺便买了套新的螺丝,老的螺丝有几颗都快拧花了,不能亡羊补牢嘛,要是真花了就麻烦了,而且还得再出一次运费。。又是从深圳发,漫长的等待。。
继续阅读…
最新评论
老何:不至于跌得这么狠吧
Andy烧麦:这些大厂都能提供必要的售后
王光卫博客:小米生态还是比较丰富
空空裤兜:在天猫买的利维斯顿,阿里智能APP...
林羽凡:我突然发现,你也记录了很多博文了。
菊座:小米的东西还行
zwwooooo:一般电器产品都jd,就是想售后身心
zwwooooo:能随便搞个公司玩玩也算是实力选手
大D:坚持就是胜利哈哈哈
老麦:看着那一排日志存档,老前辈了啊。