2003-02-07 09:00:35 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
include_once("../inc/db.inc");
|
|
|
|
include_once("../inc/util.inc");
|
|
|
|
include_once("../inc/prefs.inc");
|
2003-02-07 09:00:35 +00:00
|
|
|
|
|
|
|
db_init();
|
2003-03-19 21:01:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-02-07 09:00:35 +00:00
|
|
|
|
2004-05-11 22:49:23 +00:00
|
|
|
page_head("Account setup: done");
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
2003-02-08 02:06:35 +00:00
|
|
|
<h3>Account setup: done</h3>
|
2003-02-07 09:00:35 +00:00
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
Your account setup is complete.
|
|
|
|
<br>Next you must tell your computer(s) to use this account.
|
2003-02-07 09:00:35 +00:00
|
|
|
<ul>
|
|
|
|
<li><b>Windows users:</b>
|
|
|
|
Open the BOINC application window by
|
|
|
|
double-clicking the BOINC system tray icon.
|
2004-12-10 00:30:05 +00:00
|
|
|
Choose the 'Attach to Project' item in the Settings menu.
|
2004-03-03 22:45:06 +00:00
|
|
|
It will ask you for a project URL and an account ID.
|
2004-06-10 19:43:54 +00:00
|
|
|
<li><b>Mac, Unix and Linux users:</b>
|
2003-02-07 09:00:35 +00:00
|
|
|
Quit the BOINC client.
|
|
|
|
Then run the BOINC client program with the -add_project option.
|
2004-03-03 22:45:06 +00:00
|
|
|
It will ask you for a project URL and an account ID.
|
2003-02-07 09:00:35 +00:00
|
|
|
</ul>
|
|
|
|
In each case copy and paste the following:
|
|
|
|
<ul>
|
|
|
|
<li>Project URL: <b>".MASTER_URL."</b>
|
2004-03-03 22:45:06 +00:00
|
|
|
<li>Account ID: $user->authenticator
|
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.".
|
2003-02-07 09:00:35 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|