Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Trying to backup : Export Error: Output file is not writable Topic is solved
Trying to backup : Export Error: Output file is not writable
Hello, I have nubuilder setup on webserver, when I am trying to perform a backup, I get following error:
What do I need to check?You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Trying to backup : Export Error: Output file is not writable
Hi,
The default backup location is here:
/core/libs\mysqldump/dumps
This error message typically indicates that PHP is unable to write to the specified output file. There are a few possible reasons why this might be happening:
Permissions: The user running the PHP script may not have the necessary permissions to write to the file. Check the permissions of the output file and make sure the user has write access.
File ownership: The output file may be owned by a different user or group than the one running the PHP script. Check the ownership of the file and make sure the user running the PHP script has the necessary permissions.
File location: The output file may be located in a directory that the user running the PHP script does not have write access to. Check the permissions of the directory and make sure the user has write access.
The default backup location is here:
/core/libs\mysqldump/dumps
This error message typically indicates that PHP is unable to write to the specified output file. There are a few possible reasons why this might be happening:
Permissions: The user running the PHP script may not have the necessary permissions to write to the file. Check the permissions of the output file and make sure the user has write access.
File ownership: The output file may be owned by a different user or group than the one running the PHP script. Check the ownership of the file and make sure the user running the PHP script has the necessary permissions.
File location: The output file may be located in a directory that the user running the PHP script does not have write access to. Check the permissions of the directory and make sure the user has write access.
Re: Trying to backup : Export Error: Output file is not writable
Thank you very much Kev1n!
I was missing following folder: /core/libs\mysqldump/dumps
Created it and set correct permissions, works nice now.
I was missing following folder: /core/libs\mysqldump/dumps
Created it and set correct permissions, works nice now.
Re: Trying to backup : Export Error: Output file is not writable
In my case, the folder was there, but the permission was set to 750. When I changed it to 770, it worked immediately!