Changes between Version 18 and Version 19 of FAQ


Ignore:
Timestamp:
08/14/12 14:11:13 (10 months ago)
Author:
uslackr
Comment:

typos

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v18 v19  
    88  }}} 
    99  What this does is two things.  
    10     1. it starts the deamon as "usual" with the same configuration and such. 
     10    1. it starts the daemon as "usual" with the same configuration and such. 
    1111    2. it enables debug logging and logs to the console. 
    12   This makes it quite easy to see what is going on and why things go wrong. . 
     12  This makes it quite easy to see what is going on and why things go wrong. 
    1313 
    1414== 2. Failed to open performance counters == 
    15  * The first thing to check is the version if you are using an old version (pre 0.3.x) upgrade! 
    16  * Second thing to check are your performance counters working? 
    17    Sometimes the performance counters end up broken end need to be rebuilt 
     15 * The first thing to check is the version. If you are using an old version (pre 0.3.x) upgrade! 
     16 * Second thing to check is whether the servers' performance counters working? 
     17   Sometimes the performance counters end up broken and need to be rebuilt. 
    1818   See forum post: TODO topic - 78 here for details or Microsoft KB: [http://support.microsoft.com/kb/300956] essentially you need to use the "lodctr /R" command. 
    1919 
     
    2323  - Check if the port is in use (netstat -a look for LISTENING) 
    2424 
    25 == 4. "EvenlogBuffer? is too small == 
     25== 4. "EventlogBuffer? is too small == 
    2626 * This is because you have one or more entries in your eventlog which are larger then the "default buffer size of 64k". The best way to fix this is to increase the buffer used. 
    2727{{{ 
     
    3333 
    3434There are hundreds of options not in the ini file (all covered in the docs though).  
    35 The default ini is more a "common ones" and not a complete set. 
     35The default .ini is more a "common ones" and not a complete set. 
    3636 
    37 the ini file that comes with the installation does not contain this variable by default. 
     37The ini file that comes with the installation does not contain this variable by default. 
    3838 
    3939 
     
    4545   - The parser is badly written so the only option is: 
    4646{{{ 
    47 CHeckSomething "this is a string" 
     47CheckSomething "this is a string" 
    4848CheckEventLog "filter-message=substr:Hello World" 
    4949}}} 
     
    6262 
    6363== 7. System Tray does not work == 
    64 === Older WIndows === 
    65 If you are using "older windows" (ie. XP and below) you can use the "old" sytray module like so: 
     64=== Older Windows === 
     65If you are using "older Windows" (ie. XP and below) you can use the "old" sytray module like so: 
    6666{{{ 
    6767[modules] 
     
    7272NSClient++ -noboot SysTray install 
    7373}}} 
    74 === "modern" windows === 
    75 If you are using "modern" windows ie. vista, 2k3, 2k8, etc etc there is no "session 0" (or there is but you do not see it by default) so they sytray (which ends up on session 0) wont be visible by your session 1 (or above). Thus I started work on a new "modern implementation" this comes in the form of a shared session (based on shared memory and mutexes). 
    76 '''But since this is rather new it is very experimental''' so use it with care! 
     74=== "Modern" Windows === 
     75If you are using "modern" Windows ie. Vista, 2k3, 2k8, etc., there is no "session 0" (or there is but you do not see it by default). So they sytray (which ends up on session 0) won't be visible by your session 1 (or above). Thus I started work on a new "modern implementation" this comes in the form of a shared session (based on shared memory and mutexes). 
     76'''Since this is rather new it is very experimental''' it with care! 
    7777To enable shared session do the following: 
    7878{{{