Showing posts with label Blogs. Show all posts
Showing posts with label Blogs. Show all posts

Saturday, 14 April 2012

How To Protect Images From Being Copied / Downloaded

In this post, I'll discuss some ways to protect images from being copied on the webpages. You spend a lot of time and hard effort to creating unique images for your website, and later other could download them, which is not fair. Do you want to protect your images from being copied? If yes, you are here at the right place. In normal speak, you can not protect your images 100% from being downloaded because a webmaster or any person who knows some coding, may steal your images from your websites. Therefore, if you want 100% protection of your images from being copied, I would suggest you to use your watermark or your name on your images with transparency or don't put it on the internet (joke!). However, you can protect your images from being copied by the persons who are not webmasters.


protect image from being copied or downloaded
Protect Images from being copied or Download

If you Google it "how to protect images from being copied". You'll across with a technique which shared the most on the web by disabled to right click on the WebPages, but I think disabled to right click is not a good idea. Most of the users visit your webpages for information purpose only and very small no. of visitors visit your website for stealing your images so most of peoples feel insulting if you disabled right click on webpages and also it will not give you a professional work. Although, you can disable right click only on the images of your web pages not overall part of your web pages as on the part of your content and your links, but if you disable right click, users may drag and drop images from your webpages to their desktop.
We will discuss some techniques for protect your images from being downloaded as follows,

  1. Protect Images From Being Copied By 'img' Tag.

  2. Protect Images From Being Copied By 'table' tag.

  3. Protect Images Form Being Copied By Disable Right Click Only On Images.


I like the above first and second methods for protection of images in web pages. If you apply first or second method to protect your images from being copied and an image theft comes up on your website, and drag and drop your images to his/her desktop. They will shock and think what it is because they would not get any image to desktop after dragging or after to select the save as option. Let us first in very short description I tell you that what I would try to apply here.

"Firstly, takes an image which would you like to prevent from being copied and note down its width and height, and now create a transparent image of the same width and height as your main image. Now, upload your main image to your post, and then upload your transparent image adjacent to your main image. Now, we will try to move up your transparent image onto the main image. If succeed, everyone can see the main image because the upper layer on the main image is transparent, but if someone drags and drop your images from your web to their desktop, then always your transparent image will move on and your theft shocked each time. That's it!"

Updated: Please read the above message first which is in the quote.

If you want to protect all images on your website, then creating different transparent images for each image is waste of time. Now, we'll create only one transparent image of width and height each 1px, which will save image size too. We will use this transparent image with every image of our websites because we can change our transparent image's width and height via inline style, and all the procedure is same as we mentioned in above quote. Now we start the process.

How To Protect Images From Being Copied / Downloaded By img Tag


If you don't know that how to create the transparent image then simply you can download this transparent image of width 1px and height 1px by clicking on Transparent Image (wait 5 second and click on Skip Ad at the top of the right side). Save this image to the desktop, and upload it into your blog, or you can use free image hosting sites as imageshack.us and grab the direct link to use the image into your blog. You can also host your images into your blogger for free with unlimited bandwidth, to know more about it click on upload high quality images to Blogger.
Now look at the following code.
( Let we use here main image of 200px and height 200px. You may use different size of your image. )

***Here we are using border on the transparent image for better explanation because we could not be able to show you the location of transparent image without borders.
--> Border of Transparent image = Black;

<div style="float: left;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbBlmLXHPmVayuLZXaPBxvbahbjdvt1pCfCzoeGc7PD4CnTQWcV_Ot5begUtpa7pdo2mlw8LoddWLQBuauT6GNfbAiU3AYtF46KSAOFh78ue8-t1JE-XgSiH_rtBpaShxCh1fvzpD9u1hB/s1600/how+to+protect+images+in+websites.png" style="width: 200px;height: 200px;"/><img src="http://img836.imageshack.us/img836/5371/protection.png" style="border: 1px solid #000; width: 200px; height: 200px; " /></div>
Code 1.0

*** Please read carefully this step: In the above code, we have included two img tags as <img/><img/>. first one is for your main image and second one is for your transparent image, and make sure don't have no space both between both img tags( as <img/>SPACE<img/>) or no enter key ( as <img/>LineBreak<img/> ). Otherwise, these images will not be adjacent and this technique will not work.

*** Make sure in both img tags the height and width must be same or you can increase the width and height of the transparent image section but your main image's height and width must not be less than transparent image size. Otherwise, transparent image could not properly move up on the main image.

*** If you want to add border on main image then simply add the code for adding the border as we created in the transparent image i.e., border: 1px solid #000;

*** You can see in the second img tag we did expand 1x1 px image to 200x200 px image by adding width and height attribute in to the inline style sheet in transparent image.


The Preview of the above code will be as follow,


Now we will try to shift a transparent image hover to the main image by applying margin property on to the  transparent image and also make sure that the layer of your transparent image must be outer than the layer of the main image. It means that we have to use negative margin property on the transparent image. Since, our transparent image is in the right position of the main image. Now, we will try to shift our transparent image from right to left by using negative margin-left property, such as [ margin-left: -(width of main image)px; ], into the inline style sheet of transparent image. Let's adding this attribute into the above code 1.0.

*** Here the width of main image is 200px so we will use margin-left: -200px;
*** If you use the border for your main image then you must be set margin-left: -(width of main image + width of right border of main image + width of left border of main image); , let us we use "border: 1px solid #000;" into the main image, then this border width also includes into the width of main image so 1 px increases by left border and 1px increases due to right border of the main image, so we have to set margin-left: -202px;

so the above code will be changed to,

Code 1.1
<div style="float: left;">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbBlmLXHPmVayuLZXaPBxvbahbjdvt1pCfCzoeGc7PD4CnTQWcV_Ot5begUtpa7pdo2mlw8LoddWLQBuauT6GNfbAiU3AYtF46KSAOFh78ue8-t1JE-XgSiH_rtBpaShxCh1fvzpD9u1hB/s1600/how+to+protect+images+in+websites.png" style="width: 200px;height: 200px;"/><img src="http://img836.imageshack.us/img836/5371/protection.png" style="border: 1px solid #000; width: 200px; height: 200px; margin-left: -200px; " /></div>

let's see the preview,


Sound like good. Your transparent image has completely moved up onto the main image. Can you steal this image? Try it by drag and drop to your desktop or right click on the image and save it to your desktop. What will you get? I think the transparent image only. :)

If you want to add this image to the right side, then simply change"float:left;" to"float: right;" into the above code.

if you want to add this image to the center of your post, then change "float: left;" to "text-align: center;" into the above code. That's it!

*** Where could you paste these codes, please see the instruction of bottom of this post.

*** Basically the position for your images is floated, so if your image is in float left, then your content will be in the right side, the exact example is on the above image (image in left and content in right). In this case you have to need some space between your content and image so replace the following code <div style="float: left;">  in Code 1.1  by <div style="float: left; margin:5px;"> .

*** If you don't wish to write adjacent to the right or left image, then simply add the following code just after the Code 1.1
<div style="clear:both;"></div>

You done!

How To Protect Images From Being Downloaded / Copied By Table Tag


Now, here we will protect images from being copied by using table tag, and make sure to note down the width and height of the main image it's property. I will suggest you to use the above first method for protecting your images. Since, it is also a possible solution for protecting your images from being downloaded so I am also considering this case. If you have a little knowledge about HTML table tag, then you could easily understand what I want to explain so let's with a very short description take a look at this method.
"Firstly, we will create a table and in that table, we will create a row, and then in that row we will create a column (now the game start!). In that column, we will upload my main image as a background image, and then we will insert a value in that column as my transparent image, which will cover the background image and ... and what? End the process. That's it!"
Now look at the follow code,

*** Now, we will not use the border of transparent image. I think you will have familiar with.
*** Since, here we will show the transparent image to its original background, so don't need to margin or padding here.
*** Here, my main image width=249px and height=200px, so we will make the same size of transparent image.

Code 2.1

<table>
<tr>
<td style=" background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbBlmLXHPmVayuLZXaPBxvbahbjdvt1pCfCzoeGc7PD4CnTQWcV_Ot5begUtpa7pdo2mlw8LoddWLQBuauT6GNfbAiU3AYtF46KSAOFh78ue8-t1JE-XgSiH_rtBpaShxCh1fvzpD9u1hB/s1600/how+to+protect+images+in+websites.png) no-repeat;"><img src="http://img836.imageshack.us/img836/5371/protection.png" style="height: 220px; width: 249px;"/>
</td>
</tr>
</table>

