How To Stop Copying?

What exactly is your script? I assume your just making it easy for people to do it, although there is things you can do via .htaccess to deny entry to files.
 
Do you mean people copying your script in the view source?
 
Well I'm designing a paid mybb plugin so I need to know how stop people copy and pasting the code or downloading the code and give it to everyone.
 
you can encrypt the code and require users to enter a license key before installation like when you install vbulletin.
 
Hmm how do you encrypt the code and how can I go about setting up license keys?
 
Well what is your plugin, if it is PHP or JS code then you can put in a .htaccess to block a users entry to file;

Code:
<Files "*.php">
Order Allow,Deny
Deny from All
</Files>

Code:
<Files "*.js">
Order Allow,Deny
Deny from All
</Files>

Etc etc...
 
People cannot delete the .htaccess file if your the one hosting the script and file. To be honest if you want people to use your plugin then there is nothing to stop them copying.
 
Well they have to download and upload it and well if it's true that you can't stop people copying then explain all the millions of copy safe scripts out there.
 
Nothing's "safe" on the internet. Even if you install some sort of encryption, someone can always break through it.
 
Daniel Eh said:
Well what is your plugin, if it is PHP or JS code then you can put in a .htaccess to block a users entry to file;

Code:
<Files "*.php">
Order Allow,Deny
Deny from All
</Files>

Code:
<Files "*.js">
Order Allow,Deny
Deny from All
</Files>

Etc etc...

Bad idea. I found major issues when try to block certain things. ajax don't go so well with some .htacces parameters
 
Your best option would be to set up a license and encrypt the files, as mentioned above. If someone copies your code without a license, you can simply take legal action.
 
Back
Top Bottom