Re: [GNC] GnuCash 5.5 (macOS) can't get quotes, because it doesn't see JSON::Parse

2023-12-23 Thread Jim DeLaHunt


On 2023-12-23 19:19, Jim DeLaHunt wrote:


On 2023-12-23 15:38, John Ralls wrote:


On Dec 23, 2023, at 12:29 PM, Jim DeLaHunt  
wrote:


Hi, folks:

I recently upgraded to GnuCash 5.5-1 on macOS, ...retrieving quotes 
via AlphaVantage for ... stopped working.

...
But the gnucash-fq-update utility thinks everything is fine:

% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update

Password:

Starting with /...[elided].../ this dialog will disappear.
Reading '/Users/jdlh/.cpan/Metadata'
   Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Test2 is up to date (1.302198).
Finance::Quote is up to date (1.58).
JSON::Parse is up to date (0.62).

And CPAN seems to think that JSON::Parse is present:

% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo cpan
Password:
Loading internal logger. Log::Log4perl recommended for better logging

Starting with /...[elided].../ this dialog will disappear.
Terminal does not support /...[elided]...
/cpan shell -- CPAN exploration and modules installation (v2.36)
Enter 'h' for help.

cpan[1]> m JSON::Parse
Reading '/Users/jdlh/.cpan/Metadata'
   Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Module id = JSON::Parse
 CPAN_USERID  BKB (Ben Bullock )
 CPAN_VERSION 0.62
 CPAN_FILE    B/BK/BKB/JSON-Parse-0.62.tar.gz
 UPLOAD_DATE  2022-07-15
 MANPAGE  JSON::Parse - Parse JSON
 INST_FILE 
/Library/Perl/5.30/darwin-thread-multi-2level/JSON/Parse.pm

 INST_VERSION 0.62


cpan[2]> install JSON::Parse
JSON::Parse is up to date (0.62).

...For what it's worth, MacPorts has perl 5.34.3 installed, and the 
perl 5.34 edition of JSON::Parse as well. The system has perl 5.30.3 
installed. I do not know if this difference is significant.


...Thank you in advance for your help. And many thanks to the 
GnuCash developers for all the improvements in the 5.x versions!
...You can force using that system perl on the command line by using 
the path instead of just `perl`, e.g.
   sudo /usr/bin/perl 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update


will force using the system perl and its builtin @INC as long as 
$PERL5LIB isn't set in the environment.


Note that if your mac is an Apple Silicon one that you need to 
specify arch x86_64, as in
   sudo arch -arch x86_64 /usr/bin/perl 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update


(all on one line) because otherwise perl will build and install F::Q 
and friends for Apple Silicon


My computer does indeed use Apple Silicon. Specifying the path to perl 
had no effect:


% sudo arch -arch x86_64 /usr/bin/perl 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update


Starting with /...[elided].../ this dialog will disappear.
Reading '/Users/jdlh/.cpan/Metadata'
  Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Test2 is up to date (1.302198).
Finance::Quote is up to date (1.58).
JSON::Parse is up to date (0.62).
%

Maybe my installation somehow installed JSON::Parse for Apple Silicon, 
and that is why the GnuCash application cannot find it.


I would try to uninstall JSON::Parse and Finance::Quote, and let cpan 
or gnc-fq-update reinstall them, but a brief web search seems to say 
that CPAN has no command to uninstall modules.


I do think I have found where the actual files might be:

% ls -ld 
/Library/Perl/5.30/{,darwin-thread-multi-2level/auto/}{JSON/Parse,Finance/Quote}

ls: /Library/Perl/5.30/JSON/Parse: No such file or directory
drwxr-xr-x  59 root  wheel  1888 21 Dec 00:32 
/Library/Perl/5.30/Finance/Quote
drwxr-xr-x   3 root  wheel    96 10 May  2022 
/Library/Perl/5.30/darwin-thread-multi-2level/auto/Finance/Quote
drwxr-xr-x   4 root  wheel   128 21 Dec 00:32 
/Library/Perl/5.30/darwin-thread-multi-2level/auto/JSON/Parse


Is it significant that Finance::Quote has an entry in 
/Library/Perl/5.30/, but JSON::Parse does not?



I appear to have fixed it. I suspect that John's comment about


