You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have not changed anything in the config.php because I am fully satisfied with the default logo, but it does not show up. When I open the direct link to the file in the browser URL bar, it loads the dashboard page.
Hi @RazrSaw most likely access to the folder is denied add an .htaccess file in the following path files/Nebula/Assets/images/
Example for Apache
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png)$">
Allow from all
</Files>
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png)$">
Require all granted
</Files>
</IfModule>
Hello,
I have not changed anything in the config.php because I am fully satisfied with the default logo, but it does not show up. When I open the direct link to the file in the browser URL bar, it loads the dashboard page.
https://i.imgur.com/xCOQeQH.png
Any ideas?
Thanks in advance!
The text was updated successfully, but these errors were encountered: