I installed the nextcloud via softaculous, and I have the pro version of centos web panel, the problem is that when starting Nextcloud, does not appear folders or files in the site.
And when I try to create a folder or send a file says that I do not have permissions to do so. Can anyone help?
I’ve already tried putting the data folder to 777 but it still does not work.
I have a VPS with 4gb ram, dual core. And thus configuration:
Apache version: Apache/2.4.29
PHP version: 7.1.9
MySQL version: 10.1.31-MariaDB
The data are in home/user/nextclouddata
The website are in home/user/html(something this)/
Some Images:
In this moment I have this warnings in admin panel of nextcloud:
This is what happens when I try to delete notifications on the right side of the screen:
When I drag files to upload, this happens (Translation:You don’t have permission to upload or create files here):
execute the following on command line and post output here:
ls -l home/user/ | grep -E "nextclouddata|html"
ps -ef | grep apache | grep -vE “root|grep” | awk ‘{print $1}’ | uniq
grep -R open_basedir /etc/php*/
post your config.php here (remove sensitive data before!!)
home/user/html(something this)/config/config.php
Could you furthermore fix the other error message regarding opcache (you have to set the suggested values in your php.ini) and your header settings?
What is that regarding “WebDav interface seems to be broken”? Do you have any idea so far, where this is coming from?
[root@4321 /]# grep -R open_basedir /etc/php*/
grep: /etc/php*/: No such file or directory
Could you furthermore fix the other error message regarding opcache (you have to set the suggested values in your php.ini) and your header settings? All Values opcache are the same i have
What is that regarding “WebDav interface seems to be broken”? Do you have any idea so far, where this is coming from? No
Syntax OK
dav_module (static)
dav_fs_module (static)
dav_lock_module (static)
If you show like this, okey go to step 3
Step 3:
Replace with these codes:
<Directory "/home/*/public_html">
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
Step 4: (for Nextcloud/Owncloud and other cloud app)
Add the bottom of the page
<Limit GET POST>
order deny,allow
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
allow from all
</Limit>