Registration

How to apply the HAWHAW Enhanced License

To remove the HAWHAW copyright link follow these instructions for users of:


Users of the HAWHAW PHP library hawhaw.inc

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.


Users of HAWXY

Create a haw_e_license.php file as described above and include it either in the configuration part of hawxy.php or in your (optional) hawxy_config.php config file:
...
#######    HAWXY CONFIGURATION PART (BEGIN)    ##############################

include("haw_e_license.php);
...

Users of HawTags

Create a haw_e_license.php file as described above and store it in the php directory that already contains the hawhaw.inc file. Then include haw_e_license.php in the config part of the hawhaw.inc file:
...
###################################
#   BEGIN OF CONFIGURATION PART   #
###################################

include("haw_e_license.php);
...

Users of HAWHAW.NET

Add the following lines to your web.config file:
<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 ...