Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion conf/site.conf.dist
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ $server_root_url = ''; # e.g. 'https://webwork.yourschool.edu' or 'http://l


$webwork_server_admin_email ='';
# password strings (or any other string allowing special characters) should be specified inside single quotes
# otherwise a string such as "someone@nowhere" will interpolate the contents of the array @nowhere -- which is probably
# empty, but still not what you want. Similar things happen with % and $
################################################################################
# Paths to external programs
################################################################################
Expand Down Expand Up @@ -244,7 +247,10 @@ $database_character_set=($ENABLE_UTF8MB4) ? 'utf8mb4' : 'utf8';
# DATABASE login information
# The following two variables must match the GRANT statement run on the mysql server as described above.
$database_username ="webworkWrite";
$database_password ="passwordRW";
$database_password ='passwordRW';
# password strings (or any other string allowing special characters) should be specified inside single quotes
# otherwise a string such as "someone@nowhere" will interpolate the contents of the array @nowhere -- which is probably
# empty, but still not what you want. Similar things happen with % and $

#################################################################################
# These variables describe the locations of various components of WeBWorK on your
Expand Down