Hi Soren, I have owncloud 6.0.4+dfsg-1.
I you have not yet done that, I suggest to purge owncloud and to delete (drop) and recreate the owncloud database in mysql: # apt-get purge owncloud # rm -rf /var/lib/owncloud rd@home:/etc/apache2$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 6038 Server version: 5.5.37-1 (Debian) Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | owncloud | | performance_schema | +--------------------+ 4 rows in set (0.00 sec) mysql> use owncloud; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> show tables; +------------------------------+ | Tables_in_owncloud | +------------------------------+ | oc_activity | | oc_appconfig | | oc_clndr_calendars | | oc_clndr_objects | | oc_clndr_repeat | | oc_clndr_share_calendar | | oc_clndr_share_event | | oc_contacts_addressbooks | | oc_contacts_cards | | oc_contacts_cards_properties | | oc_documents_invite | | oc_documents_member | | oc_documents_op | | oc_documents_revisions | | oc_documents_session | | oc_file_map | | oc_filecache | | oc_files_trash | | oc_files_trashsize | | oc_files_versions | | oc_gallery_sharing | | oc_group_admin | | oc_group_user | | oc_groups | | oc_jobs | | oc_locks | | oc_lucene_status | | oc_mimetypes | | oc_permissions | | oc_pictures_images_cache | | oc_preferences | | oc_privatedata | | oc_properties | | oc_share | | oc_storages | | oc_users | | oc_vcategory | | oc_vcategory_to_object | +------------------------------+ 38 rows in set (0.00 sec) mysql> drop database owncloud; Query OK, 38 rows affected (1.70 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | +--------------------+ 3 rows in set (0.01 sec) mysql> create database owncloud; Query OK, 1 row affected (0.00 sec) mysql> GRANT ALL ON owncloud.* TO 'ownclouduser'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> exit // reinstall owncloud # apt-get install owncloud Regards, Rainer On Monday 07 July 2014 08:31:50 Soren Stoutner wrote: > Upgrading to php 5.6.0~rc2+dfsg-1 (all available packages) from unstable has > not fixed the contacts problem for me. However, it did change the error > messages I receive in the log. Now they say: > > > Error > PHP > Cannot modify header information - headers already sent at > /usr/share/owncloud/lib/private/appframework/app.php#68 > 2014-07-07T15:16:36+00:00 > Error > PHP > Cannot modify header information - headers already sent at > /usr/share/owncloud/lib/private/appframework/app.php#64 > 2014-07-07T15:16:36+00:00 > Error > PHP > Cannot modify header information - headers already sent at > /usr/share/owncloud/lib/private/appframework/app.php#60 > 2014-07-07T15:16:36+00:00 > Error > PHP > Cannot modify header information - headers already sent at > /usr/share/owncloud/lib/private/appframework/app.php#68 > 2014-07-07T15:15:48+00:00 > Error > PHP > Cannot modify header information - headers already sent at > /usr/share/owncloud/lib/private/appframework/app.php#64 > 2014-07-07T15:15:48+00:00 > > > So perhaps this is some type of progress. > > I am running owncloud 7.0.0~rc1+dfsg-1 from experimental. Your results may > be different if you are running owncloud 6. > > Soren -- Rainer Dorsch Lärchenstr. 6 D-72135 Dettenhausen 07157-734133 email: [email protected] jabber: [email protected] GPG Fingerprint: 5E6C 4AF9 363C 97A6 F820 C2E6 8CE0 5F33 07F3 EDC0 Full GPG key: http://pgp.mit.edu/ -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

