Laravel Storage Linking is not working using symlinks command - php

I have uploaded my Laravel Web application to my server and tried to run the symlinks command but the media/images are not syncing. Anyone here can help me how to fix the storage issue?
here is my symlinks command :
<?php symlink('/home/webcxsol/shog/storage/app/public','/home/webcxsol/public_html/storage'); ?>
My public folder is in the public_html folder of the server and all the other files are in the other folder.

If you are or wish to follow the framework conventions, there is a specific command for this which you could take a look at using: php artisan storage:link.

Related

Laravel How to setup a public_html folder in a shared hosting in hostinger

I'm trying to host a Laravel project in a shared hosting using Hostinger and I am having problems with the assets. The sample folder is here sample folder, I'm not really sure on how to make this connection with my public folder and resources folder. I've already use php artisan storage:link before I uploaded the project.
I assume you don't have shell access in your shared hosting account.
One way to do this is to create a temporal route that runs the artisan command.
Firstly, before you upload, delete the existing storage link from public
rm public/storage
Route::get('create-symlink', function (){
Artisan::call('storage:link');
return response('Done...');
});
Remeber to remove or comment out the route when done.

Laragon - How do I serve a website on startup?

Right now I have to open laragon start all > go into commands > and write php artisan serve, only then can I access the local website.
My question is how can I start all and serve the website on start of the program.
Thank you in advance!
you have to put your project folder into C:\laragon\www\
when start the laragon service it's gonna search in that folder and use the name of the folder project to create a custom url, for example
if you put your project folder named newproject into the C:\laragon\www folder, when you start the service, laragon it's gonna make an url with the name of that folder newproject.test
C:\laragon\www\newproject-> newproject.test
C:\laragon\www\blog-> blog.test

Storage in laravel says symlink - no such file

