*New 12.1 series Release:
2019-11-08: XigmaNAS 12.1.0.4.7091 - released!
*New 11.3 series Release:
2019-10-19: XigmaNAS 11.3.0.4.7014 - released
We really need "Your" help on XigmaNAS https://translations.launchpad.net/xigmanas translations. Please help today!
Producing and hosting XigmaNAS costs money. Please consider donating for our project so that we can continue to offer you the best.
We need your support! eg: PAYPAL
2019-11-08: XigmaNAS 12.1.0.4.7091 - released!
*New 11.3 series Release:
2019-10-19: XigmaNAS 11.3.0.4.7014 - released
We really need "Your" help on XigmaNAS https://translations.launchpad.net/xigmanas translations. Please help today!
Producing and hosting XigmaNAS costs money. Please consider donating for our project so that we can continue to offer you the best.
We need your support! eg: PAYPAL
[EXTENSION] NextOwnCloud
Moderator: crest
- Toobie
- Starter
- Posts: 35
- Joined: 16 Jun 2015 12:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Ok, I made a "new" installation using this website:
https://decatec.de/home-server/nextclou ... chfuehren/
Actually I just wanted to update manually but the ssh console told me, Upgrade is not defined.
So I went back to the extension site, reopened the Nextcloud page and followed the installation instructions.
After it version 14 runs smooth with all my old files.
Update to version 15 also went well with the web updater now.
Will try to update the NAS tomorrow.
Regards.
EDIT: Update worked!
https://decatec.de/home-server/nextclou ... chfuehren/
Actually I just wanted to update manually but the ssh console told me, Upgrade is not defined.
So I went back to the extension site, reopened the Nextcloud page and followed the installation instructions.
After it version 14 runs smooth with all my old files.
Update to version 15 also went well with the web updater now.
Will try to update the NAS tomorrow.
Regards.
EDIT: Update worked!
-
- experienced User
- Posts: 108
- Joined: 04 Apr 2018 16:29
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hi!
Something wrong going with my Nextcloud (0.3.4). I can't upload my files from any browser or app on Android device.
NC app is showing me following error: "Request Entity Too Large".
Maximum uploaded size currently is "10G" in NC admin settings. In addition I made corrections in /usr/local/etc/php.ini
but it doesn't help.
Something wrong going with my Nextcloud (0.3.4). I can't upload my files from any browser or app on Android device.
NC app is showing me following error: "Request Entity Too Large".
Maximum uploaded size currently is "10G" in NC admin settings. In addition I made corrections in /usr/local/etc/php.ini
Code: Select all
memory_limit = 512M
upload_max_filesize = 10G
11.2.0.4 - Omnius (revision 6177) embedded -> XigmaNAS 12.0.0.4.6928 RootOnZFS
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
- Snufkin
- Advanced User
- Posts: 293
- Joined: 01 Jul 2012 11:27
- Location: Etc/GMT-3 (BSD style)
- Status: Offline
Re: [EXTENSION] NextOwnCloud
If I'm not mistaken, you have a rather specific configuration with nginx proxy.
Could this error be related to the ngnix settings?
XNAS 11.3.0.4 embedded, ASUS P5B-E, Intel DC E6600, 4 GB DDR2, 2 x HGST HDN726040ALE614, 2 x WDC WD5000AAKS, Ippon Back Power Pro 400
-
- experienced User
- Posts: 108
- Joined: 04 Apr 2018 16:29
- Status: Offline
Resolved: [EXTENSION] NextOwnCloud
You are right. I forgot about reverse proxy in jail that bypass all connections for NC. At first thought nginx.conf doesn't have any parameters that limits file size.
Upd.: nginx.conf in "reverse proxy" jail was modified with row inside "ssl section":
Code: Select all
client_max_body_size 10G;
11.2.0.4 - Omnius (revision 6177) embedded -> XigmaNAS 12.0.0.4.6928 RootOnZFS
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
-
- experienced User
- Posts: 75
- Joined: 26 May 2014 22:35
- Status: Offline
Re: [EXTENSION] NextOwnCloud
So I posted my first post regarding this similar issue under "onebuttoninstaller" and Crest told me to upload it here instead. So I followed his initial instructions on how to fix my issue, and I did fix it and I'm still having the same problem. Attached are the images. What am I doing wrong?
Problem is this: None of those icons show up properly. Almost as if the page is totally broken and naked. Looks like a buggy code (not saying there is a bug. just saying that's what my page looks like as if it had bugs that were not fixed).
Problem is this: None of those icons show up properly. Almost as if the page is totally broken and naked. Looks like a buggy code (not saying there is a bug. just saying that's what my page looks like as if it had bugs that were not fixed).
You do not have the required permissions to view the files attached to this post.
- Snufkin
- Advanced User
- Posts: 293
- Joined: 01 Jul 2012 11:27
- Location: Etc/GMT-3 (BSD style)
- Status: Offline
Re: [EXTENSION] NextOwnCloud
I'd recommend to verify file ownership and permissions as described in Nextcloud Administration Manual (see below).
Above three commands should be executed at least three times with the following changes (according to your setup)10. Adjust file ownership and permissions:
Code: Select all
chown -R www-data:www-data nextcloud find nextcloud/ -type d -exec chmod 750 {} \; find nextcloud/ -type f -exec chmod 640 {} \;
- For Document Root
Code: Select all
cd /mnt/samsung/website chown -R www:www nextcloud find nextcloud/ -type d -exec chmod 750 {} \; find nextcloud/ -type f -exec chmod 640 {} \;
- For Data Folder
Code: Select all
cd /mnt/samsung/cloud chown -R www:www alldata find alldata/ -type d -exec chmod 750 {} \; find alldata/ -type f -exec chmod 640 {} \;
- For Backup Folder
Code: Select all
cd /mnt/samsung/cloud chown -R www:www alldatabackup find alldatabackup/ -type d -exec chmod 750 {} \; find alldatabackup/ -type f -exec chmod 640 {} \;
XNAS 11.3.0.4 embedded, ASUS P5B-E, Intel DC E6600, 4 GB DDR2, 2 x HGST HDN726040ALE614, 2 x WDC WD5000AAKS, Ippon Back Power Pro 400
-
- experienced User
- Posts: 75
- Joined: 26 May 2014 22:35
- Status: Offline
Re: [EXTENSION] NextOwnCloud
This did not work. I ran all the commands like you stated, without getting any errors. Restarted my server. Still does not work. The thing is...if I download a free website template, the website shows up completely without any broken images. Nextcloud showing up is telling me that at least my set up is fine. Those random missing icons...i don't think it has anything to do with permissions. It's like saying half the icons are in such folder that does not have any restriction and half of the icons are placed in a folder that requires permission. It doesn't make any sense. But either way, I tried and it didn't work.Snufkin wrote: ↑25 Apr 2019 10:40I'd recommend to verify file ownership and permissions as described in Nextcloud Administration Manual (see below).Above three commands should be executed at least three times with the following changes (according to your setup)10. Adjust file ownership and permissions:
Code: Select all
chown -R www-data:www-data nextcloud find nextcloud/ -type d -exec chmod 750 {} \; find nextcloud/ -type f -exec chmod 640 {} \;
Then you need to restart XNAS web server.
- For Document Root
Code: Select all
cd /mnt/samsung/website chown -R www:www nextcloud find nextcloud/ -type d -exec chmod 750 {} \; find nextcloud/ -type f -exec chmod 640 {} \;
- For Data Folder
Code: Select all
cd /mnt/samsung/cloud chown -R www:www alldata find alldata/ -type d -exec chmod 750 {} \; find alldata/ -type f -exec chmod 640 {} \;
- For Backup Folder
Code: Select all
cd /mnt/samsung/cloud chown -R www:www alldatabackup find alldatabackup/ -type d -exec chmod 750 {} \; find alldatabackup/ -type f -exec chmod 640 {} \;
- Snufkin
- Advanced User
- Posts: 293
- Joined: 01 Jul 2012 11:27
- Location: Etc/GMT-3 (BSD style)
- Status: Offline
Re: [EXTENSION] NextOwnCloud
May be I do not understand something important in your early posts.
Could you provide two screenshot examples, one with "good" icons and the other with broken (missing) ones.
XNAS 11.3.0.4 embedded, ASUS P5B-E, Intel DC E6600, 4 GB DDR2, 2 x HGST HDN726040ALE614, 2 x WDC WD5000AAKS, Ippon Back Power Pro 400
-
- experienced User
- Posts: 75
- Joined: 26 May 2014 22:35
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Well, you can find the normal looking page all over google. For example this one.https://ucarecdn.com/aeb1138a-6d47-4b1e ... 753e7100f/. And for missing, you can compare to the image I have posted in my post. I have a lot of missing things on my page. Search icon on top right doesnt show, user icon on top right doesnt show. Some of the icons in other pages are missing too.
-
- experienced User
- Posts: 108
- Joined: 04 Apr 2018 16:29
- Status: Offline
Re: [EXTENSION] NextOwnCloud
What do you see if connect NC from mobile client (Apple, Android)?
Did your clear browser cash, cookies, history?
Did your clear browser cash, cookies, history?
11.2.0.4 - Omnius (revision 6177) embedded -> XigmaNAS 12.0.0.4.6928 RootOnZFS
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
-
- experienced User
- Posts: 75
- Joined: 26 May 2014 22:35
- Status: Offline
-
- NewUser
- Posts: 10
- Joined: 08 Dec 2017 16:34
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hi guys!
Got a small issue with nextcloud.
I am installing it as per the described steps in this thread and everything works perfect but, at a NAS reboot, the nextcloud reverts to a preinstalation state.
So I reach this step: I press install and follow the steps:
- access nextcloud url
- configure admin user
- point data folder to my folder
Everything works perfect
But after a reboot, the state reverts to pre-installed.
Any clue?
Got a small issue with nextcloud.
I am installing it as per the described steps in this thread and everything works perfect but, at a NAS reboot, the nextcloud reverts to a preinstalation state.
So I reach this step: I press install and follow the steps:
- access nextcloud url
- configure admin user
- point data folder to my folder
Everything works perfect
But after a reboot, the state reverts to pre-installed.
Any clue?
You do not have the required permissions to view the files attached to this post.
- raulfg3
- Site Admin
- Posts: 4978
- Joined: 22 Jun 2012 22:13
- Location: Madrid (ESPAÑA)
- Contact:
- Status: Offline
Re: [EXTENSION] NextOwnCloud
not sure but perhaps the"-" in NAS-Stuff confuses Xigmanas.
Perhaps some developer can show more light here.
Perhaps some developer can show more light here.
12.0.0.4 (revision 6766)+OBI on SUPERMICRO X8SIL-F 8GB of ECC RAM, 12x3TB disk in 3 vdev in RaidZ1 = 32TB Raw size only 22TB usable
Wiki
Last changes
Wiki
Last changes
- Toobie
- Starter
- Posts: 35
- Joined: 16 Jun 2015 12:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hey there,
my NC is telling me, "Die PHP-Speichergrenze liegt unterhalb des empfohlenen Wertes von 512MB."
So, where can I change this Setting?
I tried it with the php.ini but it seems that this will bne overwritten every reboot of the nas
my NC is telling me, "Die PHP-Speichergrenze liegt unterhalb des empfohlenen Wertes von 512MB."
So, where can I change this Setting?
I tried it with the php.ini but it seems that this will bne overwritten every reboot of the nas
-
- experienced User
- Posts: 108
- Joined: 04 Apr 2018 16:29
- Status: Offline
Re: [EXTENSION] NextOwnCloud
I made the line in Command Script that modifies /.../php.ini after each reboot.
Code: Select all
echo "memory_limit = 512M" >> /usr/local/etc/php.ini
You do not have the required permissions to view the files attached to this post.
11.2.0.4 - Omnius (revision 6177) embedded -> XigmaNAS 12.0.0.4.6928 RootOnZFS
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
ASRock J3710-ITX, LAN: Winyao 2 ports; 16Gb RAM; WD 1Tbx2, WD 2Tb; UPS Powercom WOW500U.
- Toobie
- Starter
- Posts: 35
- Joined: 16 Jun 2015 12:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Thx for the advise, seems to workShperrung wrote: ↑02 May 2019 04:36I made the line in Command Script that modifies /.../php.ini after each reboot.PostinitCode: Select all
echo "memory_limit = 512M" >> /usr/local/etc/php.ini

-
- Starter
- Posts: 27
- Joined: 29 Apr 2019 18:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hi, I have this setup, I can get to the web interface, and the client connects, but I can't see any files, the web interface "files" page is blank, and the desktop client can't download/upload anything (get internal server error 500, and "connection refused"?) very annoying, as everything else is working...
my data directory is set up correctly as far as i'm aware too....
my data directory is set up correctly as far as i'm aware too....
-
- Starter
- Posts: 27
- Joined: 29 Apr 2019 18:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
-
- experienced User
- Posts: 75
- Joined: 26 May 2014 22:35
- Status: Offline
Re: [EXTENSION] NextOwnCloud
YES!! same with me! not just the icons, but the files showed missing too. I see that you commented on my post stating the fix. Does it fix both the icons AND the missing files or just the icons?Ghozer wrote: ↑10 May 2019 16:55Hi, I have this setup, I can get to the web interface, and the client connects, but I can't see any files, the web interface "files" page is blank, and the desktop client can't download/upload anything (get internal server error 500, and "connection refused"?) very annoying, as everything else is working...
my data directory is set up correctly as far as i'm aware too....
-
- Starter
- Posts: 27
- Joined: 29 Apr 2019 18:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
I manged to get the icon images back with the above cli edit, but my files don't show at all, not even a place for them (where as with the icons missing I could still click where they SHOULD be and it still worked) and I believe this is a different issue...chachi420 wrote: ↑10 May 2019 20:46YES!! same with me! not just the icons, but the files showed missing too. I see that you commented on my post stating the fix. Does it fix both the icons AND the missing files or just the icons?Ghozer wrote: ↑10 May 2019 16:55Hi, I have this setup, I can get to the web interface, and the client connects, but I can't see any files, the web interface "files" page is blank, and the desktop client can't download/upload anything (get internal server error 500, and "connection refused"?) very annoying, as everything else is working...
my data directory is set up correctly as far as i'm aware too....
- like I said in my post, I have an issue syncing, it gives an error in the NextCloud desktop client, it won't upload anything I put in Nextcloud folder, and won't download anything from the server....
-
- experienced User
- Posts: 75
- Joined: 26 May 2014 22:35
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Ghozer wrote: ↑10 May 2019 21:27I manged to get the icon images back with the above cli edit, but my files don't show at all, not even a place for them (where as with the icons missing I could still click where they SHOULD be and it still worked) and I believe this is a different issue...chachi420 wrote: ↑10 May 2019 20:46YES!! same with me! not just the icons, but the files showed missing too. I see that you commented on my post stating the fix. Does it fix both the icons AND the missing files or just the icons?Ghozer wrote: ↑10 May 2019 16:55Hi, I have this setup, I can get to the web interface, and the client connects, but I can't see any files, the web interface "files" page is blank, and the desktop client can't download/upload anything (get internal server error 500, and "connection refused"?) very annoying, as everything else is working...
my data directory is set up correctly as far as i'm aware too....
- like I said in my post, I have an issue syncing, it gives an error in the NextCloud desktop client, it won't upload anything I put in Nextcloud folder, and won't download anything from the server....
Ahhh this is really frustrating. Let's hope someone can point out what's going wrong.
- crest
- Hardware & Software Guru
- Posts: 873
- Joined: 02 Jul 2012 22:25
- Location: Vienna, Austria - GMT+1
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hello chachi420,
Which version of
- XigmaNAS,
- Nextcloud and
- browser
do you use?
Did you check the NC logs for errors?
There is - for example - one entry in NC Github -> Missing icons in Files app after upgrade to 14.0.3 which proposes to use
with success.
You could try the above command in the CLI like ...
maybe this solves your issues ...
Since I cannot reproduce your phenomenon I would strongly suggest to dig in the NC forums for other solutions ...
Best regards
crest
Did you try to get help in the Nextcloud forums?chachi420 wrote: ↑11 May 2019 00:07Ghozer wrote: ↑10 May 2019 21:27I manged to get the icon images back with the above cli edit, but my files don't show at all, not even a place for them (where as with the icons missing I could still click where they SHOULD be and it still worked) and I believe this is a different issue...chachi420 wrote: ↑10 May 2019 20:46YES!! same with me! not just the icons, but the files showed missing too. I see that you commented on my post stating the fix. Does it fix both the icons AND the missing files or just the icons?Ghozer wrote: ↑10 May 2019 16:55Hi, I have this setup, I can get to the web interface, and the client connects, but I can't see any files, the web interface "files" page is blank, and the desktop client can't download/upload anything (get internal server error 500, and "connection refused"?) very annoying, as everything else is working...
my data directory is set up correctly as far as i'm aware too....
- like I said in my post, I have an issue syncing, it gives an error in the NextCloud desktop client, it won't upload anything I put in Nextcloud folder, and won't download anything from the server....
Ahhh this is really frustrating. Let's hope someone can point out what's going wrong.
Which version of
- XigmaNAS,
- Nextcloud and
- browser
do you use?
Did you check the NC logs for errors?
There is - for example - one entry in NC Github -> Missing icons in Files app after upgrade to 14.0.3 which proposes to use
Code: Select all
occ maintenance:repair
You could try the above command in the CLI like ...
Code: Select all
sudo -u www php occ maintenance:repair
Since I cannot reproduce your phenomenon I would strongly suggest to dig in the NC forums for other solutions ...
Best regards
crest
NAS1: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI 760GM-P23; AMD Athlon(tm) II X2 250 7.58GiB RAM
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
- crest
- Hardware & Software Guru
- Posts: 873
- Joined: 02 Jul 2012 22:25
- Location: Vienna, Austria - GMT+1
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hello Toobie,
memory_limit = 512M
to the ini file /Your/Extension/Path/owncloud/z-nextowncloud-php.ini and hit Save on the extension configuration page to active. After restart of the server you will have the memory limit autmatically set and don't need an additional command script. This setting will be the default for the upcoming next extension version.
Regards
crest
If you use the NextOwnCloud extension you could addToobie wrote: ↑04 May 2019 13:58Thx for the advise, seems to workShperrung wrote: ↑02 May 2019 04:36I made the line in Command Script that modifies /.../php.ini after each reboot.PostinitCode: Select all
echo "memory_limit = 512M" >> /usr/local/etc/php.ini
![]()
memory_limit = 512M
to the ini file /Your/Extension/Path/owncloud/z-nextowncloud-php.ini and hit Save on the extension configuration page to active. After restart of the server you will have the memory limit autmatically set and don't need an additional command script. This setting will be the default for the upcoming next extension version.
Regards
crest
NAS1: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI 760GM-P23; AMD Athlon(tm) II X2 250 7.58GiB RAM
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
-
- Starter
- Posts: 27
- Joined: 29 Apr 2019 18:54
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Latest XigmaNAS from here, and whichever NextCloud installed with the "one button install" - hence why posting here...crest wrote: ↑11 May 2019 06:25Hello chachi420,
Did you try to get help in the Nextcloud forums?chachi420 wrote: ↑11 May 2019 00:07Ghozer wrote: ↑10 May 2019 21:27I manged to get the icon images back with the above cli edit, but my files don't show at all, not even a place for them (where as with the icons missing I could still click where they SHOULD be and it still worked) and I believe this is a different issue...chachi420 wrote: ↑10 May 2019 20:46YES!! same with me! not just the icons, but the files showed missing too. I see that you commented on my post stating the fix. Does it fix both the icons AND the missing files or just the icons?Ghozer wrote: ↑10 May 2019 16:55Hi, I have this setup, I can get to the web interface, and the client connects, but I can't see any files, the web interface "files" page is blank, and the desktop client can't download/upload anything (get internal server error 500, and "connection refused"?) very annoying, as everything else is working...
my data directory is set up correctly as far as i'm aware too....
- like I said in my post, I have an issue syncing, it gives an error in the NextCloud desktop client, it won't upload anything I put in Nextcloud folder, and won't download anything from the server....
Ahhh this is really frustrating. Let's hope someone can point out what's going wrong.
Which version of
- XigmaNAS,
- Nextcloud and
- browser
do you use?
Did you check the NC logs for errors?
There is - for example - one entry in NC Github -> Missing icons in Files app after upgrade to 14.0.3 which proposes to usewith success.Code: Select all
occ maintenance:repair
You could try the above command in the CLI like ...maybe this solves your issues ...Code: Select all
sudo -u www php occ maintenance:repair
Since I cannot reproduce your phenomenon I would strongly suggest to dig in the NC forums for other solutions ...
Best regards
crest
i'm not missing my icons, i'm only missing my files, it won't read them for the web interface, or desktop client...
the only errors I get are "Error 500" in the client, when trying to download from the server, or "connection refused" when trying to send to the server - it can read the file list, but that's where it stops - I believe my web client issue is related to the same..
the data paths are all correct, as are permissions (checked through NextCloud documentation for it)
I'll check other logs later when I get time, and report back!
- crest
- Hardware & Software Guru
- Posts: 873
- Joined: 02 Jul 2012 22:25
- Location: Vienna, Austria - GMT+1
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hello techlord,
Regards
crest
Refering to your screenshot - don't use /var/www as your webserver document root, use a persistant place on one of your shares, eg /mnt/data/www ...techlord wrote: ↑01 May 2019 14:42Hi guys!
Got a small issue with nextcloud.
I am installing it as per the described steps in this thread and everything works perfect but, at a NAS reboot, the nextcloud reverts to a preinstalation state.
So I reach this step:
nextcloud.PNG
I press install and follow the steps:
- access nextcloud url
- configure admin user
- point data folder to my folder
Everything works perfect
But after a reboot, the state reverts to pre-installed.
Any clue?
Regards
crest
NAS1: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI 760GM-P23; AMD Athlon(tm) II X2 250 7.58GiB RAM
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
- crest
- Hardware & Software Guru
- Posts: 873
- Joined: 02 Jul 2012 22:25
- Location: Vienna, Austria - GMT+1
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Hello all,
there is a new release (v0.3.5) of this extension available => [EXTENSION] NextOwnCloud.
UPDATES CAN BE DONE DIRECTLY VIA THE WEBGUI (Extension Maintenance Tab).
For a list of changes take a look at the Version History.
If someone wants to contribute to extension translations please refer to this topic => Translations for Extensions
Regards
crest
there is a new release (v0.3.5) of this extension available => [EXTENSION] NextOwnCloud.
UPDATES CAN BE DONE DIRECTLY VIA THE WEBGUI (Extension Maintenance Tab).
For a list of changes take a look at the Version History.
If someone wants to contribute to extension translations please refer to this topic => Translations for Extensions
Regards
crest
NAS1: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI 760GM-P23; AMD Athlon(tm) II X2 250 7.58GiB RAM
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
-
- NewUser
- Posts: 10
- Joined: 08 Dec 2017 16:34
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Thank you very much! That did the trick!crest wrote: ↑12 May 2019 08:55Hello techlord,
Refering to your screenshot - don't use /var/www as your webserver document root, use a persistant place on one of your shares, eg /mnt/data/www ...techlord wrote: ↑01 May 2019 14:42Hi guys!
Got a small issue with nextcloud.
I am installing it as per the described steps in this thread and everything works perfect but, at a NAS reboot, the nextcloud reverts to a preinstalation state.
So I reach this step:
nextcloud.PNG
I press install and follow the steps:
- access nextcloud url
- configure admin user
- point data folder to my folder
Everything works perfect
But after a reboot, the state reverts to pre-installed.
Any clue?
Regards
crest
- Snufkin
- Advanced User
- Posts: 293
- Joined: 01 Jul 2012 11:27
- Location: Etc/GMT-3 (BSD style)
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Extension upgrade was successful in both test and production environment
- XNAS 12.0.0.4, Nextcloud 16.0.1 RC1
- XNAS 11.2.0.4, Nextcloud 15.0.7
XNAS 11.3.0.4 embedded, ASUS P5B-E, Intel DC E6600, 4 GB DDR2, 2 x HGST HDN726040ALE614, 2 x WDC WD5000AAKS, Ippon Back Power Pro 400
- crest
- Hardware & Software Guru
- Posts: 873
- Joined: 02 Jul 2012 22:25
- Location: Vienna, Austria - GMT+1
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Good to see that your problem is solved, thanks for your reply

NAS1: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI 760GM-P23; AMD Athlon(tm) II X2 250 7.58GiB RAM
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
- crest
- Hardware & Software Guru
- Posts: 873
- Joined: 02 Jul 2012 22:25
- Location: Vienna, Austria - GMT+1
- Status: Offline
Re: [EXTENSION] NextOwnCloud
Thank you for your feedback, really appreciate your inputs !

NAS1: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI 760GM-P23; AMD Athlon(tm) II X2 250 7.58GiB RAM
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes:
NAS2: 11.2.0.4 - Omnius (Revision 6766) x64-embedded; MSI MS-7369; AMD Sempron(tm) LE-1250 8022MiB RAM
UPS: APC Back-UPS ES 550G
Extensions: OneButtonInstaller, Extended GUI, NextOwnCloud, BitTorrent Sync, Syncthing, Downloady, Midnight Commander, NCDU, MySQL, Rclone, Themes: