Redmine custom logo not appearing -
i have installed redmine , i've been playing around few themes. having trouble installing custom logo. add new file in correct folder , reference in correct stylesheet when inspect in browser says "failed load given url"
i tried making changes base.html.erb file , did not show either.
simple changes stylesheet work however.
thanks :)
man, doing redmine customization not easy got it. followed tutorial, http://www.redmine.org/projects/redmine/wiki/howto_add_a_logo_to_your_redmine_banner
however did not work on system added few commands of own. if these commands not work try adding sudo in front of them. prompt admin password.
near end, tut tells in command line:
chown redmine:redmine /opt/redmine/public/images/logo.png
now using apache path more this
chown apache:apache /var/www/redmine/public/images/logo.png
anyway tried , still had no effect, additions doing either under public/images or public/themes chose target public folder. may bad practice when going live working locally on virtual machine.
here worked:
chown -r apache:apache /var/www/redmine/public chmod -r 775 apache:apache /var/www/redmine/public
the -r stands recursive effects child files too. chmod 775 allows read, write, execute permission owner & group, , read, execute permissions other.
restart server after (the command different depending on setup, refer tut)
/etc/init.d/httpd restart
this confusing me @ first let me know if needs more clarification on subject. using redmine installed on centos virtual box.
Comments
Post a Comment