How to access otrs html page? [closed]

纵然是瞬间 提交于 2019-12-13 09:20:41

问题


I want to access otrs html page to change the customer page that came after login page. I have search over remote server where the otrs is located but did not found the html page. Any body know where i can get that?


回答1:


OTRS does not use pure HTML pages but it uses templates in what it calls .dtl format, which basically is valid HTML with placeholder tags which are rendered when accessing the pages.

The files are located in <OTRS DIRECTORY>/Kernel/Output/HTML/Standard/. The template for the customer login page is called CustomerLogin.dtl and is located in this directory.

The <OTRS_DIRECTORY> is dependent on your OS and installation. Most typically, on Linux, this would be /opt/otrs and on Windows it would be c:\OTRS\OTRS.

This said, for many changes to the Customer Portal, such as changing some of the text, or placing a logo, you actuallty don't need to modify the templates at all but you can do this by changing the configuration via the web interface. Please read the documentation for this.

Also, starting OTRS version 3.4 which will be out this summer, OTRS will no longer use the home-brew 'dtl' templates but it will rather use Template Toolkit, a standard Perl templating engine, as its templating solution. This will mean the extension of the templates will change from .dtl to .tt then.



来源:https://stackoverflow.com/questions/24029376/how-to-access-otrs-html-page

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!