I've installed Z-Push in a VM and I am almost there, but am having an issue. If I navigate to the page via a web browser, I am given a login prompt. I login and am then redirected to an HTTP 500 page. No indication of successful or unsuccessful login.
I get the following in the Apache error log:
Code:
[Fri Feb 11 11:00:19 2011] [error] [client 192.168.0.124] PHP Notice: Use of undefined constant \xe2\x80\x9cBackendZimbra\xe2\x80\x9d - assumed '\xe2\x80\x9cBackendZimbra\xe2\x80\x9d' in /var/www/z-push/config.php on line 85
[Fri Feb 11 11:00:30 2011] [error] [client 192.168.0.124] PHP Notice: Use of undefined constant \xe2\x80\x9cBackendZimbra\xe2\x80\x9d - assumed '\xe2\x80\x9cBackendZimbra\xe2\x80\x9d' in /var/www/z-push/config.php on line 85
[Fri Feb 11 11:00:30 2011] [error] [client 192.168.0.124] PHP Fatal error: Class '\xe2\x80\x9cBackendZimbra\xe2\x80\x9d' not found in /var/www/z-push/index.php on line 146
This is my config.php Zimbra section:
Code:
$BACKEND_PROVIDER = “BackendZimbra”;
define('ZIMBRA_URL', 'http://mail.domain.com');
define('ZIMBRA_USER_DIR', 'zimbra');
define('ZIMBRA_SYNC_CONTACT_PICTURES', true);
define('ZIMBRA_VIRTUAL_CONTACTS',true);
define('ZIMBRA_VIRTUAL_APPOINTMENTS',true);
define('ZIMBRA_VIRTUAL_TASKS',true);
define('ZIMBRA_IGNORE_EMAILED_CONTACTS',true);
define('ZIMBRA_HTML',true);
define('ZIMBRA_ENFORCE_VALID_EMAIL',true); Any help would be greatly appreciated.