Changes between Initial Version and Version 1 of ZeusProblems


Ignore:
Timestamp:
Nov 8, 2009, 10:46:04 PM (15 years ago)
Author:
Suren A. Chilingaryan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ZeusProblems

    v1 v1  
     1= Problems and Solutions =
     2
     3=== cFPcom_proxy eats almost all available CPU ===
     4For some reason, the cFPcom_proxy will use all CPU resources if it has been started before ZEUS is started and initialized.
     5To avoid this, the cFPcom_proxy should be started after ZEUS. One solution could be a batch file starting ZEUS and proxy:
     6{{{
     7"C:\Documents and Settings\All Users\Start Menu\Programs\ZEUS\ZEUS.lnk"
     8ping 1.1.1.1 -n 1 -w 60000 >NUL
     9"C:\Documents and Settings\All Users\Start Menu\Programs\ZEUS\cfpcom_proxy.lnk"
     10}}}
     11
     12However, this batch file can't be directly auto-started. Otherwise all commands in batch file will run simultaneously (don't ask me why, it is Windows).
     13Therefore, it can be started with
     14{{{
     15cmd.exe /c c:\zeus.bat
     16}}}
     17
     18Another problem: if German Windows is used, the path to ZEUS.lnk and cfpcom_proxy.lnk is different and include umlauts. cmd.exe does nto support umlauts in path names (or some mystic encoding should be used). The best would be to copy .lnk files to some directory without umlauts in path name and executed them from there.
     19
     20If there is still problems while running from autostart menu, the [http://www.nncron.ru/ nncron] application can be used to run zeus.bat at startup (lite version is not enough). The crontab should look like this:
     21{{{
     22#( zeus
     23 Time: START-TIME
     24 Action:
     25 StartIn: "C:\"
     26 ShowNormal   NormalPriority
     27 START-APPW: C:\zeus.bat
     28)#
     29}}}