...you need to specify arch x86_64...because otherwise perl will build and 
install F::Q and friends for Apple Silicon. GnuCash is built for Intel only 
because WebKitGtk doesn't work when built for Apple Silicon and GnuCash will 
run an x86_64 perl under Rosetta2; if a needed module isn't available for Intel 
then F::Q will fail.
I followed a hypothesis that some of the Perl modules in my system 
location were built for Apple Silicon, and that the GnuCash application 
(being built for Intel only) could not find them.


I could run /usr/bin/cpan to look at modules in the system location. See 
transcript above. It includes:


cpan[1]> m JSON::Parse
/...[elided].../
Module id = JSON::Parse
/ ...[elided].../
 INST_FILE /Library/Perl/5.30/darwin-thread-multi-2level/JSON/Parse.pm
 INST_VERSION 0.62

I found files at that path, JSON/Parse.pm and JSON/Parse.pod. I deleted 
them:


% sudo rm /Library/Perl/5.30/darwin-thread-multi-2level/JSON/Parse*

Now CPAN considered the file 

Re: [GNC] GnuCash 5.5 (macOS) can't get quotes, because it doesn't see JSON::Parse

2023-12-23 Thread Jim DeLaHunt


On 2023-12-23 15:38, John Ralls wrote:



On Dec 23, 2023, at 12:29 PM, Jim DeLaHunt  wrote:

Hi, folks:

I recently upgraded to GnuCash 5.5-1 on macOS, ...retrieving quotes via 
AlphaVantage for ... stopped working.
...
But the gnucash-fq-update utility thinks everything is fine:

% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update
Password:

Starting with /...[elided].../ this dialog will disappear.
Reading '/Users/jdlh/.cpan/Metadata'
   Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Test2 is up to date (1.302198).
Finance::Quote is up to date (1.58).
JSON::Parse is up to date (0.62).

And CPAN seems to think that JSON::Parse is present:

% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo cpan
Password:
Loading internal logger. Log::Log4perl recommended for better logging

Starting with /...[elided].../ this dialog will disappear.
Terminal does not support /...[elided]...
/cpan shell -- CPAN exploration and modules installation (v2.36)
Enter 'h' for help.

cpan[1]> m JSON::Parse
Reading '/Users/jdlh/.cpan/Metadata'
   Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Module id = JSON::Parse
 CPAN_USERID  BKB (Ben Bullock )
 CPAN_VERSION 0.62
 CPAN_FILEB/BK/BKB/JSON-Parse-0.62.tar.gz
 UPLOAD_DATE  2022-07-15
 MANPAGE  JSON::Parse - Parse JSON
 INST_FILE /Library/Perl/5.30/darwin-thread-multi-2level/JSON/Parse.pm
 INST_VERSION 0.62


cpan[2]> install JSON::Parse
JSON::Parse is up to date (0.62).

...For what it's worth, MacPorts has perl 5.34.3 installed, and the perl 5.34 
edition of JSON::Parse as well. The system has perl 5.30.3 installed. I do not 
know if this difference is significant.

...Thank you in advance for your help. And many thanks to the GnuCash 
developers for all the improvements in the 5.x versions!

Jim,

It matters which perl is invoked, because each "minor" perl version (minor in quotes 
because just like GnuCash before we truncated the version to two digits, perl's "major" 
version has been fixed since the turn of the century) gets it's own versioned directories of 
modules.

It might also matter that one of the Perls is MacPorts because MacPorts might 
install its perl modules in the MacPorts installation tree.

You can use
   perl -e 'print join("\n", @INC), "\n"`
(include the quotes) in each environment to see where that perl is looking for 
modules.

The value of $PATH is different when running from the command line in Terminal 
and when launching an app with LaunchServices, either by using the `open` 
command from a command line prompt or double-clicking the app's icon in Finder. 
...


I believe that by specifying the path before each of my invocations, I 
was steering the GnuCash app to the system Perl, 5.30, rather than the 
MacPorts Perl, 5.34.


% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' /usr/bin/perl -e 
'print join("\n", @INC), "\n"'

/Library/Perl/5.30/darwin-thread-multi-2level
/Library/Perl/5.30
/Network/Library/Perl/5.30/darwin-thread-multi-2level
/Network/Library/Perl/5.30
/Library/Perl/Updates/5.30.3/darwin-thread-multi-2level
/Library/Perl/Updates/5.30.3
/System/Library/Perl/5.30/darwin-thread-multi-2level
/System/Library/Perl/5.30
/System/Library/Perl/Extras/5.30/darwin-thread-multi-2level
/System/Library/Perl/Extras/5.30
%



