LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   z-push 2 configuration (https://www.linuxquestions.org/questions/slackware-14/z-push-2-configuration-4175453652/)

carlitoco 03-11-2013 01:30 PM

z-push 2 configuration
 
I've some problems with z-push 2

that's what I've done until now:

Code:

mkdir /usr/share/z-push
#download z-push and extract into it

mkdir /var/lib/z-push
mkdir /var/log/z-push
#chmod both to 777 and chown to apache.apache

#edit vhosts like this
<VirtualHost *:443>
  ServerName zarafa.blablabla.bla
  ServerAlias www.zarafa.blablalba.bla
  DocumentRoot /srv/httpd/htdocs/webaccess/
  ServerAdmin blalbalba@bla
  Alias /Microsoft-Server-ActiveSync /usr/share/z-push/index.php
  SSLEngine on
  SSLCertificateFile /etc/ssl/server.crt
  SSLCertificateKeyFile /etc/ssl/server.key
  SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>

other virtual hosts are running nice and quiet https://bla.bla is reachable and works fine.

access to check if z-push works

https://zarafa.blabla.bla/Microsoft-Server-ActiveSync


Code:

Forbidden

You don't have permission to access /Microsoft-Server-ActiveSync on this server.

I think my apache is not right any ideas?
edit
httpd error log

Code:

[authz_core:error] [pid 8513:tid 2941254464] [client xx.x.xxx:42295] AH01630: client denied by server configuration: /usr/share/z-push/index.php
thank you in advance

bathory 03-12-2013 01:18 AM

Hi,

You need to add:
Code:

<Directory /usr/share/z-push>
Allow from all
</Directory>

Regards

carlitoco 03-13-2013 03:37 AM

efcharisto poli... I'll try this

carlitoco 03-13-2013 04:14 AM

Hmm it doesn't work yet the "https://zarafa.domain.de/Microsoft-Server-ActiveSync"

give "Forbidden

You don't have permission to access /Microsoft-Server-ActiveSync on this server."

I added it to the /etc/httpd/extra/httpd-vhosts.conf, I think this is right.

bathory 03-13-2013 05:48 AM

Quote:

Originally Posted by carlitoco (Post 4910567)
Hmm it doesn't work yet the "https://zarafa.domain.de/Microsoft-Server-ActiveSync"

give "Forbidden

You don't have permission to access /Microsoft-Server-ActiveSync on this server."

Check the /usr/share/z-push directory permissions (it must have the execute bit on)
Code:

ls -ld /usr/share/z-push
Also make sure to clear your browser cache before testing, or use a different browser.


Quote:

I added it to the /etc/httpd/extra/httpd-vhosts.conf, I think this is right
You could put it inside the vhost container of your 1st post

Regards

carlitoco 03-13-2013 06:01 AM

Ok I've put it in the <VirtuaHost>
like this
Code:

##zarafa
<VirtualHost *:443>
  ServerName zarafa.bla.de
  ServerAlias www.zarafa.bla.de 
  DocumentRoot /srv/httpd/htdocs/webaccess/
  ServerAdmin bla@bla.org
  Alias /Microsoft-Server-ActiveSync /usr/share/z-push/index.php 
  SSLEngine on
  SSLCertificateFile /etc/ssl/server.crt 
  SSLCertificateKeyFile /etc/ssl/server.key
  SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
<Directory /usr/share/z-push>
Allow from all
</Directory>
</VirtualHost>

ls -lah in my usage shows
I've made a chown -R apache.apache on /var/lib/z-push, /var/log/z-push and /usr/share/z-push

Code:

root@horde:/var/www# ls -lah /usr/share/z-push/
total 160K
drwxrwxr-x  4 apache apache 4.0K Mar 11 19:47 ./
drwxr-xr-x 169 root  root  4.0K Mar 13 01:29 ../
-rw-rw-r--  1 apache apache 8.1K Nov 22 21:48 INSTALL
-rw-rw-r--  1 apache apache  36K Jan 29 16:44 LICENSE
drwxr-xr-x  5 apache apache 4.0K Mar 11 19:48 backend/
-rw-rw-r--  1 apache apache  14K Jan 25 20:45 config.php
drwxrwxr-x  2 apache apache 4.0K Feb 18 19:10 include/
-rw-rw-r--  1 apache apache  14K Jan 25 20:45 index.php
-rw-rw-r--  1 apache apache 2.0K Feb 18 19:04 version.php
-rwxrwxr-x  1 apache apache  26K Jan 25 19:05 z-push-admin.php*
-rwxrwxr-x  1 apache apache  29K Jan 25 19:05 z-push-top.php*

It doesnt help, may I send you my httpd.conf?

bathory 03-13-2013 06:48 AM

Quote:

I've made a chown -R apache.apache on /var/lib/z-push, /var/log/z-push and /usr/share/z-push
You didn't show the directory permissions.
Anyway run:
Code:

chmod +x /usr/share/z-push
What happens if you visit: http://zarafa.bla.de/Microsoft-Serve...Sync/index.php
And what is written to apache error_log?

carlitoco 03-13-2013 07:26 AM

Quote:

Originally Posted by bathory (Post 4910658)
You didn't show the directory permissions.
Anyway run:
Code:

chmod +x /usr/share/z-push
What happens if you visit: http://zarafa.bla.de/Microsoft-Serve...Sync/index.php
And what is written to apache error_log?

sorry
Code:

drwxrwxr-x  4 apache apache 4.0K Mar 11 19:47 z-push/
if I call the address on port 80 I get the main page of the domain "bla", not the sub.domain "zarfa.bla"

see: http://zarafa.computerkalle.de/Micro...Sync/index.php

apache errorlog:
Code:

[Wed Mar 13 13:24:18.012250 2013] [authz_core:error] [pid 23411:tid 2874145600] [client 84.175.68.172:50668] AH01630: client denied by server configuration: /usr/share/z-push/index.php
thank you

bathory 03-13-2013 07:38 AM

Are you running apache-2.4?
In this case you can use:
Code:

<Directory /usr/share/z-push>
Require all granted
</Directory>


carlitoco 03-13-2013 05:07 PM

Hey,

now I get a blank white screen if I call https://blabla*

and apache give a huge errorlog about z-push like this
Code:

[Wed Mar 13 23:00:58.522124 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncappointmentexception.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 90
[Wed Mar 13 23:00:58.522276 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncattachment.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 91
[Wed Mar 13 23:00:58.522328 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncattachment.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 91
[Wed Mar 13 23:00:58.522477 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncattendee.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 92
[Wed Mar 13 23:00:58.522530 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncattendee.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 92
[Wed Mar 13 23:00:58.522687 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncmeetingrequestrecurrence.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 93
[Wed Mar 13 23:00:58.522739 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncmeetingrequestrecurrence.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 93
[Wed Mar 13 23:00:58.522891 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncmeetingrequest.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 94
[Wed Mar 13 23:00:58.522981 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncmeetingrequest.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 94
[Wed Mar 13 23:00:58.523134 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncmail.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 95
[Wed Mar 13 23:00:58.523185 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncmail.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 95
[Wed Mar 13 23:00:58.523334 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncnote.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 96
[Wed Mar 13 23:00:58.523385 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncnote.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 96
[Wed Mar 13 23:00:58.523557 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/synccontact.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 97
[Wed Mar 13 23:00:58.523610 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/synccontact.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 97
[Wed Mar 13 23:00:58.523758 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncfolder.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 98
[Wed Mar 13 23:00:58.523809 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncfolder.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 98
[Wed Mar 13 23:00:58.523995 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncprovisioning.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 99
[Wed Mar 13 23:00:58.524050 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncprovisioning.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 99
[Wed Mar 13 23:00:58.524201 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/synctaskrecurrence.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 100
[Wed Mar 13 23:00:58.524253 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/synctaskrecurrence.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 100
[Wed Mar 13 23:00:58.524400 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/synctask.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 101
[Wed Mar 13 23:00:58.524450 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/synctask.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 101
[Wed Mar 13 23:00:58.524599 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncoofmessage.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 102
[Wed Mar 13 23:00:58.524650 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncoofmessage.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 102
[Wed Mar 13 23:00:58.524797 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncoof.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 103
[Wed Mar 13 23:00:58.524847 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncoof.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 103
[Wed Mar 13 23:00:58.525034 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncuserinformation.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 104
[Wed Mar 13 23:00:58.525114 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncuserinformation.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 104
[Wed Mar 13 23:00:58.525268 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncdeviceinformation.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 105
[Wed Mar 13 23:00:58.525320 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncdeviceinformation.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 105
[Wed Mar 13 23:00:58.525473 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncdevicepassword.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 106
[Wed Mar 13 23:00:58.525524 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncdevicepassword.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 106
[Wed Mar 13 23:00:58.525682 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncitemoperationsattachment.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 107
[Wed Mar 13 23:00:58.525733 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncitemoperationsattachment.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 107
[Wed Mar 13 23:00:58.525883 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncsendmail.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 108
[Wed Mar 13 23:00:58.525966 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncsendmail.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 108
[Wed Mar 13 23:00:58.526122 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncsendmailsource.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 109
[Wed Mar 13 23:00:58.526174 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncsendmailsource.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 109
[Wed Mar 13 23:00:58.526326 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncvalidatecert.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 110
[Wed Mar 13 23:00:58.526377 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncvalidatecert.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 110
[Wed Mar 13 23:00:58.526530 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncresolverecipients.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 111
[Wed Mar 13 23:00:58.526581 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncresolverecipients.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 111
[Wed Mar 13 23:00:58.526733 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncresolverecipient.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 112
[Wed Mar 13 23:00:58.526803 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncresolverecipient.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 112
[Wed Mar 13 23:00:58.526998 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncresolverecipientsoptions.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 113
[Wed Mar 13 23:00:58.527055 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncresolverecipientsoptions.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 113
[Wed Mar 13 23:00:58.527215 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncresolverecipientsavailability.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 114
[Wed Mar 13 23:00:58.527269 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncresolverecipientsavailability.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 114
[Wed Mar 13 23:00:58.527427 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncresolverecipientscertificates.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 115
[Wed Mar 13 23:00:58.527480 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncresolverecipientscertificates.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 115
[Wed Mar 13 23:00:58.527638 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/syncobjects/syncresolverecipientspicture.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 116
[Wed Mar 13 23:00:58.527690 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/syncobjects/syncresolverecipientspicture.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 116
[Wed Mar 13 23:00:58.527838 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/default/backend.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 117
[Wed Mar 13 23:00:58.527889 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/default/backend.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 117
[Wed Mar 13 23:00:58.528077 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/default/searchprovider.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 118
[Wed Mar 13 23:00:58.528129 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/default/searchprovider.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 118
[Wed Mar 13 23:00:58.528277 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/request/request.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 119
[Wed Mar 13 23:00:58.528327 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/request/request.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 119
[Wed Mar 13 23:00:58.528502 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(lib/request/requestprocessor.php): failed to open stream: No such file or directory in /usr/share/z-push/index.php on line 120
[Wed Mar 13 23:00:58.528555 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Warning:  include_once(): Failed opening 'lib/request/requestprocessor.php' for inclusion (include_path='.:/usr/lib/php') in /usr/share/z-push/index.php on line 120
[Wed Mar 13 23:00:58.529840 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Notice:  Use of undefined constant LOGLEVEL_INFO - assumed 'LOGLEVEL_INFO' in /usr/share/z-push/config.php on line 86
[Wed Mar 13 23:00:58.529972 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Notice:  Use of undefined constant LOGLEVEL_DEVICEID - assumed 'LOGLEVEL_DEVICEID' in /usr/share/z-push/config.php on line 94
[Wed Mar 13 23:00:58.530039 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Notice:  Use of undefined constant SYNC_CONFLICT_OVERWRITE_PIM - assumed 'SYNC_CONFLICT_OVERWRITE_PIM' in /usr/share/z-push/config.php on line 118
[Wed Mar 13 23:00:58.530085 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Notice:  Use of undefined constant SYNC_FILTERTYPE_ALL - assumed 'SYNC_FILTERTYPE_ALL' in /usr/share/z-push/config.php on line 128
[Wed Mar 13 23:00:58.530145 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Notice:  Use of undefined constant SYNC_FILEAS_LASTFIRST - assumed 'SYNC_FILEAS_LASTFIRST' in /usr/share/z-push/config.php on line 156
[Wed Mar 13 23:00:58.530606 2013] [:error] [pid 25994:tid 2958031680] [client 84.175.68.172:45445] PHP Fatal error:  Class 'ZPush' not found in /usr/share/z-push/index.php on line 132


carlitoco 03-13-2013 05:36 PM

ok it seems to be better now if I call ActiveSync now:

Code:

Z-Push - Open Source ActiveSync
Version 2.0.7-1690
FatalMisconfigurationException

The configured LOGFILE can not be modified.

Trace:
Array
(
    [0] => Array
        (
            [file] => /usr/share/z-push/index.php
            [line] => 132
            [function] => CheckConfig
            [class] => ZPush
            [type] => ::
            [args] => Array
                (
                )

        )

)


carlitoco 03-13-2013 05:57 PM

If I make a /var/logx folder and edit the z-push config it works!

Whats happened? apache can't write thruout /var/log to z-push ?

thx 4 all

carlitoco 03-13-2013 06:51 PM

okay ... z-push is syncing now with my android...

But it make many dublicates in contact list :(

carlitoco 03-13-2013 06:52 PM

okay ... z-push is syncing now with my android...

But it make many dublicates in contact list of zarafa :(


All times are GMT -5. The time now is 02:23 AM.