Problems installing Wave
Hello everyone, I am attempting to install Wave to test it out (looks AWESOME!) but I am having issues installing.
I have followed each step of the installation perfectly from this page: https://wave.devdojo.com/docs/installation
Here are the steps I've completed to install:
- Create a new MySQL DB
- Copy .env.example to a plain .env file
- Change APP_URL to my own url in .env
- Update MySQL info in .env
- Installed all Composer dependencies (all successful, no errors)
- Verified all PHP Extensions are installed and enabled
- Ran the DB Migrations and Seeded the DB
After all of these steps, the installation guide says I'll be able to visit my site and see it up and running... But all I have now is a 403 Forbidden code.
I tried setting APP_DEBUG to true, but that doesn't do anything...
Also -- I did verify that the the DB info was migrated and seeded correctly. All of the tables are appearing in my MySQL DB.
Hi there,
All of the steps that you've specified are related to the database side of things, the 403 error means that the web server itself is not configured correctly.
Can you share a bit more information about:
- What operating system are you using?
- What is the web server that you are using?
- Have you checked the error log of your web server for any more information?
- Can you share your web server configuration here as well?
















Hey Bobby,
I am using my own VPS with CentOS 7 on WHM/Apache.
I cannot seem to find an error log for this issue, I need to review my server settings.
Are there any specific configurations my server should be set to for Wave?
I have enabled "display_errors" for PHP, but no errors are being displayed...
Hey!
Thank you for sharing this extra information.
The 403 error in this case most likely means that your document root directory (the public_html
directory in the context of cPanel) is not set to the public
directory of Wave.
You can either change the document root of your site to point to the public
directory of Wave so that it loads the correct index.php
file, or you can try out the following .htaccess
rule instead:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
Wave is just a standard Laravel app, so you would deploy it as you would any other Laravel application.
Let me know how it goes!
Bobby, this worked for me!! Thanks so much :)
















No problem at all! Happy to hear that it is all working now!