2004-02-03 06:40:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
|
|
|
|
init_session();
|
|
|
|
|
|
|
|
page_head("Download debugging files");
|
2004-02-05 07:49:32 +00:00
|
|
|
|
2004-02-03 06:40:47 +00:00
|
|
|
echo "
|
|
|
|
<h2>Download debugging files</h2>
|
|
|
|
<p>
|
|
|
|
<b>Windows users</b>:
|
|
|
|
<p>
|
2004-02-05 07:49:32 +00:00
|
|
|
If the BOINC application crashes, it is very helpful if you mail us the stack trace
|
2004-02-03 06:40:47 +00:00
|
|
|
(which shows exactly where the crash occurred).
|
2004-02-05 07:49:32 +00:00
|
|
|
To do this, you will need to have the symbol file on your computer.
|
|
|
|
<p>
|
|
|
|
<b>BOINC core client</b>
|
|
|
|
<p>
|
2004-02-10 07:02:38 +00:00
|
|
|
The zipped symbol file(s) are for the BOINC core client 2.25
|
2004-02-05 07:49:32 +00:00
|
|
|
(both GUI and CLI versions) are here:
|
2004-02-10 07:02:38 +00:00
|
|
|
<a href=http://setiboinc.ssl.berkeley.edu/ap/download/boinc_225_pdb.zip>boinc_225_pdb.zip</a>
|
2004-02-05 07:49:32 +00:00
|
|
|
<p>
|
|
|
|
Place the extracted file(s) in the same directory as the executable(s)
|
|
|
|
(usually <code>C:/Program Files/BOINC</code>).
|
|
|
|
<p>
|
2004-02-03 06:40:47 +00:00
|
|
|
<p>
|
2004-02-05 07:49:32 +00:00
|
|
|
<h2>Sending Debug Results</h2>
|
|
|
|
<p>
|
|
|
|
The files we are interested in are user.dmp and drwtsn32.log, they can be found in the Dr. Watson folder
|
|
|
|
(usually <code>C:/Documents and Settings/All Users/Application Data/Dr Watson</code>).
|
|
|
|
<p>
|
|
|
|
We would perfer the files to be zipped up with a compression program like winzip or gzip.
|
|
|
|
<p>
|
|
|
|
Be sure to include which version of BOINC and the project applications you are using in the email.
|
|
|
|
<p>
|
|
|
|
Thanks for helping make BOINC a better product.
|
2004-02-03 06:40:47 +00:00
|
|
|
<p>
|
|
|
|
<p>
|
|
|
|
";
|
2004-02-05 07:49:32 +00:00
|
|
|
|
2004-02-03 06:40:47 +00:00
|
|
|
page_tail();
|
|
|
|
?>
|