Mar
11
2011
Not a technical post but a useful piece of software… I was pissed off having so many windows on my desktop while connecting to different remote services. Till I found MRemote that lets you manage all your network connections in a single multi tab window. You can create Remote desktop, SSH, telnet, VNC and many […]
Tags: RDP, Software, SSH, Telnet, VNC
Oct
05
2010
Apache configuration that redirects HTTP to HTTPS URL for a webmail for instance: LoadModule rewrite_module modules/mod_rewrite.so RewriteEngine on # Activates Rewrite log RewriteLog “C:\Apache\logs\rewrite.log” RewriteLogLevel 1 RewriteCond %{HTTPS} off RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R,L]
Tags: Apache, Rewrite
Aug
16
2010
GLPI user has to select the group he belongs to when creating a ticket or else the field remains empty. This stored procedure automatically assigns all tickets to the user’s group. Setup a cron job to run it every so often. begin update SI_BD.glpi_tracking t set t.fk_group= ( SELECT g.id FROM SI_BD.glpi_users u, SI_BD.glpi_groups […]
Tags: GLPI, Mysql, SQL