How to replace favicon icon with custom logo and OEM brand name()

How to replace the below favicon icon with custom logo and OEM brand name.

Comments

  • Please read 
    https://www.repetier-server.com/startup-configuration/
    chapter branding there the custom logo is the example. At least if you mean the logo in ui.

    Also make sure you have read this document:
    https://www.repetier-server.com/manufacturer-guide/

  • hi,

    i have made the below changes

     <branding>
        <shadow-www-directory>/home/pi/Logo/splash.png</shadow-www-directory>
        <branded-name>MY_BRAND_NAME</branded-name>
    </branding>

    on path -
    pi@VOXELSTUDIO:/usr/local/Repetier-Server/etc $ sudo view RepetierServer.xml

    still the changes are not getting reflected.
    Also, where do I find the shadow folder? or I need to create the shadow folder?
  • Best place is /var/lib/Repetier-Server/www which gets assigned the correct user on server start. /home/pi is normally not a good idea - that is home directory of user pi which has nothing to do with server. And please dedicate a own subdirectory for shadow dir, do not use an existing except /var/lib/Repetier-Server/www which is the designed place for it. Server is even run as different user (repetier-server) which can lead to problems reading from it. And yes if folder does not exist you must create it and make it readable for repetier-server.

    Also make no changes to RepetierServer.xml - make a copy to RepetierServer-extra.xml and edit that version to override settings! Every update will overwrite RepetierServer.xml which contains our defaults!
  • I have made the below changes -

    1. pi@VOXELSTUDIO:/usr/local/Repetier-Server/etc $ sudo cp RepetierServer.xml /var/lib/Repetier-Server/www/
    2. pi@VOXELSTUDIO:/var/lib/Repetier-Server/www $ sudo mv RepetierServer.xml  RepetierServer-extra.xml
    3. pi@VOXELSTUDIO:/var/lib/Repetier-Server/www $ ls -ltr
    total 16
    -rw-r--r-- 1 root root 13208 Apr 23 00:42 RepetierServer-extra.xml
    4. Updated the above file and added the branding tag (as highlighted below)


    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <server>
        <installation-directory>/usr/local/Repetier-Server/</installation-directory>
        <storage-directory>/var/lib/Repetier-Server/</storage-directory>
        <default-language>en</default-language>
        <port>3344</port>
        <https-port>3345</https-port>
        <disableIPV6>false</disableIPV6><!-- setting to false can cause problems with external access -->
        <!-- To prevent clickjacking we should disallow embedding in iframes -->
        <allow-iframe-embedding>false</allow-iframe-embedding>
        <logging>true</logging>
        <backlog-size>1000</backlog-size>
        <!-- how many files should be stored in the last printed files list -->
        <last-printed-files store="10"/>
        <max-log-files-per-printer>5</max-log-files-per-printer>
        <printer-frontend-url>/modules/front2/www/app.html</printer-frontend-url>
        <web-frontend-url>/</web-frontend-url>
        <custom-ssl-certificate-store></custom-ssl-certificate-store><!--If you want to add your own SSL certificates, please enter here the directory where your certificate is stored. Note: only certificates with the extension .pem will be considered-->
        <unixSocket></unixSocket><!-- path to unix socket for socket communication - leave empty to disable feature -->
        <features>
        <branding>
                <shadow-www-directory>/usr/local/Repetier-Setup/www/</shadow-www-directory>
        <branded-name>VOXELSTUDIO</branded-name>
        </branding>

            <!-- ========= Control which config options appear in global settings for whom ========= -->

    after saving this file it still did not update the branding
  • /var/lib/Repetier-Server/www/ is wrong place for RepetierServer-extra.xml. It must be in usr/local/Repetier-Server/etc
    The www folder is just for shadow directory.

    Also you need to restart  Repetier-Server to make server to use the changes.
Sign In or Register to comment.