I deployed my laravel site to Namecheap shared host. but no Images.
I deployed my laravel site to Namecheap shared host. existing images are working and previewing well.
but if I add an image using my one of CRUD, it only generates an image name. (245682104.jpg) I can see that image name on my database. but no preview on the dashboard. and No saved image on public_html/upload/firmware
But in the local host are fine and working wel. can you help me?
my htaccess file
Options -MultiViews -Indexes
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
Are you sure that code works on localhost? I don't see you storing the image anywhere there. I see you are trying to move a file, but don't see where you are uploading the file.