JM
Asked
Dear Support,
I have recently purchased SMA and installed on local PC.
Installation was done successfully as per provided document checklist.
but after installation login page isn't loading properly. Snapshot attached for your deference.
Installation Environment detail.
localhost
php 7.4.10
I have recently purchased SMA and installed on local PC.
Installation was done successfully as per provided document checklist.
but after installation login page isn't loading properly. Snapshot attached for your deference.
Installation Environment detail.
localhost
php 7.4.10
- MSAnsweredHello,
Please check your `base_url` in the `app/config/config.php` it should be with port like `https://localhost:8080/SIMS`
Thank you - JMAnsweredThanks Main Sb,
Now got the login page but not accepting the default user owner with default pswd 18. database shows single record of owner with encrypted pswd. Any suggestion? - MSAnsweredHello,
The default credentials are
```
Username: [email protected]
Password: 12345678
```
If your the installation was fine, the above should work. You can update the user password to `2c8ab736b2ccab4f50e72d5fd7d21020cbb77ae7` to set it to default `12345678`
```sql
UPDATE `sma_users` SET `password` = '2c8ab736b2ccab4f50e72d5fd7d21020cbb77ae7' WHERE `id` = '1';
```
Thank you - JMAnsweredDear,
Refer to login page, is currently set as Shop homepage login. How to change/set as default [admin login] to dashboard. - MSAnsweredHello,
If you have shop module system will use shop login as default. To change this you will need edit `login` method of `app/controllers/Main.php`
Thank you - Login to Reply