...You can force using that system perl on the command line by using the path 
instead of just `perl`, e.g.
   sudo /usr/bin/perl 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update

will force using the system perl and its builtin @INC as long as $PERL5LIB 
isn't set in the environment.

Note that if your mac is an Apple Silicon one that you need to specify arch 
x86_64, as in
   sudo arch -arch x86_64 /usr/bin/perl 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update

(all on one line) because otherwise perl will build and install F::Q and 
friends for Apple Silicon


My computer does indeed use Apple Silicon. Specifying the path to perl 
had no effect:


% sudo arch -arch x86_64 /usr/bin/perl 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update


Starting with /...[elided].../ this dialog will disappear.
Reading '/Users/jdlh/.cpan/Metadata'
  Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Test2 is up to date (1.302198).
Finance::Quote is up to date (1.58).
JSON::Parse is up to date (0.62).
%

Maybe my installation somehow installed JSON::Parse for Apple Silicon, 
and that is why the GnuCash application cannot find it.


I would try to uninstall JSON::Parse and Finance::Quote, and let cpan or 
gnc-fq-update reinstall them, but a brief web search seems to say that 
CPAN has no command to uninstall modules.


I do think I have found where the actual files might be:

% ls -ld 
/Library/Perl/5.30/{,darwin-thread-multi-2level/auto/}{JSON/Parse,Finance/Quote}

ls: /Library/Perl/5.30/JSON/Parse: No such file or directory
drwxr-xr-x  59 root  wheel  1888 21 

Re: [GNC] GnuCash 5.5 (macOS) can't get quotes, because it doesn't see JSON::Parse

2023-12-23 Thread John Ralls



