SM
Asked
Hello,
I exract files in my domain, i set public folder as default, i have php 8.2 and mysql 10.2.When i run installer i have an white screen.
Can you help me?
I exract files in my domain, i set public folder as default, i have php 8.2 and mysql 10.2.When i run installer i have an white screen.
Can you help me?
- SMAnswered500 error i have
- FSAnsweredSame issue
- FSAnsweredkindly create .htaccess file in your main folder and add this code this code will make the root access to public my issue is resolved after this method.
<IfModule mod_rewrite.c>
RewriteEngine On
# Force public directory for non-existing files and directories
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ public/$1 [L]
# Rewrite all other URLs to the Laravel index.php file
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ public/index.php [L]
</IfModule> - MSAnsweredHello,
It is the same password that you used when installing the item. If you forgot then you can update the `MAIL` config in the `.env` file and try reset the password.
Thank you - MSAnsweredHello,
You can check Laravel log in the `storage/logs/` folder for error details and let me know so that I can suggest.
Thank you - Login to Reply