1. Copy the directory
Kernel/Output/HTML/Standard to Kernel/Output/HTML/[your company name].2. Customize the files in the directory
Kernel/Output/HTML/[your company name] and change the layout toyour needs
3. To activate the new theme for OTRS the database has to be changed manualy and the new theme has
to be added to the theme table in the OTRS database. Use the following commands with MySQL:
linux:~# mysql -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 26 to server version: 5.0.22-Debian_2-log
Type ’help;’ or ’\h’ for help. Type ’\c’ to clear the buffer.
mysql> use otrs;
mysql> INSERT INTO theme
-> (theme, valid_id, create_time, create_by, change_time, change_by)
-> VALUES
-> (’[your company name]’, 1, current_timestamp, 1, current_timestamp, 1);
mysql>