Friday, October 24, 2014

How to Embed Dailymotion Private Videos?

Dailymotion is one of the most popular video database website just like Youtube.

Dailymotion Users can upload on its server's database as well as can download the videos from the server.

Dailymotion has also same features just like youtube such that videos can be uploaded privately as well as publicly. But there is different between uploading videos privately and publicly.

Videos uploaded publicly can be easily embedded through its watch page, but there will no option to embed, if a videos are private.

So, here i am for sharing this tips to embed dailymotion private videos.

Step 1:- First go to the private video link (eg. http://www.dailymotion.com/video/k1OrUPl69PnL9p99696 )

Step 2:- Now copy the same text as colored in red from your private videos link.

Step 3:- here is the embedded source

<iframe frameborder="0" width="630" height="420" src="http://www.dailymotion.com/embed/video/here-is-your video?syndication=111525?logo=0&autoPlay=1&quality=720"></iframe>

Step 4:- Now replace here-is-your video with your copied text in above step 1.


Now you are done... 

You can also embed the all Dailymotion videos with above steps.
Read More »

Friday, October 3, 2014

How to stop Blogger Blog from redirecting to country-specific URLs

Blogger and Country-Specific Domains

My traffic logs suggest that country-specific redirection in Blogger is now live in at least 15 countries. Here’s a complete list:

India [blogspot.in], Australia [blogspot.com.au], UK [blogspot.co.uk], Japan [blogspot.jp], New Zealand [blogspot.co.nz], Canada [blogspot.ca], Germany [blogspot.de], Italy [blogspot.it], France [blogspot.fr], Sweden [blogspot.se], Spain [blogspot.com.es], Portugal [blogspot.pt], Brazil [blogspot.com.br], Argentina [blogspot.com.ar], Mexico [blogspot.mx]

This country-specific URLs make a negative impression to the site linking and Ranking of a site.

How to Stop Blogger from Redirecting to Country-Specific Domains ?

1. First Go to Blogger Dashboard >> Template  >> Edit HTML

2. Now Search for the <head> tag using Ctrl+f.

3. Now copy the below code just after <head> tag.

<script type="text/javascript">
var blog = document.location.hostname.split(".");
if (blog[blog.length - 1] != "com") {
var ncr = "http://" + blog[0] + ".blogspot.com/ncr";
window.location.replace(ncr + document.location.pathname);
}
</script>


4. Now save the template and you are done.

Read More »

Thursday, October 2, 2014

Download and install microsoft windows 10 technical preview


Microsoft has developed the Windows 10 just after windows 8.1, skipping windows 9.

Windows 10 Technical Preview in now available for Download from microsoft official website, It is a technical preview thus keep in mind that it is not a stable version of operating system.

Download and install windows 10 technical Preview.

1. Download either 64 bit or 32 bit version of windows 10 technical preview.

 64 bit version of windows 10 technical preview
32 bit version of windows 10 technical preview

If you still confused about 32 bit or 64 bit, download from an alternative link

Product Key for Windows 10 technical Preview: NKJFK-GPHP7-G8C3J-P6JXR-HQRJR

The files you will be downloaded in an ISO format, so burn that ISO image to DVD drive or Pen Drive from Power ISO.

If you feel any dificulties, just comment us below.

Read More »

Wednesday, October 1, 2014

How to redirect Blogger 404 Error Page (Page Not Found) to Homepage

Most of the Bloggers starts their blog from Blogger Platform and starts posting number of articles.

Sometime, you may have changed the URL, then indexed URL on search engines forward visitors to the old URL, this automatically redirects to the 404 page.

Sometime, it may also happen when the visitors misspelled the URL.

When you have a popular blog this make negative impression to the blogs because of not clicking back and homepage button and leaves the site forever. Now we have to redirect 404 Error page to Homepage and this will make the good impression and greatest potential  users of our blog.


How to redirect 404 Error page to Homepage?

Step 1:- First Go to Blogger Dashboard >> Setting >> Search Preference >> Custom Page Not Found.



















Step 2:- Now copy the below code to the Empty Box.

Sorry, the page you're looking for in this blog does not exist.
You will be redirected to homepage shortly.
<script type = "text/javascript">
BSPNF_redirect = setTimeout(function() {
location.pathname= "/"
}, 7000);
</script>
now click on save changes.

Note:-

In my case, I have used 7000, which means you will be redirected to Homepage in 7 seconds.

Read More »