• Home
  • Cisco
  • Linux
  • Network
  • Virtualization
  • Windows
  • Links
  • About
  •  

    Welcome to the Admins Handbook


    This is indeed the IT administrators' handbook.
    You will not find long tutorials and guides here, only the commands to get the job done.

    You properly know how to do things; you just need a little "hint" now and then.

    The handbook have 82 posts

    Microsoft Office Outlook kan ikke startes. Outlook-vinduet kan ikke åbnes

    August 26th, 2010

    If you get this error when trying to open Outlook:
    Microsoft Office Outlook kan ikke startes. Outlook-vinduet kan ikke åbnes (Danish).
    Microsoft Office Outlook cannot start. Outlook window cannot be opened (English)

    You can try this commands i “Run”.
    Outlook.exe /resetnavpane
    Or:
    Outlook.exe /cleanprofile


    Add mime type in htaccess

    August 16th, 2010

    In the .htaccess add this line to support .flv files:
    AddType video/x-flv .flv


    Mysql process sleep – wait_timeout

    August 2nd, 2010

    If the DB connections are not closed they can fill your system up with “sleeping” processes.
    Then mysql can be slow but to minimize this behavior
    Add this line to my.cnf

    wait_timeout=60 (1 min)

    max_connections = 2000


    htaccess – Allow from IP

    July 14th, 2010

    Prompt for access, except the allowed IP’s

    AuthUserFile /www/site.com/www/homepage/.htpasswd
    AuthType Basic
    AuthName “Password Protected Area”
    require valid-user
    order deny,allow
    deny from all
    allow from 123.123.123.123 122.122.122.122
    Satisfy Any