
Originally Posted by
DArnaez
The good news is that now I can see in the DB that the table "zen_mailbeez_block" was created.
no worries - it is an easy fix, just looks ugly.
1. the sql statement failed since you have a prefix - from the tablename "zen_mailbeez_block" can see it is "zen_" so you need to run
Code:
DELETE FROM `zen_configuration` WHERE `configuration_key` LIKE 'MAILBEEZ_%'
(addin "zen_" in front of the tablename 'configuration)
2. you need to remove the table- and filename definitions (not really an error but caused the notice-output) as with V1.5 mailbeez supports "drop-in" installation.
With your ealier installation you modified
includes/database_tables.php
includes/filenames.php
Check both on shop-level and in admin-directory and remove the following statements:
PHP Code:
define('TABLE_MAILBEEZ_TRACKING'...)
PHP Code:
define('FILENAME_MAILBEEZ', 'mailbeez.php');
define('FILENAME_HIVE', 'mailhive.php');
if you still get the ugly "Notice:..." output go to mailhive.php and disable error reporting (like zencart does by default to hide errors...)
PHP Code:
define('STRICT_ERROR_REPORTING', false); //change from true to false
will take this issues into the next release of mailbeez.
does it work now?
Bookmarks