> On Dec 23, 2023, at 12:29 PM, Jim DeLaHunt  wrote:
> 
> Hi, folks:
> 
> I recently upgraded to GnuCash 5.5-1 on macOS, from 4.14 and a long 
> succession of GnuCashes before that. I have been successfully retrieving 
> quotes via AlphaVantage for a long time. With the upgrade to GnuCash 5.5, 
> that stopped working.
> 
> When I run the GnuCash 5.5 application, and open the Price Database window, 
> the "Get Quotes" button is disabled.
> 
> When I ask gnucash-cli for quotes info, it says JSON::Parse is not installed:
> 
> % PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' 
> /Applications/Gnucash.app/Contents/MacOS/gnucash-cli --quotes info
> Application Path /Applications/Gnucash.app/Contents/MacOS/gnucash-cli
> Failed to initialize Finance::Quote: missing_modules JSON::Parse
> 
> Similarly, when I run the GnuCash 5.5 application in --debug mode, and look 
> at the log file, there is a message that JSON::Parse is missing:
> 
> /...[59 lines elided]...
> /* 11:45:37  INFO  [scm_run_gnucash] Attempt to load Finance::Quote 
> returned this error message:
> * 11:45:37  INFO  [scm_run_gnucash] Failed to initialize 
> Finance::Quote: missing_modules JSON::Parse
> /...[134,149 lines elided]...
> /
> 
> But the gnucash-fq-update utility thinks everything is fine:
> 
> % PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo 
> /Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update
> Password:
> 
> Starting with /...[elided].../ this dialog will disappear.
> Reading '/Users/jdlh/.cpan/Metadata'
>   Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
> Test2 is up to date (1.302198).
> Finance::Quote is up to date (1.58).
> JSON::Parse is up to date (0.62).
> 
> And CPAN seems to think that JSON::Parse is present:
> 
> % PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo cpan
> Password:
> Loading internal logger. Log::Log4perl recommended for better logging
> 
> Starting with /...[elided].../ this dialog will disappear.
> Terminal does not support /...[elided]...
> /cpan shell -- CPAN exploration and modules installation (v2.36)
> Enter 'h' for help.
> 
> cpan[1]> m JSON::Parse
> Reading '/Users/jdlh/.cpan/Metadata'
>   Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
> Module id = JSON::Parse
> CPAN_USERID  BKB (Ben Bullock )
> CPAN_VERSION 0.62
> CPAN_FILEB/BK/BKB/JSON-Parse-0.62.tar.gz
> UPLOAD_DATE  2022-07-15
> MANPAGE  JSON::Parse - Parse JSON
> INST_FILE /Library/Perl/5.30/darwin-thread-multi-2level/JSON/Parse.pm
> INST_VERSION 0.62
> 
> 
> cpan[2]> install JSON::Parse
> JSON::Parse is up to date (0.62).
> 
> Note that I am using MacPorts on this system. That sometimes leads to 
> confusion, as described in 
> .
>  Thus I prefix commands with a PATH that excludes MacPorts, in the hopes that 
> I will be checking only the system Perl locations which the GnuCash app 
> consults.
> 
> For what it's worth, MacPorts has perl 5.34.3 installed, and the perl 5.34 
> edition of JSON::Parse as well. The system has perl 5.30.3 installed. I do 
> not know if this difference is significant.
> 
> I have read through the wiki page Online Quotes. I think I have done what 
> that page suggests. (Also, that page has now become a bit of a mess, because 
> it mixes together instructions for several different online quotes tools from 
> versions 5, 4, and pre-4 of GnuCash.)
> 
> Interestingly, when I run gnucash-cli from the GnuCash-provided application 
> and a path that includes MacPorts, it seems happy with the Finance::Quote 
> installation from MacPorts:
> 
>  % /Applications/Gnucash.app/Contents/MacOS/gnucash-cli --quotes info
> Application Path /Applications/Gnucash.app/Contents/MacOS/gnucash-cli
> Found Finance::Quote version 1.58.
> Finance::Quote sources:
> aex  alphavantage  amfiindiaasegr asx
> /...[elided].../
> xetrayahoo_json   yahooweb za
> 
> Thus I have a workaround: get quotes via gnucash-cli, which perhaps relies on 
> the MacPorts installation of Finance::Quote rather than the built-in 
> installation.
> 
> % /Applications/Gnucash.app/Contents/MacOS/gnucash-cli --quotes get 
> /...[elided].../ledger.gnucash
> Application Path /Applications/Gnucash.app/Contents/MacOS/gnucash-cli
> Found Finance::Quote version 1.58.
> %
> 
> Any suggestions for how to diagnose and fix the Get Quotes functionality 
> within the GnuCash application?
> 
> Thank you in advance for your help. And many thanks to the GnuCash developers 
> for all the improvements in the 5.x versions!

Jim,

It matters which perl is invoked, because each "minor" perl version (minor in 
quotes because just like GnuCash before we truncated the version to two digits, 
perl's "major" version has been fixed since the turn of the century) gets it's 
own versioned directories of modules.

It might also matter that one of the Perls is MacPorts because MacPorts might 

Re: [GNC] Ver 5.5 for Windows import issue

2023-12-23 Thread David Carlson
There is a bit of a learning curve with the process of importing files into
GnuCash, and a major part of it is learning how GnuCash reacts to the
particular text that the financial institution uses in the file.  I have
found that I need to treat files from different banks quite differently.
One FI even reverses the signs of purchases vs payments compared to the
rest of the world (even from other merchants using the same credit card
servicer) in their OFX files.

OFX/QFX, and QIF files all use the generic importer for the bulk of the
import process and CSV imports use a different process depending the
purpose of the import.

If you find that there are any quirks that appear to be wrong or strange
come back here with specific questions.



On Sat, Dec 23, 2023 at 12:37 PM Gyle McCollam  wrote:

> When I reached the end of the import file and continued to the
> reconciliation it eliminated all the duplicates and left only the original
> transactions.  So, I don't know what was going on, but the end result was
> normal?
>
> Thank You,
>
> *Gyle McCollam*
>
> Gyle McCollam
>
> gmccol...@live.comemail
> --
> *From:* David Carlson 
> *Sent:* Saturday, December 23, 2023 12:25 PM
> *To:* Gyle McCollam 
> *Cc:* Gnucash Users 
> *Subject:* Re: [GNC] Ver 5.5 for Windows import issue
>
> Just for the record, was that a qif import or ofx?
>
>
>
> On Sat, Dec 23, 2023, 11:09 AM Gyle McCollam  wrote:
>
> Just downloaded 5.5 for win 11.  Tried to import my cc info and the import
> wanted to add EVERY transaction as new.  When I clicked on (c)lear it found
> the matching transaction, but still was importing as new, which caused it
> to double everything.  I am reinstalling 5.3 until I can find out what is
> wrong.
>
>
> Thank You,
>
> Gyle McCollam
>
> Gyle McCollam
>
> gmccol...@live.com   email
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
>

-- 
David Carlson
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] GnuCash 5.5 (macOS) can't get quotes, because it doesn't see JSON::Parse

2023-12-23 Thread Jim DeLaHunt

Hi, folks:

I recently upgraded to GnuCash 5.5-1 on macOS, from 4.14 and a long 
succession of GnuCashes before that. I have been successfully retrieving 
quotes via AlphaVantage for a long time. With the upgrade to GnuCash 
5.5, that stopped working.


When I run the GnuCash 5.5 application, and open the Price Database 
window, the "Get Quotes" button is disabled.


When I ask gnucash-cli for quotes info, it says JSON::Parse is not 
installed:


% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' 
/Applications/Gnucash.app/Contents/MacOS/gnucash-cli --quotes info

Application Path /Applications/Gnucash.app/Contents/MacOS/gnucash-cli
Failed to initialize Finance::Quote: missing_modules JSON::Parse

Similarly, when I run the GnuCash 5.5 application in --debug mode, and 
look at the log file, there is a message that JSON::Parse is missing:


/...[59 lines elided]...
/* 11:45:37  INFO  [scm_run_gnucash] Attempt to load 
Finance::Quote returned this error message:
* 11:45:37  INFO  [scm_run_gnucash] Failed to initialize 
Finance::Quote: missing_modules JSON::Parse

/...[134,149 lines elided]...
/

But the gnucash-fq-update utility thinks everything is fine:

% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo 
/Applications/Gnucash.app/Contents/Resources/bin/gnc-fq-update

Password:

Starting with /...[elided].../ this dialog will disappear.
Reading '/Users/jdlh/.cpan/Metadata'
  Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Test2 is up to date (1.302198).
Finance::Quote is up to date (1.58).
JSON::Parse is up to date (0.62).

And CPAN seems to think that JSON::Parse is present:

% PATH='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' sudo cpan
Password:
Loading internal logger. Log::Log4perl recommended for better logging

Starting with /...[elided].../ this dialog will disappear.
Terminal does not support /...[elided]...
/cpan shell -- CPAN exploration and modules installation (v2.36)
Enter 'h' for help.

cpan[1]> m JSON::Parse
Reading '/Users/jdlh/.cpan/Metadata'
  Database was generated on Fri, 22 Dec 2023 23:54:07 GMT
Module id = JSON::Parse
    CPAN_USERID  BKB (Ben Bullock )
    CPAN_VERSION 0.62
    CPAN_FILE    B/BK/BKB/JSON-Parse-0.62.tar.gz
    UPLOAD_DATE  2022-07-15
    MANPAGE  JSON::Parse - Parse JSON
    INST_FILE /Library/Perl/5.30/darwin-thread-multi-2level/JSON/Parse.pm
    INST_VERSION 0.62


cpan[2]> install JSON::Parse
JSON::Parse is up to date (0.62).

Note that I am using MacPorts on this system. That sometimes leads to 
confusion, as described in 
. 
Thus I prefix commands with a PATH that excludes MacPorts, in the hopes 
that I will be checking only the system Perl locations which the GnuCash 
app consults.


For what it's worth, MacPorts has perl 5.34.3 installed, and the perl 
5.34 edition of JSON::Parse as well. The system has perl 5.30.3 
installed. I do not know if this difference is significant.


I have read through the wiki page Online Quotes. I think I have done 
what that page suggests. (Also, that page has now become a bit of a 
mess, because it mixes together instructions for several different 
online quotes tools from versions 5, 4, and pre-4 of GnuCash.)


Interestingly, when I run gnucash-cli from the GnuCash-provided 
application and a path that includes MacPorts, it seems happy with the 
Finance::Quote installation from MacPorts:


 % /Applications/Gnucash.app/Contents/MacOS/gnucash-cli --quotes info
Application Path /Applications/Gnucash.app/Contents/MacOS/gnucash-cli
Found Finance::Quote version 1.58.
Finance::Quote sources:
aex  alphavantage  amfiindia    asegr asx
/...[elided].../
xetra    yahoo_json   yahooweb za

Thus I have a workaround: get quotes via gnucash-cli, which perhaps 
relies on the MacPorts installation of Finance::Quote rather than the 
built-in installation.


% /Applications/Gnucash.app/Contents/MacOS/gnucash-cli --quotes get 
/...[elided].../ledger.gnucash

Application Path /Applications/Gnucash.app/Contents/MacOS/gnucash-cli
Found Finance::Quote version 1.58.
%

Any suggestions for how to diagnose and fix the Get Quotes functionality 
within the GnuCash application?


Thank you in advance for your help. And many thanks to the GnuCash 
developers for all the improvements in the 5.x versions!

  —Jim DeLaHunt, Vancouver, Canada

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Ver 5.5 for Windows import issue

2023-12-23 Thread Gyle McCollam
When I reached the end of the import file and continued to the reconciliation 
it eliminated all the duplicates and left only the original transactions.  So, 
I don't know what was going on, but the end result was normal?


Thank You,

Gyle McCollam

Gyle McCollam

gmccol...@live.com   email


From: David Carlson 
Sent: Saturday, December 23, 2023 12:25 PM
To: Gyle McCollam 
Cc: Gnucash Users 
Subject: Re: [GNC] Ver 5.5 for Windows import issue

Just for the record, was that a qif import or ofx?



On Sat, Dec 23, 2023, 11:09 AM Gyle McCollam 
mailto:gmccol...@live.com>> wrote:
Just downloaded 5.5 for win 11.  Tried to import my cc info and the import 
wanted to add EVERY transaction as new.  When I clicked on (c)lear it found the 
matching transaction, but still was importing as new, which caused it to double 
everything.  I am reinstalling 5.3 until I can find out what is wrong.


Thank You,

Gyle McCollam

Gyle McCollam

gmccol...@live.com>
   email
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Ver 5.5 for Windows import issue

2023-12-23 Thread Gyle McCollam
David,
Sorry, I got clled away and only have a minute now.  I downloaded the info in 
both OFX and QFX formats.  The OFX is *.ofx, but the other file shows no 
extension.  Reverting back to 5.3 didn't help, it exhibits the same behavior 
now.  It worked fine for a half dozen imports 2 weeks ago.  Maybe it is related 
to CitiBank?  Although GC is finding the matching transaction and creating the 
duplicate anyway.


Thank You,

Gyle McCollam

Gyle McCollam

gmccol...@live.com   email


From: David Carlson 
Sent: Saturday, December 23, 2023 12:25 PM
To: Gyle McCollam 
Cc: Gnucash Users 
Subject: Re: [GNC] Ver 5.5 for Windows import issue

Just for the record, was that a qif import or ofx?



On Sat, Dec 23, 2023, 11:09 AM Gyle McCollam 
mailto:gmccol...@live.com>> wrote:
Just downloaded 5.5 for win 11.  Tried to import my cc info and the import 
wanted to add EVERY transaction as new.  When I clicked on (c)lear it found the 
matching transaction, but still was importing as new, which caused it to double 
everything.  I am reinstalling 5.3 until I can find out what is wrong.


Thank You,

Gyle McCollam

Gyle McCollam

gmccol...@live.com>
   email
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Ver 5.5 for Windows import issue

2023-12-23 Thread David Carlson
Just for the record, was that a qif import or ofx?



On Sat, Dec 23, 2023, 11:09 AM Gyle McCollam  wrote:

> Just downloaded 5.5 for win 11.  Tried to import my cc info and the import
> wanted to add EVERY transaction as new.  When I clicked on (c)lear it found
> the matching transaction, but still was importing as new, which caused it
> to double everything.  I am reinstalling 5.3 until I can find out what is
> wrong.
>
>
> Thank You,
>
> Gyle McCollam
>
> Gyle McCollam
>
> gmccol...@live.com   email
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Ver 5.5 for Windows import issue

2023-12-23 Thread Gyle McCollam
Just downloaded 5.5 for win 11.  Tried to import my cc info and the import 
wanted to add EVERY transaction as new.  When I clicked on (c)lear it found the 
matching transaction, but still was importing as new, which caused it to double 
everything.  I am reinstalling 5.3 until I can find out what is wrong.


Thank You,

Gyle McCollam

Gyle McCollam

gmccol...@live.com   email
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.