2003-02-07 09:00:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("db.inc");
|
|
|
|
require_once("util.inc");
|
|
|
|
require_once("download.inc");
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
$authenticator = init_session();
|
|
|
|
$user = get_user_from_auth($authenticator);
|
|
|
|
if ($user == NULL) {
|
|
|
|
print_login_form();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
page_head("Download BOINC software", $user);
|
2003-02-07 09:00:35 +00:00
|
|
|
|
|
|
|
echo "
|
2003-02-08 02:06:35 +00:00
|
|
|
Your account setup is complete.
|
|
|
|
<br>Next you must download the BOINC software.
|
|
|
|
<br>Click on the type of computer that you have:
|
2003-02-07 09:00:35 +00:00
|
|
|
<p>
|
|
|
|
";
|
|
|
|
|
|
|
|
print_download_links();
|
|
|
|
|
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
After the download is finished:
|
|
|
|
<ul>
|
|
|
|
<li><b>Windows users</b>:
|
2003-02-18 03:33:20 +00:00
|
|
|
open the downloaded file.
|
2003-02-07 09:00:35 +00:00
|
|
|
This will install BOINC on your computer.
|
2003-02-08 02:06:35 +00:00
|
|
|
<li><b>Macintosh OS/X users</b>: BOINC will install itself automatically.
|
2003-02-07 09:00:35 +00:00
|
|
|
<li><b>Unix and Linux users</b>:
|
|
|
|
Use gunzip and tar to extract BOINC.
|
|
|
|
</ul>
|
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
When BOINC first runs,
|
2003-02-07 09:00:35 +00:00
|
|
|
it will ask you for a project URL and an account key.
|
|
|
|
Copy and paste the following:
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>Project URL: <b>".MASTER_URL."</b>
|
2003-02-08 02:06:35 +00:00
|
|
|
<li>Account key: <b>$user->authenticator</b>
|
2003-02-07 09:00:35 +00:00
|
|
|
</ul>
|
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
This completes the ".PROJECT." installation.
|
|
|
|
<br>Thanks for participating in ".PROJECT.".
|
|
|
|
<br>Visit our <a href=index.php>main page</a> for more information.
|
2003-02-07 09:00:35 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
?>
|