This module protects your website content from being copied.
The following arrangements will not guarantee the safety of the content, and are not recommended for old popular sites, but for new sites it can be useful:
- Disabling shortcut keys Ctrl+C, Ctrl+X, Ctrl+A, Ctrl+U
- Disabling the context menu on the site
- Disabling .oncopy and .ondragstart js events
- When the visitor try to copy a large amount of text (more then 200 characters)
or try to view the source code current ip is added to the list of banned and cookies is installed in the browser.
- If visitors User-Agent found in the list of known spam bots and parsers, the current ip is added to the list of
banned.
Installation ¶
- Add the table 'banned' in your database (import the file sql/banned.sql), do not forget to add a table prefix,
if you use it in your application.
- Extract the files into your modules folder (for example, /protected/modules/).
- Edit your configuration file to register the module:
'modules'=>array(
...
'black'
),
- Add widget to your pages:
<? Yii::app()->getModule('black'); $this->widget('NoCopyWidget'); ?>
Resources ¶
Total 3 comments
Hi Dismal,
What if I want only to record the users not block them? The one that I really need is to disable context menu and CTRL-X/CTRL-C.
Thank you for your great extension.
Kind regards,
Daniel
le_top, thank you for your advice, i'll make this changes
Hi Interesting module! Some suggestions: - Propose the table creation as a migration (see Migration command line options; - Allow a whitelist; - Blacklist an IP only after a number of trials, and not after the first try (unless it is a known bot).
Leave a comment
Please login to leave your comment.