It is better for you to remove the composer.lock and delete vendor folder in root project It helps solve my problem
cheers
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I've uploaded my site to hosting today. I did my redirect with a simple htaccess file. I can add resources, but I can't view pictures.
.htaccess file
RewriteEngine on
# serve existing files in the /public folder as if they were in /
RewriteCond %{DOCUMENT_ROOT}public%{REQUEST_URI} -f
RewriteRule (.+) /public/ [L]
# route everything else to /public/index.php
RewriteRule ^ /public/index.php [L]
i want see uploaded image (for example : http://smartsoccer.xyz/storage/thumbnails/Xx1dzLBeSz4loYAQHdrCyljdrYjr5Kl8dJ4Q5SiY.png)
I get this error when I want to run it on xampp.
include(C:\xampp\htdocs\vendor\composer/../laravel/nova/src/NovaCoreServiceProvider.php): failed to open stream: No such file or directory
Please or to participate in this conversation.