Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Change Log - v0.2.2
- Moved file list from config.php to the database to be easier to add and remove file paths
- Added version to the configuration table to aid in the upgrading of Userfrosting
- Added dev_env to config.php as well as new setting to db-setting.php when set to true UF will no longer check for the install or upgrade directory (good for development defaults to FALSE)
- Removal of models/captcha.php and replace with base64 captcha function.

[Older changes](CHANGELOG.md)

Expand Down
2 changes: 1 addition & 1 deletion install/install_db.php
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
(10, 'root_account_config_token', '" . md5(uniqid(mt_rand(), false)) . "'),
(11, 'email_login', '".$selected_email."'),
(12, 'token_timeout', '10800'),
(13, 'version', $version);
(13, 'version', '0.2.2');
";

$pages_sql = "CREATE TABLE IF NOT EXISTS `".$db_table_prefix."pages` (
Expand Down
2 changes: 1 addition & 1 deletion models/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function logAllErrors($errno, $errstr, $errfile, $errline, array $errcontext) {

// This will stop the installer / upgrader from running as it normally would and should always be set to false
// Options TRUE | FALSE bool
$dev_env = TRUE;
$dev_env = FALSE;

require_once("db-settings.php"); //Require DB connection
require_once("funcs.php");
Expand Down
2 changes: 1 addition & 1 deletion models/db-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
//Database Information
$db_host = "localhost"; //Host address (most likely localhost)
$db_name = "userfrosting"; //Name of Database
$db_user = "root"; //Name of database user
$db_user = "username"; //Name of database user
$db_pass = "password"; //Password for database user
$db_table_prefix = "uf_";

Expand Down