kenlog / Nebula

Modern theme for kanboard + syntax highlighting for Markdown code :dash:
https://kanboard.org
MIT License
82 stars 8 forks source link

Default logo does not show up #9

Closed excodex closed 4 years ago

excodex commented 4 years ago

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!

kenlog commented 4 years ago

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>
excodex commented 4 years ago

You mean the correct path is data/files/Nebula/Assets/images/

Yes, now working! Thank you so much! :)