Wordpress Plugin:WP-ZoomImage With CopyProtect

I was searching for a proper script to zoom or pop out images neatly which are embedded in my wordpress pages. I came across fancyzoom script which does my job,but i need to integrate this script my wordpress.Also,another issue which is common in gallery sites or image linked sites is,copyright violence.So,I have written new plugin “WP-ZoomImage With CopyProtect” which does both,copyprotection for website owners and zoom out page codes.WP ZoomImage brings Integration of Copy Protect feature with FancyZoom which pops up images on a page without having to load an entirely new page.

WP-ZoomImage With CopyProtect

,

1.Pop Up images or Zoom out with a click.

2.Enable Message displayed to your user when he does fraudulent actions.

3.Disable Selection of you text and Right Click for users depending on the option.

4.You can see zoom effect automatically on any direct link to an image . * Any title=’…’ attribute in your link automatically turns into a caption.

You can pop up an image or thumbnail by just clicking on it and it will disappear when you click it again.It is demonstrated in the image shown below.

Download

wp-zoomimage-with-copyprotect.zip

Stable release till wordpress 2.9

How to install and use

* Extract wp-zoomimage-with-copyprotect.zip and upload the folder to the /wp-content/plugins/ directory
* Activate the plugin through the ‘Plugins’ menu in WordPress
* Go to Settings and then WP-ZoomImage to configure.


DONATE

PayPal - The safer, easier way to pay online!

Whatever be the amount you donate,it will be a great help to me to pay for the server costs.I will list you in donors section of the plugin below this post and also in my plugin settings page of next version release .reply here or mail to techtipsmaster@gmail.com

Donors of this plugin

Please donate and i will add your link.

Download

wp-zoomimage-with-copyprotect.zip

Stable release till wordpress 2.8

Suggestions ,Comments and doubts

If you have any suggestions or doubts,feel free to comment here and i will reply to you as soon as possible.Please leave mail id’s so that i can mail you back.Make your content copy protected and feel happy of it.

For bloggers and any other sites,make copy protected by referring Copy Protect your Websites or Blogs from Fraudulent Users

Installation and Usage help

The message is displayed when the user tried to copy.The message can be configured in the settings section of the plugin.

Shell Script Commands to Automate Server or Host Telnet Login Session

In linux,we usually come across repeated commands which we try to automate usinng shell scripts.One such major need arises,when we need to establish a telnet session to a system and perform some repeated commands in remote server or host.
So,In order to automate the telnet sessions,you just need to copy the following code in a file (say,node_login) and place it in the home directory.

#! /usr/bin/env expect
set ip [lindex $argv 0 ]
set slot [lindex $argv 1]
set timeout -1
set node_ip $ip
if {[llength $argv] == 1} {
spawn telnet 192.168.15.$node_ip
expect "login: "
send "root\r"
expect "Password: "
send "techtips\r"
expect "$"
}
if {[llength $argv] == 2} {
spawn telnet 192.168.15.$node_ip $slot
expect "login: "
send "root\r"
expect "Password: "
send "techtips\r"
}
if {[llength $argv] == 0} {
spawn telnet 192.168.90.103
expect "login: "
send "techtips\r"
expect "Password: "
send "techtips\r"
expect "$ "
}
interact

Now add the command to your .bashrc file in your home directory.
alias node='/home/tectips/node_login'

Here,you must specify your path to your file earlier saved.So,when you type the keyword ‘node’,it will automatically login to your node with login and password you have provided in your scripts.

I have given three conditions,

i.If you type ‘node’ in your console,

command executed:   telnet 192.168.90.103

2.if you type ‘node 114′ (you have given the last substring of your ip)

command executed:   telent 192.168.90.114

3.If you type ‘node 114 1098′ (you have given last substring of your ip as well as your port)

command executed:  telnet 192.168.90.114 1098

You can change the subnet of the network as you wish by editing the scripts ,add commands after establishing telnet sessions,and enjoy automation.