- Need Help In Regards To An Article - Visit The Howbits Forum
Close Bar

Things To Check When Using Wordpress

Things To Check When Using Wordpress

I am writing this post as a result of my lack of due diligence. I am usually good at checking the important parts of a website to make sure everything is working and correct, but this little tiny thing that I forgot to check, went unnoticed until today.

So here I am, testing out some search engine ideas for my website, and I noticed in Google search that the description for howbits was way off, in fact it was nothing like what I had put into the all in one SEO plugin. So off I go, back to my website to investigate this weird issue and come to find out, when I changed website design I had forgotten to remove the default meta description and keyword code for the theme.

I learned that, all in one SEO loads it’s meta tags after the themes header information, so if a meta tag is used before all in one SEO meta tags, the first meta tags are shown and not the later ones. As a result all in one SEO description was not showing up, and my website description was the default blog description.

So for anyone who has a Wordpress website, who uses themes, and the plugin All in one SEO, you may want to follow this list of what to remove out of your themes header file. Read More »

Googles Newest Toy - Google Sky

Googles Newest Toy - Google Sky

This is awesome, Google is now offering a Google maps of outer space. I actually spent a lot of time looking at the Historical overlay of the stars, funny to see the map of the sky from the old times.

Here is a quote from the website, I recommend checking it out.

Traveling to the stars has never been easier

To help you explore the far reaches of our universe, we have teamed up with astronomers at some of the largest observatories in the world to bring you a new view of the sky. Using Google Maps this tool provides an exciting way to browse and explore the universe. You can find the positions of the planets and constellations on the sky and even watching the birth of distant galaxies as seen by the Hubble Space Telescope.

We are particularly excited about the ability to view the universe at different wavelengths, to see how it would look if our eyes worked in the x-rays or infrared. As you explore these new layers, play with the transparency to blend between the different wavelengths and see how different parts of the universe light up at different wavelengths

If you are interested in what’s happening on the sky tonight or over the next few months then check out the podcasts from Earth and Sky or search for the position of your favorite planet.

Google Sky

About Google Sky

I am Legend The Real Ending

So as I was making the rounds today on the internet, I noticed a link to the Real Ending of I Am legend, that said it was better then the original ending of the movie. Out of curiosity I click the link and proceed to watch the last 10 minutes of I Am legend. So in my opinion, yes the original ending of I Am Legend, sucked and it ruined the movie, but this alternate ending is far superior and it’s actually really good. So for any movie buffs out there that want to see the good ending to I Am Legend, here is the link to -

Must Watch: I Am Legend’s Original Ending - This is Amazing

 

Mythical Conceptions

Mythical Conceptions

Myth: Sushi is raw fish.

Fact: Technically, sushi isn’t fish at all. The Name of this Japanese dish refers to the vinegared rice, which often is topped with raw seafood. But many other foods can top the sushi, too–vegetables, eggs, or cooked meat of any variety–and it will still be called sushi.
 

Myth: As the saying goes: "Beer before liquor never sicker. Liquor before beer, you’re in the clear."

Fact: There is no scientific basis to this aphorism. Besides, it’s not the order in which you drink the alcoholic beverages that makes you sick; it’s the amount you drink.
 

Myth: Every human is connected to every other human by "six degrees of separation."

Fact: The concept is based on a 1967 study by Yale psychologist, Stanly Milgram. His subjects, found via newspaper ads in the Midwest, were asked to locate complete strangers by sending letters to their own friends, asking if they knew the stranger. If they didn’t, the friends were asked to send the letters along to their friends, and so on, until one of the initial letters reached the stranger. It took an average of six steps, or "six degrees," leading to the pop culture phrase.

It turns out the research was flawed. A 2002 follow-up study by psychologist Judith Kleinfeld of the University of Alaska found that Milgram’s original subjects were "particularly sociable" and, in truth, only about 30% of the strangers were found. Not only that, the average degrees of separation was nine, not six. Kleinfeld’s conclusion: We don’t live in a "small world," as Milgram suggested–it’s more like a "Lumpy oatmeal" world, in which a very few people are well connected, but most are not.

Myth: Urinating on a Jellyfish sting will ease the pain.

Fact: While experts agree that running saltwater over a sting is better than freshwater (which will actually make it hurt more), just because urine contains salt doesn’t mean it helps. Why not? The concentration isn’t nearly high enough. The best cure: Time. The pain from the sting will subside in about 24 hours.

Decoding Encrypted PHP Files

Since I was just dealing with an encrypted footer.php file for the theme I use, I thought I would post how to decode encrypted Php files. This took me a few hours to find a source that actually worked. The most common way to decode a file is to create three files, decrypt.php, encode.txt, and decode.txt, to bad this didn’t work for me, and time consuming trying to figure out why it didn’t work. So as a result I found an easier way to get the information from encrypted php files.

I am posting this for legal use, if you use this for illegal use, keep it to yourself, because that’s not the reason I am putting this on here. I am posting it to keep WP theme creators honest, and not loading up the footer with links to webpages you do not support. In the case of this theme, they had lots of links to online casino and gambling websites. I have no problem keeping a link on my page to the theme creators website and Wordpress.org, but anything else is pushing it.

Update - Try this method before proceeding to the code below. Change the php encrypted code from eval to Echo and then open the file in a browser, when the page comes up, goto view, page source, and this should be the exact code for the encrypted information. If this did not work, then try the code entered below.

Note: If the code is $_F=__FILE__;$, this is another type of encoding that will not work with this code, it is encoded using Source Cop. You are welcome to paste the code on howbits forum, you do not need an account to post on there. I check it daily and I will help out as best that I can.

This is the easiest way I found to get the encoded information

Copy this code into notepad, or whatever editor you prefer to use. Read More »