2023-07-22-01-12-28.mp4
Settings in file settings.php
<?php
return [
// Title and metadata site
'site_title' => 'My first blog',
'site_description' => 'Here you will find interesting articles about different topics.',
'site_keywords' => 'blog, articles, diversity, knowledge',
// Name Author
'name_author' => 'Yana',
// Image width and height in pixels in post
'width_img' => '200',
'height_img' => '200',
// Excerpt length in characters
'excerpt_length' => 200,
];
?>
Password edit in file password.php
<?php
$hashedPassword = password_hash('EnterYouPassword', PASSWORD_DEFAULT);
return [
'username' => 'EnterYouLogin',
'password' => $hashedPassword
];
?>