Wednesday, July 23, 2014

a workaround for wordpress blank line issue

Yoast wordpress SEO 

wordpress error on line 2 at column 6: XML declaration allowed only at the start of the document

There is a simple solution for this. It doesn’t require some crazy plugin. It doesn’t require hiring a super hacker geek to fix it AND it won’t require hours upon hours of Google’ing for the solution.

Now, if you want to try there are a few possible solutions. You can try:

  1. Reading this helpful article on the RSS Validator site:http://feedvalidator.org/docs/error/WPBlankLine.html
  2. Try the FIX RSS FEED plugin for WordPress (didn’t work for my clients site at all)
  3. Paying someone lots of money [like me Wordpress Remove Blank Line From RSS Feed   wordpress error on line 2 at column 6: XML declaration allowed only at the start of the document ] to do it for you.

Or you can simply do this yourself. It’s REALLY really simply and only require one file upload and one line of code. I’ll guide you through the whole process.

1) FIRST. Download the following filehttp://wejn.org/stuff/wejnswpwhitespacefix.php.

If you’re a geek you can check it for yourself, but I (Piotr Krzyzek) assure you this file is Virus free. If you don’t trust that file, you can download the exact same file from my server which I won’t change at all. So you can 100% rest assure that this file is safe from my server. You can get it HERE from my server. But if you download it from my server, rename the file from the “.ph” extension to “.php” so that it will work on your server too.

2) After downloading, upload the .PHP file into your WordPress site ROOT directory. This means wherever the wp-config.php file is. Do NOT upload it into the themes folder, NOR the plugins folder. Only the root directory.

If you don’t understand that, it’s ok. Leave a comment or poke me a twitter and I’ll explain it better.

3) EDIT your index.php file and add the following right after the first line:

include("wejnswpwhitespacefix.php");

So at the end, your index.php should look something like this:


<?php
include("wejnswpwhitespacefix.php");
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>

That’s of course a condensed version of the index.php file and your’s will probably have lots of comments and stuff in it. But the important thing is to add the include code right at the top.

Saturday, July 05, 2014

Create swap page on Amazon AWS EC2 instance

AWS EC2 instance doesn't come with swap partition. In some cases we have to create one. But need to mention monthly EBS IO costs probably high. 


A fix for this problem is to add swap or paging space to the instance.

Paging works by creating an area on your hard drive and using it for extra memory, this memory is much slower than normal memory however this is much more of it available.

To add this extra space to your instance you type:

  sudo /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024  sudo /sbin/mkswap /var/swap.1  sudo /sbin/swapon /var/swap.1  

If you need more than 1024 then change that to something higher.

To enable it by default after reboot, add this line to /etc/fstab:

  /var/swap.1 swap swap defaults 0 0