Skip to main content

Posts

Showing posts from March, 2023

Could not be opened in append mode - Laravel

Could not be opened in append mode: Failed to open stream: Permission denied The exception occurred while attempting to log: Are you having issues when you open your website and this error pops up saying:  Could not be opened in append mode: Failed to open stream: Permission denied The exception occurred while attempting to log.... Now let me guide you through on how to fix this error. First of all the error happens to be caroused by file systems. So, to fix this error login into your server and navigate to terminal make a cd to the root directory of the deployed laravel application  /home/$USER/{project_directory} the project directory is the folder or subdomain you host the laravel application. Now run this command on your terminal  sudo chmod -R ugo+rw . - Notice the dot (.)  There this will help you resolve your problem.