This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Templates - where are they stored on UTM

Anybody know where the reverse authentication form templates are stored on the UTM? I've uploaded a html and png file and want to mirror them on another UTM so I just need to grab them off.



This thread was automatically locked due to age.
  • Louis,

    Off the top of my head I would use "find" from the command line after you SU up to locate files:

    find / -name '*.html' -or -name '*.HTML'

    The slant means that find will start searching in root and you can change that as needed to help narrow down the search because it is going to find a BOAT load of .html files:

    .. the OR statement helps out with case and most likely is not needed but wanted to include it for comparision.  Alternatively, if you know what the exact names of the files are you can search on that:

    find / -name exact-file-name-here.html

    Good hunting!

    John

  • The Images are stored here: /var/storage/chroot-http/etc/static/custom/

    Seems like the Templates are one Level higher in the Directory tree.

  • Lesson learned.   Always keep an offline copy of the template, since there is not a well-documented way to retrieve them.