Status Code 200 error in uploads folder
Hello there,
I'm getting this error in my version 23 installation.
The system check has detected that your uploads folder is returning a 200 status code, which indicates that it is publicly accessible. This suggests a serious issue in your server configuration that should be addressed immediately. Please visit our Post-Install and Server Config page for instructions to fix this issue.
I followed all the steps but I'm still stuck... What I don't understand is that the 200 status code is supposed to be a "success" status code...
Any suggestions?
I'm getting this error in my version 23 installation.
The system check has detected that your uploads folder is returning a 200 status code, which indicates that it is publicly accessible. This suggests a serious issue in your server configuration that should be addressed immediately. Please visit our Post-Install and Server Config page for instructions to fix this issue.
I followed all the steps but I'm still stuck... What I don't understand is that the 200 status code is supposed to be a "success" status code...

Any suggestions?
Comments
Forbidden
You don't have permission to access this resource.
Apache/2.4.41 (Ubuntu) Server at gibbon.cbc.edu.do Port 443
So I guess everything is set but in my own installation, but Gibbon still giving this warning... Guess the Gibbon system check needs a few tweaks there.
/etc/apache2/apache2.conf
The lines you're looking for are these: You want it to look like this:
Options FollowSymLinks AllowOverride None Require all granted
...So you remove the indexing feature.
Replace this:
< Directory /var/www/ >
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
< /Directory >
With this:
< Directory /var/www/ >
Options FollowSymLinks
AllowOverride None
Require all granted
< /Directory >
I had to add spaces to the < >, so make sure you're not copying and pasting from here. Just remove the word Indexes!
thank you!!!!!!!!!!!!
It's working fine now!