How to Change File Upload Path in Voyager - laravel

I have a application created using Laravel and Voyager Admin Panel when I run my application on localhost voyager uploaded image save in project/public/storage but when I deploye my Project to shared hosting voyager files uploading to project/storage/app/public so how can I fix this issue?

Then change your file system as below:
your-app-root-dir/config/filesystems.php
replace the first file ecosystem local to public
and then below down change your public disk URL location to storage/app/public or whatever you want.

Related

unable to load images from storage path on shared hosting in laravel 9 and laravel voyager admin

i have a project in laravel 9 with laravel voyager admin panel. my problem is when i am using CLI to launch the app everything is fine but when i upload my website to shared hosting of htdocs (in case of localhost) images from storage folder is not loaded.
You need to locate your photo in the public access folder read Voyager documentation and also you need to keep your statice photo in the separate folder

How to config laravel app subdomains in shopify?

I have an example domain named https:// domainexp.com in which I create a folder named ShopifyApp and in that folder create another laravel framework project named laravel1. If you want to run the laravel directory, you need to go to their public directory as https://domainexp.com/ShopifyApp/laravel1/public
and when creating a new app we need to fill in the domain information as App Url: https://domainexp.com but the directory laravel can run is
https://domainexp.com/ShopifyApp/laravel1/public so my domain path information is
App Url: https://domainexp.com/ShopifyApp/laravel1/public
and the path to validate Allowed redirection URL(s) :
https://domainexp.com/ShopifyApp/laravel1/public/authenticate.
after creating the app I see that in the frame just displayed is the path to https://domainexp.com/ and not the laravel directory. How can I properly point to the laravel path to create an app?
enter image description here
enter image description here
Best regards

how to upload laravel project to subdomain with database

I try to upload laravel project on subdomain, upload whole folder on subdomain and move public folder to main directory and change in index file but show directory of laravel folder.

Storage laravel. Is this secure to keep private image?

Hi i'm working on sell picture project. I want to secure image in public folder . I follow this way How to protect image from public view in Laravel 5?
Everything work fine. I just want to make sure in storage Path thier is no way to access with URL right? I put my image into storage/images not storage/app/public
If i storage link it will be effect to my private image or not thanks
In Laravel the root of the webserver is the public directory and the entrypoint is public/index.php.
This means that you can access via web server everything under public directory (like javascript/css files and image assets).
The storage directory is one level up and there is no way to access it.
In the discussion you mention the url http://www.somedomainname.net/images/users/userImage.jpg refers to the file userImage.jpg under /your/document/root/laravel/app/public/images/users by default, so the storage directory is not even read.
Laravel, though, will let you link the storage/app/public directory inside the public/storage directory, using the command php artisan storage:link, but that's it.

Laravel 5.1 upload on host

I have used the Laravel 5.1 php framework to build a web application on my local XAMPP server.
Which files or folders should be uploaded on my shared host server?
Should the .env file at root be uploaded?
In this case, if sensitive information such as database connection passwords are in this file, is there a security risk?
All project files should be uploaded under project root \var\www\project (project = all laravel project folder and files and \var\www\project\public is where your domain pointing.
Storage should have write permission.
.env will be under project root and it is not available for public access.
.env won't be accessible for public, if it is then you have a configuration problem with you web server.
Move All the files on xyz(your folder name for which domain/subdomain is mapped) folder
Then follow these steps
Go to public folder
Copy .htacsses file
Paste it in xyz folder
Change server.php to index.php
Enjoy and happy coding
This is working fine with hostgator.in shared hosting.

Resources