Goldwave 6.76 xml error

Questions about Wine on Linux
Locked
raphael75
Level 2
Level 2
Posts: 15
Joined: Mon Apr 20, 2020 1:32 pm

Goldwave 6.76 xml error

Post by raphael75 »

I have Kubuntu 22.04, KDE, and wine 8.0.1. I get this error when starting Goldwave 6.76:

"Invalid GoldWave.xml settings file must be reset.
You may wish to make a copy of the old settings file before proceeding.
Error: error
Line: 0"

Has anyone else received this error or found a fix?
invisible kid
Level 5
Level 5
Posts: 354
Joined: Tue Dec 24, 2019 3:23 pm

Re: Goldwave 6.76 xml error

Post by invisible kid »

Sorry, I won't be able to help directly, but might be able to help troubleshoot as a fellow user. I would first see if that file exists in your ~/.wine folder:

Code: Select all

find ~/.wine -name GoldWave.xml 2>/dev/null
You might need to change "~/.wine" depending on where and what your .wine is named.

If it's missing, that might be the problem.
If it's there, I might try renaming it and re-launching. It might recreate a good one.
If that doesn't work, maybe open it up with an editor and see what's in there. Good luck!
raphael75
Level 2
Level 2
Posts: 15
Joined: Mon Apr 20, 2020 1:32 pm

Re: Goldwave 6.76 xml error

Post by raphael75 »

Thanks for your quick reply! I ran that command and it did find the xml file, and it had 102K of data. I'm not sure what Goldwave doesn't like about the file.
invisible kid
Level 5
Level 5
Posts: 354
Joined: Tue Dec 24, 2019 3:23 pm

Re: Goldwave 6.76 xml error

Post by invisible kid »

If you want you can try renaming it and running the program to see if it will create a new one. You can always change it back by renaming it back to the original name.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Goldwave 6.76 xml error

Post by jkfloris »

Open the GoldWave.xml file in your favorite text editor, and change the first line from

Code: Select all

<?xml version="1.0" encoding="utf-16"?>
to

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
raphael75
Level 2
Level 2
Posts: 15
Joined: Mon Apr 20, 2020 1:32 pm

Re: Goldwave 6.76 xml error

Post by raphael75 »

jkfloris wrote: Thu May 18, 2023 10:49 am Open the GoldWave.xml file in your favorite text editor, and change the first line from

Code: Select all

<?xml version="1.0" encoding="utf-16"?>
to

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
It looks like that fixed it. Thank you!
Locked