Hello, I have been hosting a laravel website. When it was initially developed it size was just fine. But now after few months i want to make few changes i just go to file manager and compressed my Laravel application skipping storage and logs but still it is of more than 1GB in size. What should i check is there something i can delete ?
You might be storing something somewhere other than your storage directory. I would open your project root in your terminal and run du -sh * to get a summary of the size of each subdirectory, and from there drill down into which is using a lot of space.
Are you running a process that creates that zip file? What does it look like? You might be including the previous zip in your new zip, making the result grow every time it gets zipped.
@Cronix The public folder is in public_html which is not included in this compressed file. I have separated both the frontend and backend of my laravel
@sutherland now i am not running any process that creates zip file. This one is created manually using cPanel's file manager. Secondly i posted all the directory and file sizes there is no such directory which has a size of more than 50MB.
@Snapey I don't think so, Because this project was uploaded from my local PC and there is no such git and hidden files. Is there is any way to check if there is any hidden folder
i found the problem my laravel had some symlink to public_html and in public_html i have some subdomains which caused such a huge size zip file thanks everyone for the help