X7ROOT File Manager
Current Path:
/home/gfecatvj/4abetter.us-old
home
/
gfecatvj
/
4abetter.us-old
/
📁
..
📁
.git
📁
Controller
📁
Engine
📄
LICENSE.txt
(7.47 KB)
📁
Model
📁
PHP-MVC-Blog-System
📄
README.md
(2.39 KB)
📁
View
📄
_create_admin_pwd.php
(641 B)
📄
admin.php
(5.23 KB)
📄
db.sql
(3.2 KB)
📄
index.php
(15.3 KB)
📄
readme_tech.txt
(434 B)
📁
static
Editing: _create_admin_pwd.php
<?php /** * @author Pierre-Henry Soria <phy@hizup.uk> * @copyright (c) 2015-2017, Pierre-Henry Soria. All Rights Reserved. * @license Lesser General Public License <http://www.gnu.org/copyleft/lesser.html> * @link http://hizup.uk */ /** Allows to create an admin password easily **/ /* I use PHP 5.5 password hashing for this app test. Thanks this new PHP feature, the password gets a salt and it is much more secure than a simple SHA1 algorithm */ $sPwd = 'pwd123'; // Admin Password $sHashedPwd = password_hash($sPwd , PASSWORD_BCRYPT, array('cost' => 14)); echo 'Password is: ' . $sHashedPwd;
Upload File
Create Folder