/home/techb158/exp.abdallabala.com/application/controllers
NameSizeModeActions
.DS_Store61480644editdlrm
accounts.php77290644editdlrm
admin.php67330644editdlrm
ajax.date-summary.php37960644editdlrm
ajax.expense-calendar.php10310644editdlrm
ajax.income-calendar.php9970644editdlrm
api.php75950644editdlrm
appearance.php20290644editdlrm
autologin.php15990644editdlrm
board.php9890644editdlrm
calendar.php49490644editdlrm
client.php630190644editdlrm
clx_api.php431780644editdlrm
console.php57000644editdlrm
contacts.php612540644editdlrm
cp.php15570644editdlrm
customers.php970644editdlrm
dashboard-alt.php320644editdlrm
dashboard.php365810644editdlrm
default.php1420644editdlrm
delete.php96310644editdlrm
demo.php6890644editdlrm
documents.php54930644editdlrm
editor.php21490644editdlrm
export.php48740644editdlrm
files.php12430644editdlrm
generate.php14680644editdlrm
help.php3810644editdlrm
ibtest.php2110644editdlrm
index.html1120644editdlrm
invoices.php581820644editdlrm
iview.php14100644editdlrm
jsonapi.php47010644editdlrm
jsonexport.php33120644editdlrm
legacy.php250644editdlrm
login.php64400644editdlrm
logout.php800644editdlrm
orders.php88460644editdlrm
plugins.php4260644editdlrm
ps.php100160644editdlrm
quotes.php393340644editdlrm
reorder.php24040644editdlrm
reports.php262270644editdlrm
search.php21250644editdlrm
settings.php1100910644editdlrm
sys_imgcrop.php39380644editdlrm
tags.php19130644editdlrm
tax.php50240644editdlrm
transactions.php285610644editdlrm
update.php18390644editdlrm
update_473.php527630644editdlrm
util.php180270644editdlrm
Edit: /home/techb158/exp.abdallabala.com/application/controllers/autologin.php (1599B)
where('username', $username) ->find_one(); if ($d) { $d_pass = $d['password']; if (Password::_verify($password, $d_pass) == true) { //Now check if OTP is enabled if ($d['otp'] == 'Yes') { Otp::make($d['id']); $_SESSION['tuid'] = $d['id']; r2(U . 'otp'); } else { $_SESSION['uid'] = $d['id']; $d->last_login = date('Y-m-d H:i:s'); $d->save(); //login log _log('Login Successful ' . $username, 'Admin', $d['id']); $rd = $config['redirect_url'] . '/'; _msglog( 's', ' ========== Please Read This Message Full ==============
Installation Successful! Please Set your Full Name, Username, Password. The Default Username is - demo@example.com And Password: 123456 Please change it From This Page. ' ); r2(U . 'settings/users-edit/1/'); } } else { _msglog('e', 'Invalid Username or Password'); _log('Failed Login ' . $username, 'Admin'); r2(U . 'login'); } } else { _msglog('e', 'Invalid Username or Password'); r2(U . 'login/'); } } else { _msglog('e', 'Invalid Username or Password'); r2(U . 'login/'); }