Below is the preview of the above code,
*** Please make sure, there must not be any space between <td><img/> tag.


***Now, let's about the positions of your images into your post, such as left, right or center including the adjacent content to your images or not. We have created a simple table for your need. Take a look,
Want\Do Position What have you to
replace in Code 2.1
from which have
you to replace
Image with adjacent
content
Left <table> <table style="float: left;">
Right <table> <table style="float: right;">
Image without adjacent
content
Left <table> <table style="text-align: left;">
Right <table> <table style="text-align: right;">
Image Center <table> <table style="margin-left:auto; margin-right:auto;">

You done!

Now the third method that is how to protect images from being copied by disable right click only on images on your web pages. We will create a new post for it, because this post has already been lengthy. The second factor is that I am in very sleepy mood, and the light rays of the sun are knocking my door ( LOL).

Where can you paste these codes:

You can paste these codes to anywhere, where HTML allowed. Check out the following steps,

  • In Blogger Post: Sign in to Your Blogger Dashboard -->click on How to protect images from being downloaded Create new post --> select HTML mode and paste the above code.
  • In Blogger Sidebars: Go to Blogger Dashboard --> Layout(Under more options) --> Add a Gadget(choose from sidebars) --> HTML/Javascript(Choose under pop up window) and paste your code and click on Save.

Hope! You enjoy this tutorial and if you have any doubt, then can feel free to ask me via comments.

IF THIS TRICK IS HELPFUL FOR YOU THAN
PLEASE DON'T FORGET TO CLICK ON SUBSCRIBE BUTTON.........!

Thursday, 8 December 2011

