Hey there.
I use SeoTools to go through links in bulk and check if a keyword is found on their source code.
But I'm having cache problems since versions 6.0.x were released.
When I run it directly as an Excel formula, it all works well, but I prefer to use it in my VBA macros, so I can work with the information I find. I use it like this, inside loops:
temp = Application.Run("IsFoundOnPage", Cells(i, xWebsite), arrayKeywords(x), 1)
The new versions of the plugin work fast, but won't wait for the cache to load, returning errors to the temporary variable, which I treat to become an empty cell. If I run the same macro a second time, it will return more values, so I have to keep running it like 10 times in a row to get all the results - and still, I won't be sure.
When I use version 5.1.4, it takes much longer to run, but I get all the results.
I've had similar issues when running "RegexpFindOnUrl".
So I have been using the older versions, as they are more trustworthy when used in VBA macros.
Anyone else having this issue? Any way to avoid it?
Thanks! (=