Facebook Timeline Privacy Settings

Facebook Timeline Privacy SettingsGetting your Facebook Timeline Privacy Settings updated is easy to do with just a few clicks. Facebook’s Privacy FAQ section can be overwhelming to read, but here are a few simple changes to make now.

Find Facebook Timeline Privacy Settings

On the upper right of your Facebook page, click the little down arrow  and choose >> “Privacy”
Now that you are in the Privacy area, look around and make some changes. Most of the settings are common sense. If you do nothing else, set “Control Your Default Privacy” to a setting that makes you comfortable. “Public” means that everyone on Facebook can see everything that you post.  Also, be sure to take a look at the following settings:

Disable Friends Can Check You Into Places

Sounds innocent enough, but this setting can be used by bad guys to gain information about you and where you live. Turning off this setting is a no-brainer. Under “How Tags Work” >> “Friends can check you into places” >> Choose “off”.

Review Your Facebook App List

When you approve a Facebook app, you are typically giving it all your information: your personal information, your friends list, everything.  Look at the apps you have approved with a critical eye and make sure that the apps listed are worthy of having your valuable information. Under Privacy Settings >> “Apps and Websites ” >> “Edit Settings”.

Facebook 3rd Party App Settings

You can approve 3rd party apps, but your friends can approve apps too and give your personal information to their apps – and your friends may not be as particular or as discerning as you are. At least you can decide how much of your information you are going to let them drag along with them and give to any apps that they approve. Under Privacy Settings>> “Apps and Websites ” >> “How people bring your information into apps they use” >> “Edit Settings”. Your birth date is private information that bad guys can use, so uncheck that box at a minimum.

Facebook Timeline Privacy 3rd party apps

Enable a Secure Connection for Your Facebook Profile.

Does this mean that little green men are sitting outside your house trying to break into your Facebook account? No. But a secure Facebook connection is generally safer, especially if you login to Facebook while in a restaurant or at Starbucks. In the upper right corner click on the down arrow >> “Account settings”. In the left sidebar select “Security” >> “Secure Browsing” >> “Browse Facebook on a secure connection when possible”.

Setting Up App Passwords

It is possible to use a special app password when you are setting up a new 3rd party app so that you don’t have to use your Facebook account password. To set this up, click on the down arrow >> “Account settings”. In the left sidebar select “Security” >> “App passwords” >> “generate app passwords”.

Check Out Your Page in Public Search

When you are happy with your settings, take a look at what other people see when they find your profile via public search (if they are not a friend). Under “Privacy Settings” >> “Public Search” >> “Edit Settings”.

As Facebook continues to make changes to their web site, it is important to always check your profile settings from time to time to ensure your privacy is being protected.

Visit Bigfin.com

Share
Posted in Facebook, Social Media | Tagged , | Leave a comment

Post Facebook to Twitter

Post Facebook to TwitterDo you want to post your Facebook to Twitter at the same time? Would you like to link these two accounts together to maximize your audience and get your message out there faster? No need to rewrite the same message twice or use a third party application. It’s easy to post to Twitter directly from Facebook and we’ll show you how!

Post Facebook to Twitter Using These Steps :

1. Login to Facebook
2. Open a second browser
3. Login to twitter

4. Click on the link  https://www.facebook.com/twitter/ and make sure that Facebook is connecting to the account that you intend to connect.

5. Edit any settings that you wish to change like Status Updates, Photos, Video Links, Notes and Events.

 

 

 

 

 

 

 

6. Click on the Link to Twitter button.

That’s it! Your Facebook will now automatically post to your Twitter account whenever you post on your connected Facebook profile.

Visit Bigfin.com

Share
Posted in Facebook, Social Media, Twitter | Tagged , , | Leave a comment

301 Redirect GoDaddy

Do you want to 301 redirect mydomain.com to www.mydomain.com in order to prevent canonical problems with the search engines? It is possible to 301 redirect GoDaddy hosting, but at the time of this post, GoDaddy help files do not clearly explain how to get this done if your domain is not registered with GoDaddy, but you are still using them for hosting.

301 Redirect for Linux Hosting

If you have Linux hosting, GoDaddy help files say that they support .htaccess. To make your .htaccess file, open Notepad and copy / paste the following code:

RewriteEngine on
rewritecond %{http_host} ^mydomain.com [nc]
rewriterule ^(.*)$ http://www.mydomain.com/$1 [r=301,nc]

Replace mydomain.com with the domain name that you want to redirect. Then you need to save your file:
file >> save as >> .htaccess
When you save your file, choose save as type “All Files” from the drop down menu at the bottom in Notepad. This prevents Notepad from turning your .htaccess file into a text file. Finally, using an ftp client, upload your .htaccess file onto the server where your homepage is located. Test your website to make sure that it is working.

Windows 7 Server Hosting

If your GoDaddy hosting is on Windows 7 Server, GoDaddy supports a web.config file for permanent 301 redirect. To get your redirect working, paste the following code onto Notepad:

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Redirect to WWW" stopProcessing="true">
          <match url=".*" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^mydomain.com$" />
          </conditions>
          <action type="Redirect" url="http://www.mydomain.com/{R:0}"
               redirectType="Permanent" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

Then replace mydomain.com with the domain name that you would like to redirect. Next, you need to save your file:
file >> save as >> web.config
Choose save as type “All Files” from the drop down menu at the bottom in Notepad. Upload the web.config file onto the server where your homepage is located using an ftp client.

If this doesn’t work for you, call a GoDaddy representative and ask about the type of hosting that you have. The exact code that your server supports may be slightly different.

Did this solve your issue?

Visit Bigfin.com

Share
Posted in Search Engines, SEO, Technology | Tagged , , , | Leave a comment