Koozali.org: home of the SME Server

Not an April fool : smeserver-nextcloud available for you on SME9!!

Offline sages

  • *
  • 182
  • +0/-0
    • http://www.sages.com.au
Re: Not an April fool : smeserver-nextcloud available for you on SME9!!
« Reply #60 on: January 11, 2019, 05:18:25 AM »
I've ignored the caldav and carddav warnings. You can use the url's in the relevant page within nextcloud user pages. In the panel on the left hand side of each relevant page, ie calendar url is on the calendar  page, etc.

The database errors can be resolved from the command line. In the wiki entry for nextcloud on contribs.org there is instructions for setting maintenance mode, using those as a guide, substitute the commands for the database index rebuild. Info is on the link on the warning page to the nextcloud website with the commands or it's on the warning page (I frget which) but it's pretty easy to find.
...

Offline edb

  • *
  • 546
  • +0/-0
Re: Not an April fool : smeserver-nextcloud available for you on SME9!!
« Reply #61 on: January 11, 2019, 05:31:03 AM »
I've ignored the caldav and carddav warnings. You can use the url's in the relevant page within nextcloud user pages. In the panel on the left hand side of each relevant page, ie calendar url is on the calendar  page, etc.

The database errors can be resolved from the command line. In the wiki entry for nextcloud on contribs.org there is instructions for setting maintenance mode, using those as a guide, substitute the commands for the database index rebuild. Info is on the link on the warning page to the nextcloud website with the commands or it's on the warning page (I frget which) but it's pretty easy to find.

Excellent ... thank you and I will give that a try!
......

Offline edb

  • *
  • 546
  • +0/-0
Re: Not an April fool : smeserver-nextcloud available for you on SME9!!
« Reply #62 on: January 11, 2019, 05:50:41 AM »
Thanks to your info I was able to resolve the database error.
Code: [Select]
[root@defcon1 ~]# su www -s /bin/bash
bash-4.1$ cd /usr/share/nextcloud/
bash-4.1$ scl enable php71 'php occ db:add-missing-indices'
The current PHP memory limit is below the recommended value of 512MB.
Check indices of the share table.
Adding additional parent index to the share table, this can take some time...
Share table updated successfully.
Adding additional mtime index to the filecache table, this can take some time..
Filecache table updated successfully.
Code: [Select]
bash-4.1$exit
All good now. Thanks again!
......

Offline sages

  • *
  • 182
  • +0/-0
    • http://www.sages.com.au
Re: Not an April fool : smeserver-nextcloud available for you on SME9!!
« Reply #63 on: January 11, 2019, 05:59:19 AM »
No problem.
I usually find that 'google', searching the forum, the contribs wiki and the error/warning messages lead me to a solution.
...