Merge pull request #34 from int2001/def_creds

Changed default credentials to 4w7est/password
This commit is contained in:
HB9HIL
2024-01-26 11:04:14 +01:00
committed by GitHub
3 changed files with 5 additions and 4 deletions

View File

@@ -437,7 +437,7 @@ CREATE TABLE `users` (
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES ('4', 'm0abc', '$2a$08$r9UF3YhipAY6htSQoZRjeOFDx3Yuh7Zjuh45vKyUN4gO8g5l.saES', 'demo@demo.com', '99', 'M0ABC', 'io91js', 'Demo', 'Account', '0', null, null, null, null, null);
INSERT INTO `users` VALUES ('4', '4w7est', '$2y$10$WFGFdNK.I4X0z1qXxjqrEeMvy65M2OyxJiNcNCY0gQ4KzeCCKms02', 'demo@demo.com', '99', '4W7EST', 'HH44aa', 'Demo', 'Account', '0', null, null, null, null, null);

View File

@@ -354,6 +354,7 @@ $config['allow_get_array'] = TRUE;
|
*/
$config['log_threshold'] = 0;
$config['one_log'] = false;
/*
|--------------------------------------------------------------------------

View File

@@ -159,11 +159,11 @@ if($_POST) {
<h2>Demo User Account</h2>
<ul>
<li>Username: m0abc</li>
<li>Password: demo</li>
<li>Username: 4w7est</li>
<li>Password: password</li>
</ul>
<p>When you login create a new admin account and delete the m0abc user account.</p>
<p>When you login create a new admin account and delete the 4w7est user account.</p>
<?php else: ?>
<p class="error">Please make the /application/config/ folder writable. <strong>Example</strong>:<br /><br /><code>chmod -R 777 /application/config/</code><br /><br /><i>Don't forget to restore the permissions afterwards.</i></p>