- Published on
New Posts on Github Pages with Octopress not Showing on your Blog
- Authors
- Name
- Ruan Bekker
- @ruanbekker
So today I had the issue where new posts that was generated and pushed to github, not being displayed on my blog.
I was able to see the markdown pages on my github respository, but via the blog itself, getting 404's.
The Issue:
When I did a rake generate
I found the following error:
jekyll 2.5.3 | Error: invalid byte sequence in US-ASCII
Resolving the Issue:
After running the following, I was able to get rid of the error, and posts showing again:
$ export LC_ALL="en_US.UTF-8"
$ export LANG="en_US.UTF-8"