Top 25 Websites in terms of Traffic

  • 1

    Google.com

    google.com
    World's best search engine

  • 2

    Facebook

    facebook.com
    A social utility that connects people, to keep up with friends, upload photos, share links and ... Morevideos.

  • 3

    YouTube

    youtube.com
    YouTube is a way to get your videos to the people who matter to you. Upload, tag and share your... More videos worldwide!

  • 4

    Yahoo!

    yahoo.com
    A major internet portal and service provider offering search results, customizable content, cha... Moretrooms, free e-mail, clubs, and pager.

  • 5

    Baidu.com

    baidu.com
    The leading Chinese language search engine, provides "simple and reliable" search exp... Moreerience, strong in Chinese language and multi-media content including MP3 music and movies, the first to offer WAP and PDA-based mobile search in China.

  • 6

    Wikipedia

    wikipedia.org
    A free encyclopedia built collaboratively using wiki software. (Creative Commons Attribution-Sh... MoreareAlike License).

  • 7

    Blogspot.com

    blogspot.com

  • 8

    Windows Live

    live.com
    Search engine from Microsoft.

  • 9

    Twitter

    twitter.com
    Social networking and microblogging service utilising instant messaging, SMS or a web interface..

  • 10

    Amazon.com

    amazon.com
    Amazon.com seeks to be Earth's most customer-centric company, where customers can find and disc... Moreover anything they might want to buy online, and endeavors to offer its customers the lowest possible prices. Site has numerous personalization features and services including one-click buying, extensive customer and editorial product reviews, gift registries, gift certificates, wish lists, restaurant and movie listings, travel, and photo processing.
  • 11

    QQ.COM

    qq.com
    China's largest and most used Internet service portal owned by Tencent, Inc founded in Nov... Moreember, 1998. Presently, Tencent is aiming its operations at the strategic goal of providing users with a "one-stop online life service". Tencent's Internet platforms QQ, QQ.com, QQ Games, and PaiPai.com have brought together China's largest Internet community. Tencent's communications and information-sharing services include QQ.com, QQ Instant Messenger, QQ Mail, and search engine SOSO. Linked up with heavily used features such as forums, chat rooms, and QQ Groups, Tencent's Qzone has grown into China's largest personal Internet space. These services foster group interaction and resource sharing. Virtual products such as QQ Show, QQ Pet, QQ Game, and QQ Music/Radio/Live have been successful in providing entertainment and customization options to users. Mobile phone users can take advantage of a number of value-added wireless services. Tencent's PaiPai.com is a C2C on-line shopping platform that seamlessly integrates into Tencent's other community platforms.As of June 30th, 2009, the number of registered QQ Instant Messenger users has reached 990.0 million. Active users numbered at 448.0 million. Peak concurrent users have reached 61.30 million. QQ Games platform counted about 6.2 million users simultaneously on-line. QQ.com has become China's most visited Internet portal website. PaiPai.com has also become China's second largest Internet shopping platform.

  • 12

    淘宝网

    taobao.com
    包括电脑通讯、数码、男装、女装、童装、化妆品、书籍音像、运动用品、游戏装备等各种商品的买卖,还有相关的社区交流,同时提供支付宝网上交易安全保证系统。... More

  • 13

    MSN

    msn.com
    Portal for shopping, news and money, e-mail, search, and chat.

  • 14

    LinkedIn

    linkedin.com
    A networking tool to find connections to recommended job candidates, industry experts and busin... Moreess partners. Allows registered users to maintain a list of contact details of people they know and trust in business.

  • 15

    Yahoo! Japan

    yahoo.co.jp
    Japanese version of popular portal site.

  • 16

    Google India

    google.co.in
    Indian version of this popular search engine. Search the whole web or only webpages from India.... More Interfaces offered in English, Hindi, Bengali, Telugu, Marathi and Tamil.

  • 17

    新浪新闻中心

    sina.com.cn
    包括即日的国内外不同类型的新闻与评论,人物专题,图库。

  • 18

    WordPress.com

    wordpress.com
    Free blogs managed by the developers of the WordPress software. Includes custom design template... Mores, integrated statistics, automatic spam protection and other features.

  • 19

    Google

    google.de
    Suche im gesamten Web, in deutschsprachigen sowie in deutschen Sites. Zusätzlich kann gezielt n... Moreach Bildern, Videos und News gesucht werden.

  • 20

    eBay

    ebay.com
    International person to person auction site, with products sorted into categories.

  • 21

    Google谷歌

    google.com.hk
    谷歌搜索在中国的官方网站。

  • 22

    Яндекс

    yandex.ru
    Поиск информации в интернете с учетом русской морфологии, возможность регионального уточнения. ... MoreПараллельный поиск по новостям, картинкам, товарам, блогам, адресам организаций.

  • 23

    Google UK

    google.co.uk
    The local version of this pre-eminent search engine, offering UK-specific pages as well as worl... Mored results.

  • 24

    Google 日本

    google.co.jp
    多言語対応サーチエンジンの日本版。ウェブ、イメージおよびニュース検索、Usenet掲示板。
  • 25

    Google France

    google.fr
    Version française du moteur de recherche. Propose des outils et des services pour les internaut.

Sunday, 23 October 2011

Upload Files To Bloggers

There are many inquiries regarding the types and sizes of files which you can upload to Blogger. There are some limits and I have tried to list all here......


TYPES OF FILES


You can only upload image files to your Blogger blog. These can only be uploaded through your blog posts. To do this Login to Dashboard and click on "+New Post". The Post Editor will open. In the top frame of the Post Editor just mouseover all the icons. This will show the tooltips and click on the square bluish icon (Add Image). The upload Image dialog box opens. Click Browse under Add an image from your computer to choose the picture file on your PC. Click on file to highlight it and then click Open. You can also add an image from the web. Paste the URL of your image in the URL text box under "Or add an image from the web". Then choose the position you want the image to be in and the size of the image and click Upload. See Picture below


Click on picture to enlarge it.

SIZE OF FILES


There is a total limit of 300MB on the pictures you are uploading through Blogger, Picasa, or Hello to a free BlogSpot blog. If it is a ftp blog then it is space on your server you should take into account. If you are posting pictures through Blogger Mobile there is a limit of 250K per picture. However there is no way to know whether this limit is approached until you break through it.

Individual pages of your blog are limited to 1MB size. Your main page may run into this limit so limit the number of posts on main page by going to Settings----->Formatting----->Show 4 posts on Main Page----->Save Settings. This will also speed up the loading of your blog.

There is no limit to number of blogs you have or number of posts you can make. Also there is no limit to number of comments. Individual posts do not have limit but may be limited by page-size as described above.


FREE HOSTING