I deployed laravel app on shared hosting in public_html/app folder. Here is everything from public folder. In /../../files I have rest of files. When I do php artisan storage:link in files folder my console says
[ErrorException]
symlink(): No such file or directory
On localhost I upload files to storage/uploads folder. What to do now? I tried to change links but nothing works for me...
Go to /public directory and run:
rm storage
Go to Laravel root directory and run:
php artisan storage:link
Edited on May 1st 2018
This problem comes when laravel project is moved/copied to some other folder.
The storage link is still there thus causing the exception error. public/storage folder exists and points to wrong location and it needs to be deleted with rm storage command.
After that run php artisan storage:link in terminal and it will create the storage link.
This needs to be done EVERY time when laravel is moved/copied/deployed!
I'm face same error when use share hosting and my public directory move to public_html or different directory
like :
project directory in root name "project"
and public directory in root name "public_html"
when run artisan command by Artisan::call('storage:link'); then face this error.
Solution:
1st need to bind your public directory in app/Providers/AppServiceProvider register method
$this->app->bind('path.public', function() {
return base_path('../public_html');
});
Now run the command its working fine
Just in case your down here still without an answer.
I had trouble because I did the symlink locally, then copied the files to the server. In order to make it work I did the following:
$ cd path/to/laravel/root
// if public does not exist, first create it.
$ cd public
// if public/storage does not exist, first create it.
$ rm -r storage
$ cd ..
// Now it should work
$ php artisan storage:link
This usually happens after moving Laravel app to another directory
The actual storage directory is "/AppName/storage/app/public/"
Laravel creates a symbolic link pointing to actual storage dir "/AppName/public/storage"
Other meaning
"/AppName/public/storage" points to => "/AppName/storage/app/public/"
On changing root app directory to "/AnotherAppName/" symlink will still point to the old path
"/AnotherAppName/public/storage" => "/AppName/storage/app/public/"
my solution is to manually update the symlink using
ln -sfn /AnotherAppName/storage/app/public/ /AnotherAppName/public/storage
Anyone coming in the future using Laravel Forge. I had this error when I renamed my domain name in Forge.
The solution was to go into the public directory and delete the existing symlink which had been copied over from the original domain.
After this symlink had been deleted, I was able to run php artisan storage:link again and this worked correctly.
create new php file and put this code on the file:
<?php
symlink('/home/CpanelUser/storage/app/public', '/home/CpanelUserpublic_html/storage');
?>
"CpanelUser" change to youre cpanel user name or host name.
Upload this file to public_html folder (www) of site
execute file with write site name+this file in browser
done!
Example:
My file name is symlink.php and site name is www.anysite.com
upload symlink.php to public_html folder in host and get web address in browser
http://www.anysite.com/symlink.php
after execute this file storage folder creite in public folder in laravel and link to storage folder in app.
To fix this error on your server, change directory to the public and remove the symbolic link for the storage folder.
The following commands will help you remove the symbolic link from the public folder:
cd public
rm storage
After removing the symbolic link go back to the root folder using with the command below:
cd ..
Now create the symbolic link with the following command:
php artisan storage:link
After running the command successfully, you should get the following message
The [public/storage] directory has been linked.
I hope this post helps you.
SYMLINK(): No Such File or Directory Laravel
Follow these three steps:
Remove storage file from public folder.
rm public/storage
If storage folder is there in your root directory, remove public file inside app folder.
rm storage/app/public
Run link command
php artisan storage:link
Make sure the APP_URL configuration in .env file is set correctly. after that run following command line:
php artisan config:cache
php artisan storage:link
Go to config/filesystem.php in the symbolic links section in my case I removed public_path function and wrote my own path in it then run php artisan storage:link command again.
'links' => [
'/var/www/storage' => storage_path('app/public'),
],
Worked for me.
if issue is not fixed yet.
Do These Steps:
Delete storage link from public folder or run these commands.
a)
cd public
b) rm storage
Goto storage folder and check if app/public
folder exists otherwise create new folder.
Check if the error is fixed.
If these steps not fixed your issue delete storage folder and create new storage folder containing all necessary folders on it.
storage folder contains:
app, framework,logs
app contains: public
framework contains: cache, data,sessions,testing, views
Add this inside web.php and then hit this 'BASE_URL/linkstorage' URL once.
Now check the storage folder will be created inside the public folder. This will resolve your issue.
Route::get('/linkstorage', function () {
$targetFolder = base_path().'/storage/app/public';
$linkFolder = $_SERVER['DOCUMENT_ROOT'].'/storage';
symlink($targetFolder, $linkFolder);
});
My problem was that te symlink not was placed in /localhost/public/ but in /localhost/storage/app/
When i removed the symlink in /localhost/storage/app/ the artisan command works like a charm
In my code i placed this to prevent creating the wrong symlink
Route::get('/clear', function () {
Storage::deleteDirectory('public');
Storage::makeDirectory('public');
Artisan::call('route:clear');
Artisan::call('storage:link', [] );
});
If you are using shared hosting or you have deployed your project on a server with cPanel or DirectAdmin, you probably have a public_html instead of a public folder.
So one thing we usually do is change the Laravel public folder to public_html.
and then we go to our AppServiceProvider and bind the new path with the help of code below:
$this->app->bind('path.public', fn() => base_path('/public_html'));
But you should know the configuration files load before these register methods at your providers, so you have also to bind this before your kernel bootstrap your config files.
in order to do that, open index.php and write the code bellow after the $app variable defined:
$app->bind('path.public', fn() => base_path('/public_html'));
I know this might not seem a standard way, but It is working perfectly fine, and I haven't found any critical issue for it yet!
Add this to index.php
$app->bind('path.public', function() { return __DIR__; });
then on routes/web.php
add this
Route::get('/linkstorage', function () {
Artisan::call('storage:link');
});
Then run the link
I was using Vagrant and had the same problem. I removed to storage directory in public/storage but couldn't resolve the problem when using the command php artisan storage:link.
Therefore I connected with ssh to my vagrant box and ran the command there. It worked, so if you are running Vagrant and have the same problem this might help.
Delete the existing storage symbolic link (public/storage) and then run
php artisan storage:link command again.
In my case, I found that because I had moved all of the /public Laravel files to public_html (on my shared server), that the /public Laravel directory no longer existed.
After making a new "public" directory, I was able to successfully run the 'php artisan storage:link' command.
more instant i improve the answer of #suresh-pangeni
mv storage storage.bak // just for backup
mkdir -p storage/{app/public,framework/{cache,data,sessions,testing,views},logs}
php artisan storage:link
now its work
dont forget to
Go to /public directory and run:
then
rm storage before run on above command.
☺ pa storage:link
production 9999 ✗ The [public/storage] directory has been linked.
The solution is above but in separate parts, do one and two. Adding the route makes it easier for use case on external servers like shared hosts for example, thanks everyone
Go to config/filesystem.php in the symbolic links section in my case I removed public_path function and wrote my own path in it then run php artisan storage:link command again.
'links' => [
'/var/www/storage' => storage_path('app/public'),
],
For create storage link without terminal command(get at url)
Route::get('/linkstorage', function () {
$targetFolder = base_path().'/storage/app/public';
$linkFolder = $_SERVER['DOCUMENT_ROOT'].'/storage';
symlink($targetFolder, $linkFolder);
});
The issue normally happens when you changed the folder location after you generated your first symbolic link, I solved this isse by following the below steps:
Go in to the public folder and delete the storage folder(It will be labeled with red flag)
After deleting the storage folder, run php artisan storage:link and the issue will be solved
Follow these steps:
Step-1: server.php
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* #package Laravel
* #author Taylor Otwell <taylor#laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public_html'.$uri)) {
return false;
}
require_once __DIR__.'/public_html/index.php';
Step-2: App\Providers\AppServiceProvider.php
/**
* Register any application services.
*
* #return void
*/
public function register()
{
//Public folder name changed with public_html
$this->app->bind('path.public', function(){
return base_path().'/public_html';
});
}
It is allow you to run the usual command php artisan serve
Step-3: config\filesystems.php
'links' => [
base_path('public_html/storage') => storage_path('app/public'),
],
To get the storage symbolic link properly with php artisan storage:link
Remember to change the path if is not public_html like for me
If someone faces the same error in Docker and Laravel9, try by deleting storage file in public folder and executing php artisan storage:link again. In my case it is 0KB.
In my case, I had added more than one symbolic link added to config/filesystems, one of the links is meant to be created in a subfolder but the parent folder doesn't exist ie the link leads to public/users/uploads but public/users folder does not exist.
So the first step was to create public/users folder before running php artisan storage:link
If you deleted public/storage file and has not fixed, yet. Try this composer dump-autoload.

Issue with key (cipher error) when changing laravel folder structure

I am changing laravel 5.3 folder structure. What I exactly do is basically move all the content from public folder to root folder, and then all the other files besides public folder to the new created folder - project. Then I update the require paths in index.php, and when I try to run the project via XAMPP, I'm getting this error.
I am pretty sure that the key is set correctly, because I haven't changed anything else but the folder structure and paths, and the project worked before this folder structure change. It seems to me that program can't locate the .env file.
Try running
php artisan config:clear
and
php artisan key:generate
I followed this post

Unable to create web app in yii from console

I need to create a skeleton application in yiic from my console. I tried running the following command:
yiic webapp demo
My yii and frameworks folders are placed here:
C:\wamp\www\yii\yii-1.1.14.f0fee9\framework
My htdoc folder's path is here:
C:\wamp\bin\apache\apache2.4.9\htdocs
Can someone guide me here please? Thanks
The yiic.bat file needs to be edited. We have to provide the full path to our php.exe file placed in the bin folder.

Categories