Facebook Removes Custom Landing Tab Option

Update: Facebook relented and restored the custom landing tab option for pages. Hopefully it will remain.

Facebook changes their policies more often then most folks change their socks! Apparently, earlier this week, Facebook removed the ability to easily select a custom landing tab for new visitors to your Facebook page; unless you have at least 10 thousand fans/likes for your page! Then if you’re a super Facebook fan page connector with at least 10 thousand fans, you then will have ability to select a custom landing tab.

This is huge! Why?

[Read more...]

Blog Site Security: Is Your Blog Secure?

This week I heard of more folks who had their blogs hacked. While the first impulse is to blame the blogging platform, the truth is there was a security loophole that made it easier for a hacker to gain access to these blogs.

Those loopholes usually include one (or all) of three things:

[Read more...]

3 Solutions: WordPress 2.8 Visual Editor Not Working

WordPressIf you’ve recently upgraded to v2.8, you may have noticed the visual editor is no longer working. You’re not alone. Here’s a few things to check that should get you up and running again.

1. A plugin that isn’t compatible. Solution #1: Try deactivating all your plugins. See if the visual editors is working after you do that. If so, re-activate your plugins one at a time, checking the visual editor after each one to make sure it’s still working. When it starts working after you re-activate a plugin, you’ll know that plugin is one of the culprits; however, continue checking as you re-activate, because more than one plugin could cause a problem.

2. Not all of the visual editor files were properly copied. Solution #2: You can log into your wp-admin go to Tools > Upgrade and click the Re-Install Automatically button. That may resolve the issue for you.

3. Network cache issueSolution  #3: This is the fix that worked for me personally; I added a line of coding to my wp-config.php file and that instantly resolved the problem for me when none of the above worked. Log into your site via FTP and download the wp-config.php file to your computer. Then open this file in Notepad or any html or text editor is fine.

Add this line of code:

define( ‘CONCATENATE_SCRIPTS’, false );

Find this line of text in your wp-config.php* file:

//Change each KEY to a different unique phrase…

and copy/paste the code above it and save. Then re-upload the wp-config.php file to your site, overwriting the one that’s there. That’s it.

One of the above three fixes should resolve this visual editor issue for you.

__________________________________

*The wp-config.php file is located in the file where your main blog files are located. So if your blog is in a folder called /blog it’s right under that – if your blog is installed in the root, then it will be under the /public_html folder.