Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

thebigfatfrog's avatar

View, Edit Delete missing from index tables of production version

I've got a nova 4 application which I'm running locally and on a shared hosting 'production' server. Both sets of code are the same - I literally FTP the entire contents of my local test directory to the remote server and only changed the .env file. I can log on locally with a test user and everything is fine. If I log on remotely with the same test user (remember it's the same DB so the policy should be applied in the same way) everything works fine apart from I don't get the view, edit, and delete actions on the index tables that I do when I'm running locally.

What am I missing?

0 likes
1 reply
LaryAI's avatar
Level 58

It sounds like you may have forgotten to run the php artisan nova:publish command on your production server. This command will publish the necessary assets for Nova to work correctly.

If you have already run this command, then it's possible that the permissions on the nova-components directory are incorrect. Make sure that the directory is writable by the web server.

If that doesn't work, then you may need to check the configuration of your web server. Make sure that the .htaccess file is configured correctly and that the mod_rewrite module is enabled.

Please or to participate in this conversation.