[global]
Welcome Title = <div style="text-align: center;">log-book.</div>
; Se puede poner un vinculo havcia un sitio web y cambiar la imagen
; Esta imagen debe encontrarse en el directorio \ELOG\themes\default
Title image = <img border=0 src="logo.gif">
; Para mas seguridad se puede cambiar el puerto de ELOG
port = 2
;Uso de https para la connexion
SSL = 1
; Se debe reemplazar estos datos con los datos del servidor de mail de la empresa si se debe (o quiere) mandar emails
SMTP host = toto.com
Language = spanish
Main Tab = Accueil
Bottom text = <div style="text-align: center;">Elog backups <img src="logo.png"></div>
Email format = 111
logfile = Archivo_de_logs.txt
Logging level = 2
;Display mode = threaded
; Los usuarios deben crear una cuenta para poder utilizar la nueva herramienta
Password file = Usuarios.txt
Self register = 2
; La contraseña nominal es: admin, se puede cambiar si necesario
Admin user = administrador
; Si se quiere restringir los derechos de delete
Allow Delete = administrador
; Si se quiere restringir los derechos de modificacion
; Allow Edit = administrador
; Si se quiere restringir los derechos de créacion
; Allow New = administrador
Menu commands = List, Find, New, Delete, Reply, Logout, Help
List Menu commands = Find, New, Logout, Help
Guest Menu commands = List, Find, Login, Help
Guest List Menu commands = Find, Login, Help
[Backups del sistema]
Theme = default
Comment = test backup - Logbook Program
Welcome title = <img src="logo.gif"><p><font size=5 color=white>Welcome to our Elog</font>
Attributes = Usuario, Tarea, Fecha Operacion, Status, Subsistema, Base de Datos
IOptions Status= "Delete-icon.png", "Check-icon.png"
Icon comment Delete-icon.png = Failed
Icon comment Check-icon.png = OK
Thread Icon = Status
Thread Display = $Fecha Operacion,$Tarea,$Subsistema
Locked Attributes = Usuario
Required Attributes = Usuario, Tarea, Fecha Operacion, Status, Subsistema, Base de Datos
Preset Usuario = $long_name
Options Tarea = Backup, Restore
Options Subsistema = DBMGR {a}, MCH {b}, ALL {c}
{a}MOptions Base de Datos = ALL BASES, base1, base2, base3, base4
{b}MOptions Base de Datos = ALL, BD1, BD2, BD3
{c} Locked Attributes = Usuario
{c} Show Attributes Edit= Usuario, Tarea, Fecha Operacion, Status, Subsistema
{c} Required Attributes = Usuario, Tarea, Fecha Operacion, Status, Subsistema
Message comment = Commentarios:
Type Fecha Operacion = date
Preset Fecha Operacion = $date
Mode commands = 1
Display Mode = threaded
Page Title = Backups del sistema - $subject
;Reverse sort = 1
;Quick filter = Date, Tarea, Subsistema
|
Hi again,
I was wondering if one could use a conditional statement on an IOption attribute? Indeed i try to do a visual logbook (a green check for OK result, a red cross for NOK result), unfortunately i cannot refer to the attributes value for conditional test, e.g:
IOptions Status= "Delete-icon.png" {1}, "Check-icon.png"{2}
Icon comment Delete-icon.png = Failed
Icon comment Check-icon.png = OK
{1} Show Attribute Edit = Attribute1, Attribute2
Thread Icon = Status
Attribute1 and 2 do not have any sense if the result was successful,
ELOG interprets the {1} and {2} as being part of the icon name!
thanks again for your help
FX |
Recently I have had problems with ELOG not accepting the certificates (in this case from https://letsencrypt.org/) probably due to the old version of the SSL library of the binary distribution for Windows.
I have tried to follow the instructions to set up ELOG to work with Apache but they are probably old.
I have a simple solution for the Apache installation of XAMPP, the example is for two separate logbooks using each its own ELOG service on the same server:
1. I have set up the two ELOG to run as http://my.server.example.com:8080/ and as http://my.server.example.com:8081/
2. in c:\xampp\apache\conf\httpd.conf I have enabled the following (I am not sure if all the modules are really needed but this works for me):
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule headers_module modules/mod_headers.so
LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule xml2enc_module modules/mod_xml2enc.so
3. still in c:\xampp\apache\conf\httpd.conf, at the very end of the file I added the following:
ProxyRequests off
Redirect permanent /app1 https://my.server.example.com/app1/
ProxyPass /app1/ http://my.server.example.com:8080/
ProxyHTMLURLMap http://my.server.example.com:8080 /app1
Redirect permanent /app2 https://my.server.example.com/app2/
ProxyPass /app2/ http://my.server.example.com:8081/
ProxyHTMLURLMap http://my.server.example.com:8081 /app2
This way I can now connect to the two ELOG using https://my.server.example.com/app1/ and https://my.server.example.com/app2/ without troubles and no additional setting to either the configuration files of ELOG nor any need for virtual hosts, ...
I hope this might be of use.
|