"Always create backup copy" should be on by default!!!!

Request For Enhancement, User feedback candidates for wiki
Post Reply
guedesbrawl
Posts: 6
Joined: Fri Aug 28, 2015 11:41 pm

"Always create backup copy" should be on by default!!!!

Post by guedesbrawl »

It's so heartbreaking to discover that this program had the option to backup my files but it was off by default, therefore being USELESS when it was needed!

:crazy: :crazy: :crazy: :crazy: :crazy: :crazy: :crazy:

(might have gotten the option's name wrong, since i'm translating from portuguese... but you get the idea)
OpenOffice 4.1.1 on Windows 8
User avatar
RusselB
Moderator
Posts: 6646
Joined: Fri Jan 03, 2014 7:31 am
Location: Sarnia, ON

Re: "Always create backup copy" should be on by default!!!!

Post by RusselB »

Personally I agree with you, but. as of the latest release, the developers felt that it should not be on as a default.
There is an Issue post in Bugzilla for this at https://bz.apache.org/ooo/show_bug.cgi?id=104879
OpenOffice 4.1.7, LibreOffice 7.0.1.2 on Windows 7 Pro, Ultimate & Windows 10 Home (2004)
If you believe your problem has been resolved, please go to your first post in this topic, click the Edit button and add [Solved] to the beginning of the Subject line.
guedesbrawl
Posts: 6
Joined: Fri Aug 28, 2015 11:41 pm

Re: "Always create backup copy" should be on by default!!!!

Post by guedesbrawl »

At least they should warn you that such an option exists right as you first boot the program.
OpenOffice 4.1.1 on Windows 8
lgusaas
Volunteer
Posts: 1580
Joined: Sun Mar 30, 2008 8:32 pm
Location: Moose Jaw, SK Canada

Re: "Always create backup copy" should be on by default!!!!

Post by lgusaas »

guedesbrawl wrote:At least they should warn you that such an option exists right as you first boot the program.
When I get a new program I go through all the user preferences to see what options are available and to set up the program the way I want it to work.

Oh, I regularly backup my computer so I don't have to rely on a program's auto backup settings.
Larry I. Gusaas
Moose Jaw, SK Canada
Website: http://larry-gusaas.com
"An artist is never ahead of his time but most people are far behind theirs." Edgard Varese
Apache OpenOffice 4.1.14 — MacBook Air (M1)—macOS Ver.13.5 Ventura
User avatar
Zizi64
Volunteer
Posts: 11358
Joined: Wed May 26, 2010 7:55 am
Location: Budapest, Hungary

Re: "Always create backup copy" should be on by default!!!!

Post by Zizi64 »

The auto backup function will create only one backup file for one filename (for one document). And then that one backup file will be refreshed at every automatic saving. The errors will be cumulated at every save into that one file .


Nothing can replace the manual back-up.
You can use a macro for the manual backup: it will create a backup file and will rename (by inserting a time-stamp into the filename) every newly saved backup file.

Code: Select all

Sub SaveAndTimeStampBackup()

    Dim sDocURL as string, sBackupURL as string, sTimeStamp as string
    Dim oDoc as object

       If (Not GlobalScope.BasicLibraries.isLibraryLoaded("Tools")) Then
          GlobalScope.BasicLibraries.LoadLibrary("Tools")
       End If
       sTimeStamp = "_" & Format(Year(Now), "0000") & Format(Month(Now), "00") & Format(Day(Now), "00") & "_" & _
                           Format(Hour(Now), "00") & Format(Minute(Now), "00") & Format(Second(Now), "00")
       oDoc = Thiscomponent   
       If oDoc.hasLocation() then
          sDocURL = oDoc.getURL()

          sBackupURL = CreateUnoService("com.sun.star.util.PathSettings").Backup & "/" & _
          GetFileNameWithoutExtension(sDocURL, "/") & _
          sTimeStamp() & "." & _
          GetFileNameExtension(sDocURL, "/")   
       
          oDoc.store() ' Save
          oDoc.storeToURL(sBackupURL, array())  ' Backup
       Else
          MsgBox("This document have not URL. Can not be archived." & Chr(10) & "Use the normal 'save' procedure.",16,"Warning:")
       End if
End sub
You can assign this macro to a menu item, or to a toolbar icon, or to a shortcut key, and you can launch it manually.
Tibor Kovacs, Hungary; LO7.5.8 /Win7-10 x64Prof.
PortableApps/winPenPack: LO3.3.0-7.6.2;AOO4.1.14
Please, edit the initial post in the topic: add the word [Solved] at the beginning of the subject line - if your problem has been solved.
User avatar
Villeroy
Volunteer
Posts: 31279
Joined: Mon Oct 08, 2007 1:35 am
Location: Germany

Re: "Always create backup copy" should be on by default!!!!

Post by Villeroy »

This is the year 2015 and 90% of all WIndows users know nothing about file management. If you never save your work to disk placing your bet on some magic restore feature of the application you are currently working with, then you better stop using desktop applications and hand over all your work to some cloud service.
Please, edit this topic's initial post and add "[Solved]" to the subject line if your problem has been solved.
Ubuntu 18.04 with LibreOffice 6.0, latest OpenOffice and LibreOffice
Alex1
Volunteer
Posts: 726
Joined: Fri Feb 26, 2010 1:00 pm
Location: Netherlands

Re: "Always create backup copy" should be on by default!!!!

Post by Alex1 »

Zizi64 wrote:The auto backup function will create only one backup file for one filename (for one document). And then that one backup file will be refreshed at every automatic saving. The errors will be cumulated at every save into that one file .
At least it helps when the latest version contains only zeros, which seems to happen sometimes.
AOO 4.1.15 & LO 24.2.2 on Windows 10
User avatar
Villeroy
Volunteer
Posts: 31279
Joined: Mon Oct 08, 2007 1:35 am
Location: Germany

Re: "Always create backup copy" should be on by default!!!!

Post by Villeroy »

Even if this office suite is the one and only program you ever use store your precious data to your own disk, a real backup plan is vital for every computer user. A backup program stores all your data (not only OpenOffice files) to a separate backup medium, preferably to a medium not built into your computer. The alternative to your own backup strategy is cloud computing where somebody else manages your files in professional ways.
The "Backup" facility in OpenOffice is nothing but crash recovery.
Please, edit this topic's initial post and add "[Solved]" to the subject line if your problem has been solved.
Ubuntu 18.04 with LibreOffice 6.0, latest OpenOffice and LibreOffice
Post Reply