Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default logo does not show up #9

Closed
excodex opened this issue Mar 18, 2020 · 2 comments
Closed

Default logo does not show up #9

excodex opened this issue Mar 18, 2020 · 2 comments

Comments

@excodex
Copy link

excodex commented Mar 18, 2020

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
Copy link
Owner

kenlog commented Apr 6, 2020

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
Copy link
Author

excodex commented Apr 6, 2020

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

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants