Login error

Permalink
I can't login using the install password I gave.
Have tried the idea of going to the Logs in the database but doesn't look like an email got sent even after I requesetd a reset.
Is there anywhere in the concrete5 install I can check for it?

trixiemay
 
Gondwana replied on at Permalink Reply
Gondwana
There's a 'Forgot Password' button on the log-in window. Give that a shot.
trixiemay replied on at Permalink Reply
trixiemay
I am in concrete5.6.3.3 (due to server restrictions) and have tried trying to email myself. But nothing comes through or shows up in the db logs.
andrewjaff replied on at Permalink Reply
andrewjaff
Hi ,

Add this code to your theme header.php file and run your site.
<?php 
$newPassword = '123456';
$ui = UserInfo::getByID(1);
$ui->changePassword($newPassword);
?>


Now login with pass 123456 . Don't forget to remove after refresh your site.