is there are any way to Dealing database data update with excel dropdown list ?
Showing 401 error, why?
Copy the .htaccess file from /public directory to your Laravel root folder
I do 👆 then {{(asset(‘public/blah’) }}
this works on laravel 5.5 not 6.0
i have 2 applications 1 is in laravel 5.5 the laravel 5.5 worked

Go to vendorlaravelframeworksrcIlluminateFoundationhelpers.php..

edit
now getting 404 on all pages

how save public_uploads on public_html on server set?

please help
{
if ($request->hasFile(‘file’)) {
$destinationPath = public_path() . “/images/gallery”;
if (!file_exists($destinationPath)) {
File::makeDirectory($destinationPath, 0777, true);
}
// dump($destinationPath);
$originName = $request->file(‘file’)->getClientOriginalName();
$extension = $request->file(‘file’)->getClientOriginalExtension();
$fileName = pathinfo($originName, PATHINFO_FILENAME);
$fileName = $fileName . ‘_’ . time() . ‘.’ . $extension;
$request->file(‘file’)->move($destinationPath, $fileName);
$request = new Request($request->all());
$request->merge([‘image’ => ‘/images/gallery/’ . $fileName]);
}
// dd($request->except([‘_token’, ‘file’]));
if (Home::create($request->except([‘_token’, ‘file’]))) {
return redirect()->back()->with(‘success’, ‘Gallery added successfully’);
}
}
In this laravel 6 tutorial we learn how to upload a file or image with store function. we use form to upload data with simple example by anil sidhu
Make Controller and Route for it
Make form and route form it
Write code for upload image
Check file uploaded or not
playlist link is here : https://www.youtube.com/playlist?list=PL8p2I9GklV47fi-yiWkfRpbMV8PPaQDH4
facebook page link is here
https://www.facebook.com/stepbysteplearn/
Checkout and subscribe our new channel for technical news
https://www.youtube.com/channel/UCUu2FA5OO9KpFXL2ZYR0aNg


I successfully install letsencrypt SSL certificate on my site
But when I entered domain like,
https://ourdomain.com
it says
Your connection is not private.
and if I entered
https://www.ourdomain.com
then it works fine
why this happening
I successfully install letsencrypt SSL certificate on my site
But when I entered domain like,
https://ourdomain.com
it says
Your connection is not private.
and if I entered
https://www.ourdomain.com
then it works fine
why this happening
pm me
I successfully install letsencrypt SSL certificate on my site
But when I entered domain like,
https://ourdomain.com
it says
Your connection is not private.
and if I entered
https://www.ourdomain.com
then it works fine
why this happening
Because may you have some none www or https urls used in your HTML
I successfully install letsencrypt SSL certificate on my site
But when I entered domain like,
https://ourdomain.com
it says
Your connection is not private.
and if I entered
https://www.ourdomain.com
then it works fine
why this happening
I think its a question of htaccess
Auth::id()
Auth::guard(‘sanctum’)->id()All the above returns the current user id logged by sanctum token, which more secure?
Hi,
https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-16-04
problem is solved by the above link.
By reading this post and running following command,
sudo certbot –apache -d example.com
Thanks, Dude without you and your guidance this is not possible…Cheers🍻
This tutorial will show you how to set up a free TLS/SSL certificate from Let’s Encrypt on a Ubuntu 16.04 server running Apache as web server. TLS certificat…