LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-11-2013, 01:30 PM   #1
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Rep: Reputation: 16
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

Last edited by carlitoco; 03-11-2013 at 01:39 PM.
 
Old 03-12-2013, 01:18 AM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,174
Blog Entries: 1

Rep: Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040
Hi,

You need to add:
Code:
<Directory /usr/share/z-push>
Allow from all
</Directory>
Regards
 
Old 03-13-2013, 03:37 AM   #3
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
efcharisto poli... I'll try this
 
Old 03-13-2013, 04:14 AM   #4
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
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.
 
Old 03-13-2013, 05:48 AM   #5
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,174
Blog Entries: 1

Rep: Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040
Quote:
Originally Posted by carlitoco View Post
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

Last edited by bathory; 03-13-2013 at 06:00 AM. Reason: typo
 
Old 03-13-2013, 06:01 AM   #6
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
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?

Last edited by carlitoco; 03-13-2013 at 06:27 AM.
 
Old 03-13-2013, 06:48 AM   #7
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,174
Blog Entries: 1

Rep: Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040
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?
 
Old 03-13-2013, 07:26 AM   #8
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by bathory View Post
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
 
Old 03-13-2013, 07:38 AM   #9
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,174
Blog Entries: 1

Rep: Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040Reputation: 2040
Are you running apache-2.4?
In this case you can use:
Code:
<Directory /usr/share/z-push>
Require all granted
</Directory>
 
Old 03-13-2013, 05:07 PM   #10
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
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
 
Old 03-13-2013, 05:36 PM   #11
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
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
                (
                )

        )

)
 
Old 03-13-2013, 05:57 PM   #12
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
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
 
Old 03-13-2013, 06:51 PM   #13
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
okay ... z-push is syncing now with my android...

But it make many dublicates in contact list
 
Old 03-13-2013, 06:52 PM   #14
carlitoco
Member
 
Registered: Jan 2008
Location: Berlin
Distribution: Slackware / Arch / Unix
Posts: 144

Original Poster
Rep: Reputation: 16
okay ... z-push is syncing now with my android...

But it make many dublicates in contact list of zarafa
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: The Perfect Push Mail Server - Debian Squeeze (Debian 6.0) With ISPConfig 3 & Z-push LXer Syndicated Linux News 0 11-23-2012 08:30 AM
[SOLVED] z-push on slackware luvmax Slackware 24 04-27-2011 04:35 AM
Push my SSH to another pc ojha_riddhish Linux - Software 8 09-11-2009 07:41 AM
Just need a 'push' with sed MarcQuadra Programming 2 09-02-2004 11:59 PM
Push installation balpeck Linux - Networking 1 09-21-2003 09:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:58 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration