The Installation of MailBeez 2.0 is successfully tested with Commerce:SEO v2.0.11.2 CE
, running on PHP 5.2.17
The installation is straight forward and can be done in a couple of minutes by following these steps:
- copy new files
- add permission (half automatic)
- Install MailBeez
MailBeez is maintaining it’s own tables – the shops existing table stay as they are.
Step 1 – copy new files
copy following file to your admin-directory
mailbeez.php
copy following file and folder to your catalog-directory (where your index.php is located)
mailhive (folder)
mailhive.php
Step 2 – modify existing files
1. Add a menu entry
located and open the file
admin/includes/column_left.php
find
(...) '" class="menuBoxContentLink">Newsletter';
add in a new line
if (($cs == '0') && ($aa['mailbeez'] == '1')) echo '<a class="menuBoxContentLink" href="' . xtc_href_link('mailbeez.php') . '">MailBeez</a>';
this will add the menu-entry “MailBeez” to your Tools-Box. Feel free to place this link where-ever you want.
Step 3 – add permission
run
(shop)/mailhive.php
this will add the required permission for MailBeez for the primary admin account.
If necessary add admin permission for MailBeez for secondary admin accounts as well
please continue with Basic Configuration
Optional
If you would like to have access to MailBeez core files & tables from other pages you need to add the following global DataBase and Filename definitions:
Add the Database table definition
located and open the file
includes/database_tables.php
add
define('TABLE_MAILBEEZ_TRACKING', 'mailbeez_tracking');define('TABLE_MAILBEEZ_BLOCK', 'mailbeez_block');
Add the filename definition
located and open the file
admin/includes/application_top.php
add
define('FILENAME_MAILBEEZ', 'mailbeez.php');define('FILENAME_HIVE', 'mailhive.php');
located and open the file
includes/filenames.php
add
define('FILENAME_MAILBEEZ', 'mailbeez.php');define('FILENAME_HIVE', 'mailhive.php');






