Fix admin login

This commit is contained in:
Damillora 2020-02-09 19:51:57 +07:00
parent 6bc10e3728
commit 1d1e0888d2
5 changed files with 86 additions and 2 deletions

View File

@ -0,0 +1,81 @@
<?php
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
| ['hostname'] The hostname of your database server.
| ['username'] The username used to connect to the database
| ['password'] The password used to connect to the database
| ['database'] The name of the database you want to connect to
| ['dbdriver'] The database type. ie: mysql. Currently supported:
mysql, mysqli, postgre, odbc, mssql, sqlite, oci8
| ['dbprefix'] You can add an optional prefix, which will be added
| to the table name when using the Active Record class
| ['pconnect'] TRUE/FALSE - Whether to use a persistent connection
| ['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
| ['cache_on'] TRUE/FALSE - Enables/disables query caching
| ['cachedir'] The path to the folder where cache files should be stored
| ['char_set'] The character set used in communicating with the database
| ['dbcollat'] The character collation used in communicating with the database
| NOTE: For MySQL and MySQLi databases, this setting is only used
| as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
| (and in table creation queries made with DB Forge).
| There is an incompatibility in PHP with mysql_real_escape_string() which
| can make your site vulnerable to SQL injection if you are using a
| multi-byte character set and are running versions lower than these.
| Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
| ['swap_pre'] A default table prefix that should be swapped with the dbprefix
| ['autoinit'] Whether or not to automatically initialize the database.
| ['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
| - good for ensuring strict SQL while developing
|
| The $active_group variable lets you choose which connection group to
| make active. By default there is only one group (the 'default' group).
|
| The $active_record variables lets you determine whether or not to load
| the active record class
*/
$active_group = 'default';
$active_record = TRUE;
$db['default']['hostname'] = 'database';
$db['default']['username'] = 'SA';
$db['default']['password'] = 'yuikamitsumine!!1';
$db['default']['database'] = 'BLUEFIREDATABASE';
$db['default']['dbdriver'] = 'sqlsrv';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = FALSE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = FALSE;
$db['default']['stricton'] = FALSE;
$db['BLUEFIREDATABASE']['hostname'] = 'database';
$db['BLUEFIREDATABASE']['username'] = 'SA';
$db['BLUEFIREDATABASE']['password'] = 'yuikamitsumine!!1';
$db['BLUEFIREDATABASE']['database'] = 'BLUEFIREDATABASE';
$db['BLUEFIREDATABASE']['dbdriver'] = 'sqlsrv';
$db['BLUEFIREDATABASE']['dbprefix'] = '';
$db['BLUEFIREDATABASE']['pconnect'] = FALSE;
$db['BLUEFIREDATABASE']['db_debug'] = true;
$db['BLUEFIREDATABASE']['cache_on'] = FALSE;
$db['BLUEFIREDATABASE']['cachedir'] = '';
$db['BLUEFIREDATABASE']['char_set'] = 'utf8';
$db['BLUEFIREDATABASE']['dbcollat'] = 'utf8_general_ci';
$db['BLUEFIREDATABASE']['swap_pre'] = '';
$db['BLUEFIREDATABASE']['autoinit'] = FALSE;
$db['BLUEFIREDATABASE']['stricton'] = FALSE;

View File

@ -2,7 +2,7 @@
<div class="login-container">
<div class="container inner">
<div class="login-box box-container">
<router-link to="/admin" class="admin-login">Login as Admin</router-link>
<router-link to="/admin/login" class="admin-login">Login as Admin</router-link>
<form class="login-form">
<div class="form-input">
<label for="Username">Username</label>

View File

@ -1 +1 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>bluefire-frontend</title><link href=/css/app.532182ec.css rel=preload as=style><link href=/css/chunk-vendors.e6574c94.css rel=preload as=style><link href=/js/app.fa5962da.js rel=preload as=script><link href=/js/chunk-vendors.bb705174.js rel=preload as=script><link href=/css/chunk-vendors.e6574c94.css rel=stylesheet><link href=/css/app.532182ec.css rel=stylesheet></head><body><noscript><strong>We're sorry but bluefire-frontend doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.bb705174.js></script><script src=/js/app.fa5962da.js></script></body></html>
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>bluefire-frontend</title><link href=/css/app.532182ec.css rel=preload as=style><link href=/css/chunk-vendors.e6574c94.css rel=preload as=style><link href=/js/app.1bcfdce8.js rel=preload as=script><link href=/js/chunk-vendors.bb705174.js rel=preload as=script><link href=/css/chunk-vendors.e6574c94.css rel=stylesheet><link href=/css/app.532182ec.css rel=stylesheet></head><body><noscript><strong>We're sorry but bluefire-frontend doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.bb705174.js></script><script src=/js/app.1bcfdce8.js></script></body></html>

2
js/app.1bcfdce8.js Normal file

File diff suppressed because one or more lines are too long

1
js/app.1bcfdce8.js.map Normal file

File diff suppressed because one or more lines are too long