-
Notifications
You must be signed in to change notification settings - Fork 111
5. Troubleshooting
Ah yes even though this software this software strives so hard to work on all systems which satisfies the requirements, it would probably not work perfectly or not work at all in all systems ( which is normal in software development ). So here's a list of things to do when this happens.
Do not do this on a live production server as it might end up in leaking of very sensitive information, These are fine if you're on a staging or development environment, but if you don't know what you're doing, skip this step when on a production environment. ( credit: flarum.org ) In your .env file, turn on APP_DEBUG.
If you've been seeing blank pages and the above change doesn't help, try setting display_errors to On in your php.ini configuration file.
A lot of issues can be fixed with the following:
- Clear your browser cache
- Clear the backend cache with
php artisan optimize:clear
- Make sure your database is updated with
php artisan migrate
- Make sure the database is seeded by running
php artisan db:Seed
in development orphp artisan db:seed --class=RunInProductionSeeder
- Try using the installer again by running
php artisan skuul:init
Try repeating the steps that led to this error, if possible document it somewhere.
If all to no avail you couldn't find the source of your problems, you should first of all search for errors related to yours here, if you are lucky the error would have been discussed here or you could even google the error. It can sometimes guide you on what to do. If all of these fail, feel free to open a new issue.
credit: flarum.org