VA
Asked
The installation goes perfectly, but at the end of the installation there is a warning that the password must be changed.
When we finish the whole process we can not enter the user menu and password to enter.
https://construccionesrp.cl/rp/auth/login
When we finish the whole process we can not enter the user menu and password to enter.
https://construccionesrp.cl/rp/auth/login
- MSAnsweredHello,
Please set the DirectoryIndex to index.php You can add the following line at top of `.htaccess` files
```
DirectoryIndex index.php
```
The site can be accessed at https://construccionesrp.cl/rp/index.php/auth/login
Thank you - VAAnsweredHello, the same problem persists, I checked all the DB as well as reinstalling everything again and still nothing happens.
<?php
.htaccess
/*
* --------------------------------------------------------------------
* SET YOUR TIMEZONE
* --------------------------------------------------------------------
*
* Find your timezone here
* http://php.net/manual/en/timezones.php
*/
$timezone = 'America/Santiago';
if (function_exists('date_default_timezone_set')) {
date_default_timezone_set($timezone);
}
define('TIMEZONE', $timezone);
/*
* --------------------------------------------------------------------
* ENABLE/DISABLE DEMO
* --------------------------------------------------------------------
*
* DEMO should always be set to 0 for production
* To restrict the instllation as demo set DEMO to 1
*/
define('DEMO', 0); - MSAnsweredHello,
There is no need to reinstall. Please check with your server admin and ask them to set the `DirectoryIndex` to `index.php`
Thank you - VAAnsweredTema resuelto
gracias - Login to Reply