Contents

  1. Introduction
  2. Changing a language variable
  3. Changing the Control Panel Logo
  4. Removing the “License Key” Setting
  5. Changing the look and feel of the Application
  6. Disabling the “Product Edition” on the System

Introduction

This document serves as a guide to private labeling Interspire Knowledge Manager Version 5.0

Changing a language variable

All of the text located within Interspire Knowledge Manager are stored in and displayed from language variables. This includes two parts, the name of the language variable and the value of that variable.

All Interspire Email Marketer language variables are located in the 'includes/language/' folder.
All private labeling language variables are located in the 'includes/language/whitelabel.ini' file. You can remove any mention of Interspire from the application from within this file.

To edit a language variable follow the following steps.

Replace:

ARSPoweredBy="Powered by Interspire Knowledge Manager"

With your own custom ARS “Powered by …” line. To not show anything, simply remove the content completely. Remember to leave the language variable intact or you will break the application.

ARSPoweredBy=" "
ARSPoweredBy="Powered by Your Company"

Changing the Control Panel Logo

The Interspire Knowledge Manager image is located in ‘admin/images’ folder.

Follow these steps will allow you to change the logo that appears in the top left of every page of the control panel:

  1. Create your logo in jpg format called logo.jpg
  2. Copy logo.jpg to the images folder (replace the existing one)
  3. Open the file: 'lib/general.php'

    Find:
        $fp = fopen(dirname(__FILE__) . "/../admin/images/app.dat", "rb");
        
    Replace it with:
        $fp = fopen(dirname(__FILE__) . "/../admin/images/logo.jpg", "rb");
        

Removing the “License Key” Setting

Note: if the license key setting is removed, you will be unable to modify the license key via the control panel in the future. The value for the license key can be adjusted in ‘admin/includes/config.php’ if it needs to be updated in the future.

Open the file: ‘admin/templates/settings.manage.tpl’

Find:

<tr>
	<td class="FieldLabel">
		class="Required">*</span> :
	</td>
	<td>
		<input type="text" name="licenseKey" id="licenseKey" value="" class="Field300">
		<img onmouseout="HideHelp(this)" onMouseOver="ShowHelp(this, '', '')"
		src="images/help.gif" width="24" height="16" border="0" alt="help">
	</td>
</tr>

Replace it with:

<input type="hidden" name="licenseKey" id="licenseKey" value="">

Changing the look and feel of the Application

All of the styles used in Interspire Knowledge Manager can be found in the ‘admin/styles’ and ‘templates/SelectedTemplateName/Styles’ folders (Note: SelectedTemplateName refers to a list of available templates. E.g.: Classic, Corporate, Default, Embedded, InlineHelp, etc).

To change the way Interspire Knowledge Manager looks (colors, fonts etc) you simply need to edit these CSS files.

Disabling the “Product Edition” on the System

On the System Information Page:

Open the file: ‘admin/templates/systeminfo.tpl’

Find and Remove:

<tr>
	<td class="FieldLabel">
		   :
	</td>
	<td style="padding: 6px 0">
		
	</td>
</tr>

On the browser title:

Open the file: 'admin/templates/pageheader.tpl'

Find:

<title> ( Edition)</title>

Replace it with:

<title></title>

Find and Remove:

<tr>
	<td class="FieldLabel">
		   :
	</td>
	<td style="padding: 6px 0">
		
	</td>
</tr>