To remove the HAWHAW copyright link follow these instructions for users of:
Create a PHP file "haw_e_license.php" with the following content:
<?php $haw_license_holder = 1; $haw_license_domain = "..."; // enter your registered domain(s) here $haw_license_key = "..."; // enter your (long) license key here (do not insert line breaks!!!) $haw_signature = 2; $haw_sig_text = ""; // enter your customized text here or leave string empty $haw_sig_link = "http://www.hawhaw.de/"; // enter your customized link here (in case you have provided some $haw_sig_text) ?>
Include haw_e_license.php from within your PHP script before you include hawhaw.inc:
...
include("haw_e_license.php");
include("hawhaw.inc");
...
Your script comes here ...
Alternatively you can modify hawhaw.inc and include haw_e_license.php there. In that case you don't have to modify your script(s), but you have to repeat this after each hawhaw.inc update.
...
####### HAWXY CONFIGURATION PART (BEGIN) ##############################
include("haw_e_license.php);
...
...
###################################
# BEGIN OF CONFIGURATION PART #
###################################
include("haw_e_license.php);
...
<configuration>
...
<appSettings>
<add key="HawhawRegistrationDomain" value="..." /> <!-- enter your registered domain(s) here -->
<add key="HawhawRegistrationKey" value="..." /> <!-- enter your (long) license key here -->
<add key="HawhawSignatureText" value="" />
<add key="HawhawSignatureLink" value="http://www.yourwebsite.com/" />
...
Add an appSettings section if it not already exists.
Fill the values for the registration domain and the registration key as received in your confirmation mail. Values must be copied/pasted without any line breaks! If you provide the HawhawSignatureText value with a non-empty string, this text will be shown as your individual signature.
In case of any questions or problems, please contact the administrator.
Return to HAWHAW ...