Changes between Version 21 and Version 22 of ServerIntro


Ignore:
Timestamp:
Jul 14, 2007, 9:41:06 AM (17 years ago)
Author:
Nicolas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ServerIntro

    v21 v22  
    7373grant all on *.* to nobody identified by 'password';
    7474}}}
    75  * Set your PATH variable to include MySQL programs (typically /usr/local/mysql and /usr/local/mysql/bin).
     75 * Set your `PATH` environment variable to include MySQL programs (typically /usr/local/mysql and /usr/local/mysql/bin).
    7676 * You'll need to back up your database. Generally this requires stopping the project, making a copy or snapshot, and restarting. An example is [http://boinc.berkeley.edu/mysql_backup.txt here].
    7777 * BOINC gets MySQL compiler and linker flags from a program called mysql_config which comes with your MySQL distribution. This sometimes references libraries that are not part of your base system installation, such as -lnsl or -lnss_files. You may need to install additional packages (often you can use something called 'mysql-dev' or 'mysql-devel') or fiddle with Makefiles.
     
    8080
    8181=== MySQLclient notes ===
    82  * Configure mysql with the --enable-thread-safe-client switch.
    83  * Set your LD_LIBRARY_PATH to refer to the correct library.
     82 * Configure mysql with the `--enable-thread-safe-client` switch.
     83 * Set your `LD_LIBRARY_PATH` to refer to the correct library.
    8484
    8585=== Apache notes ===
    86 In httpd.conf, set the default MIME type as follows (otherwise you'll get file upload signature verification errors):
     86In `httpd.conf`, set the default MIME type as follows (otherwise you'll get file upload signature verification errors):
    8787
    8888{{{
     
    9090}}}
    9191
    92 To limit denial-of-service attacks, we recommend turning off directory indexing by adding -Indexes to the Options directive.
     92To limit denial-of-service attacks, we recommend turning off directory indexing by adding `-Indexes` to the [http://httpd.apache.org/docs/2.0/mod/core.html#options Options] directive.
    9393
    9494=== PHP notes ===
    9595
    96  * Make sure 'magic quotes' are enabled (this is the default). The file /etc/php.ini should contain
     96 * Make sure 'magic_quotes' are enabled (this is the default). The file `/etc/php.ini` should contain
    9797{{{
    9898magic_quotes_gpc = On
    9999}}}
    100  * By default, BOINC uses PHP's mail function to send email to participants. This uses sendmail. If this doesn't work, you can use [http://phpmailer.sourceforge.net/ PHPMailer] instead, which is a very flexible mail-sending mechanism. To do this:
     100 * By default, BOINC uses PHP's `mail` function to send email to participants. This uses sendmail. If this doesn't work, you can use [http://phpmailer.sourceforge.net/ PHPMailer] instead, which is a very flexible mail-sending mechanism. To do this:
    101101  * Download PHPMailer and put it under PROJECT/html/inc/phpmailer.
    102102  * Set the following variables in your PROJECT/html/project/project.inc file (substitute your own values):