To overcome the size and file-type limit in your free blog try uploading your pictures to a freehostlike Googlepages. You can create 5 sites in Googlepages with each site having free 100 MB space to host files. To upload create a Googlespace account and click on Upload in bottom frame of sidebar. See picture below :


If you cannot create a Googlepages account create a Google Group of your own. You can upload 100 MB of total files here also. Click on "Files" after clicking on Manage Group. Then click on Upload File button. See Picture below:


Thus you can upload image, PDF, MP3, WAV, DOC, TXT and any other files to these freehosts. You can also upload image files to other freehosts like Flickr, Photobucket, Imagehosting etc. To upload files to Flickr see Youtube and Flickr. After uploading the files place your mouse cursor over the filename and right-click and choose Copy Link Location. This copies the location/URL/link of your file at the freehost. Then paste it into this code in your blog :

<a href="LINK OF YOUR FILE AT FREE HOST">DOWNLOAD FILE</a>

When viewers click on "DOWNLOAD FILE" they will get a dialog box prompting the to download your file. In this manner you can also create an image link as described in Making Image Link.

Tuesday, 20 September 2011

How To Create Fake Pages


I will give some hacking lessons to budding hackers. This will tell you how to create fake pages. Here is how you create one. Let me show how you do for Google.com.

  • Open Google in a new tab or Click Here .
  • Now select "View" from menubar
  • Then select "Source"(IE) or "Page Source"(firefox).
  • This will show you raw html of the site in a notepad in case of IE. In firefox this will be visible in firefox.
  • Now You need To save this page.
  • Just select "Save page as " . Change save type as to "All Files". and save it as XYZ.html(anyname.html)
  • Now just double click on the html it will open in your browser. You will be get the exact replica of the google page
Only problem is the images are not visible. This is because most sites uses relative path. Just visit the actual page and save all images. Now upload it anywhere on the web. Just get the links of the images. In many cases even the css file(for how sites appear) are also relatve. You need to download them too (just type http:/ /_______._/__.css in the browser and the fill will be downloaded)
Go to the html file and Right click on it and select "OPEN WITH" notepad. Now If you know html job's done in a minute else it will have to use trial and error method.
Relative Path is one thing like this "/images/google.gif" you need to give the complete path names where ever possible like "www.google.com/images/google.gif". In case of images you may even replace these with your links.
Tip for those who dont know html : Html consists of tages image is represented as follows "< img. src="actual image link" /> Click here for Html Tutorials
Similarly change all relative path to actual path and the job done.
Now incase you are planning to use is for wrong purpose the replace path(link/URL) to any thing you want. If you are a hacker or Html programmer then you all ready know about this. But if are newbie to either hacking or html then this is a good exercises. Html programers use This frequently for getting source codes of websites but if use this for hacking you could land behind bar then dont say didn't warn you.

Want More Blog Traffic! Submit Your New Blog Here For Free


When your blog is new the only thing you want is traffic and the most easy, simple, best and successful methods are here mentioned below:
  • Leave a comment at the bottom of this post with your blog’s URL and describe your blog in a short paragraph.
  • Subscribe to my RSS feed (In return, I will help you to boost your traffic).
  • Subscribe to the other blogs’ RSS feeds.
  • Make sure you subscribe to the comments so that you get alerted on every new comment.
  • Do not post as Anonymous user, it will be considered as SPAMMING.
  • Every time a new comment is added, go and visit that blog! Do for others as you would have them do for you.
  • Stumble few posts from your blog.
  • Digg few posts from your blog.
  • Delicious few posts from your blog.
  • Write a post on your own blog about the new blogs you have found and link to them.
  • Write a post on your own blog, link to this post so others can participate and write about the new blogs you have found. Link to them.
Your Participation is must for this to Succeed

If you just submit your link and that all ... then et me clear you that nothing gonna happen.
Spend time visiting the other blogs, commenting and subscribing to their feeds. You will also get some traffic from my readers who have already been blogging for a while.

The more you give, the more you get.

I’d like to encourage my regular readers to spread the link to this post around: This is one of those the-more-the-merrier kinds of things. So please Share this post on Facebook, twitter, myspace, stumble, and bookmark at Delicious

NOTE: My comments are moderated. The following will be deleted or marked as spam
  • Automated blogs or splogs
  • Adult content blogs
  • Content about illegal activities
  • Hate speech
  • Anything that seems suspicious to me