- MSAnsweredHello,
I can see that the livewire page contents are loading.
I am not sure why the livewire request is failing. Are you using any javascript optimisation module/plugin. If yes please disable and check. If not please let me know the server details in private reply to check.
Thank you - RAnsweredNo modification from my side. Just installed as per instruction. It;s hosted in VPS in hetzner-cloudpanel-NGNX
- MSAnsweredHello,
The request to `livewire/livewire.min.js` are producing 404 error. It's not a static file but a route to server Laravel livewire.
You can add following to your nginx config
```nginx
location = /livewire/livewire.js {
expires off;
try_files $uri $uri/ /index.php?$query_string;
}
```
I found the article [Fix the /livewire/livewire.js 404 not found error](https://arc.net/l/quote/neoflksq) with few other options. Please give it a try.
Thank you - RAnsweredTried and failed.
- RAnsweredOK, the VPS failed. can i host this script in hostinger shared server then?
- MSAnsweredHello,
Yes, you can. If you let me know the cloud panel access in private reply. I can help you check.
Thank you - MSAnsweredHello,
I hope you have manage the installation. If there is nay issue, please let me know so that I can check and guide you.
Thank you - RAnsweredNo luck in both. is SSH access enough?
- MSAnsweredHello,
There was another user with same issue. Please check that the root path is correctly set to `public` folder in your uploaded file. Secondly you can try `php artisan livewire:publish --assets` to publish livewire assets and check if it resolve the issue.
Yes, ssh with database access should be fine.
Thank you - RAnsweredI'll try. Thank you
- Login to Reply