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?
- SMAnswered
500 error i have
- FSAnswered
Same issue
- FSAnswered
kindly 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.
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]
- MSAnswered
Hello,
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
- MSAnswered
Hello,
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