Jump to content

Help With Copyright Retention


Anney

Recommended Posts

Hey guys,

 

Must say, I love this forum...

 

Anyways...

I am writing a new script that I would like to release as freeware.

 

In that script I would like to make sure my copyright is displayed.

But because some of these pages are going to be completely customizable, I cannot simply encode all of the pages. (although I do intend to encode 1 or 2 of the pages.)

 

So my question would be, is there anyway for me to make sure that the copyright is displayed? and if it isn't perhaps disable the other functions or call another function?

 

Thank you for even reading this :)

Link to comment
Share on other sites

Just an idea, why not create multiple functions in multiple files, all connected to each other.

 

Make it as complicated as possible, and check if the copyright is still being displayed.

 

If not, you could use the script to alert you via email or something without them even knowing.

Link to comment
Share on other sites

Thank you all of you...

 

Good advice... and I know about them being able to crack it if they are good enough... but I still think making it harder than just opening up notepad and pressing delete would be prefferable.

 

Just an idea, why not create multiple functions in multiple files, all connected to each other.

 

Make it as complicated as possible, and check if the copyright is still being displayed.

 

If not, you could use the script to alert you via email or something without them even knowing.

 

I like this idea, but I am not exactly a php genius, so could you elaborate a little, perhaps an example? if you would. ;D

 

Also, I meant to mention that something like the SMF copyright... If you break it, or don't use the theme_copyright() function it displays a message something like: 'COPYRIGHT MISSING, PLEASE RE-INSTATE'...

 

and before you ask, I have checked the coding, but its too complex for me... ::)

 

Thanks again ;)

Link to comment
Share on other sites

Blade do you mean something like this?:

 

--------functions.php------

function neededfunction() {

  require ('copyright.php');

  global $variableneeded;

 

  if ($variableneeded != "found") {

    echo 'Copyright Missing...';

  } else {

    some code...

  }

}

 

-------copyright.php--------

function copyright() {

global $variableneeded;

$variableneeded = "found";

  echo 'COPYRIGHT INFO';

}

 

-------Index.php------------

<?

echo $TOPOFPAGE;

 

neededfunction();

 

copyright();

 

echo $BOTTOMOFPAGE;

?>

 

thanks again! ;D

Link to comment
Share on other sites

What if I encode both the functions.php & copyright.php pages... and just give people a list of the usable functions?

 

The only thing then... would the script work? as the copyright.php's variable is being called before the page has been 'require'd..

 

thank you guys a million times for you very prompt and great advice :)

Link to comment
Share on other sites

erm i think, i am not that experienced but , the basic idea would be

//page 1

contain something really important

e.g. a session (have this encrypted)

//

 

then on each page put

//

copyright

//

 

then at the begining of each page

check for the session

if it is not there, then they have removed something

that kinda idea

Link to comment
Share on other sites

Yeah thanks for all your help guys... None of those would work... but no worries.. I have an answer!...

 

It does involve the use of a PHP encrypter, but hey...

 

SOLUTION:

Create page that has the needed functions needed for the script (can be 1 function or more).

I called it 'functions.php'

 

Then create a copyright function within a file that just echos/prints your copyright. And use that function in that same file

I called it 'copyright.php' function called 'copyright()'

mine went like this (roughly):

<?
function copyright() {
echo '© COPYRIGHT ME 2008';
}
copyright();
?>

 

Place ALL of the functions in the function.php page within this stipulation:

if (is_callable('copyright') == false) {
echo 'COPYRIGHT MISSING...';
exit;
} else {
//PLACE ANY OR ALL NECESSARY FUNCTIONS HERE
}

 

Then if you encrypt both of these files, and use this syntax for any page needing the functions:

<?php
include('copyright.php');
include('functions.php');
?>
<html>
<head>
......
Normal code here
......

...the copyright will be displayed on any of the pages with these functions, or it will not work, and display a message saying that the copyright is missing...

 

****NOTE****

You might be thinking... well that will only display the copyright info at the top, OR the functions wont work (because they aren't defined before called). Not necessary... just add 'style="bottom:0;position:fixed;"' attributes to the copyright div tag, and this will display the copyright at the bottom of the page, in a static location...therefore.. always viewable ;)

 

Just to clarify... I am not an experienced PHP programmer...

So if anyone can tell me any problems with this, i would be grateful.. or a better way? :)

 

Thanks again guys and girls! ;D

Link to comment
Share on other sites

I haven't been able to get my hands on an 'Encrypter' anywhere...

 

Know any sources?..

 

... obfuscate your script using an encryption program like from zend or sourceguardian etc

 

Does that help?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.