# FAQ
# I am getting a blank page (or 500 error)
First of all please check the web server error_log. This can give you an idea of the problem. Some servers do not allow uploading files to the root folder. In this case, you may need to run lapp
in the public folder. After uploading lapp
folder to the public folder, edit index.php
, and change the following line.
change
$lapp_folder = '../lapp';
to
$lapp_folder = '/lapp';
In this scenario, the public folder will look like the following.
If you still cannot solve the problem, please contact us.
# I can't log in to my dashboard
To reset your password please click i forgot my password
link on the login page, you will receive an email about resetting your password.
Please make sure that you filled mail server information in the .env
file, otherwise, you cannot receive the email. If you didn't do this, please edit the .env
file in the lapp folder and change the following lines.
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME=null
MAIL_ENCRYPTION=null
Tip
MAIL_ENCRYPTION:
Mostly ssl or tls
If you don't know mail server details, please contact your hosting company.
Also, you can change your password with phpMyAdmin, just edit the users table and update the password of the administrator. You can generate a password on this page.
# Where are the theme and system files located?
Below you can find the locations of important files and folders.
Content | Location |
---|---|
Frontend CSS File | /public/css/app.css |
Views (Theme Files) | /lapp/resources/views/vendor/ |
Controllers (System Files) | /lapp/app/Http/Controllers/ |
Helper Functions | /lapp/app/Http/helpers.php |
Routes | /lapp/routes/web.php |
Language Files | /lapp/resources/lang/ |
← Settings