2004-10-09 Miguel de Icaza <miguel@ximian.com>
[mono.git] / web / issues
index ff5a11c2cf261d44458eca2a4b1c9c6690913c5c..abf91eeadfa7345501468745bc47766e3229dc8d 100644 (file)
@@ -36,10 +36,19 @@ Q: How do I fix the problem?
 A: If you are sure that no other Mono process is running, you can just
    delete the contents of the ~/.wapi directory:
 
+<pre>
        rm -i ~/.wapi/*
+</pre>
 
-   You can disable the use of the shared handles setup by setting the
-   MONO_DISABLE_SHM environment variable as well:
+   If you can not delete those files (because say, you have a running
+   Mono, you can disable the use of the shared handles setup by
+   setting the MONO_DISABLE_SHM environment variable as well:
 
+<pre>
+       # Notice: Highly discouraged
        bash$ export MONO_DISABLE_SHM=1
+</pre>
 
+   The above is highly discouraged as that will make process execution
+   fail, and without that many things like XSP/ASP.NET or the C#
+   compiler's -pkg: support will not work.