Hi, list.<br>I wanted to set up mapserver (ms4w) to work in FastCGI mode with Oracle database. Did everything as desribed in the readme_install guide and got the same error (Apache logs:
&quot;mod_fcgid: get overlap result error&quot;).<br>Later, looking deeper into the problem, found that mapserv.exe is looking for a file OCI.DLL in all PATH directories, and if in does not find it, it crashes, and apache server writes the known string into logs.<br>

So, the problem was resolved through adding the directory, containing oci.dll (usualy ORACLE_HOME/BIN) into PATH of the fcgi module something like this:<br>&lt;IfModule fcgid_module&gt;<br>    ....<br>    DefaultInitEnv PATH        &quot;c:/ms4w/Apache/cgi-bin;c:/WINDOWS/system32;c:/WINDOWS;c:/WINDOWS/System32/Wbem;c:/OracleClient/BIN&quot;<br>

    ....<br>&lt;/IfModule&gt;<br><br>Now everything seems to work well :-)<br><br>hope this can be useful.<br>regards,<br>michael.<br>