Re: Bookmarks corrupted... [SOLVED]

2019-12-31 Thread sean

sean wrote on 12/30/19 12:05 PM:
I was sifting and sorting my bookmarks for the move from 2019 to 2020. I 
guess I overloaded the file, or Seamonkey's ability to handle a large 
html backup of bookmarks. When choosing to "manage bookmarks" now, I get 
a very slow to load blank page. Anyone know which file I need to rename 
or delete to get my bookmarks working once again?



deleting the trio of sqlite.xxx files, then spending a few moments to 
delete majority of duplicates, solved my issue


many thanks Lee & Frank
--
sean: now using Seamonkey 2.53.1

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Downloaded vlc Re: Driver for Video

2019-12-31 Thread Daniel

Daniel wrote on 26/12/19 13:19:

(and I got the spelling right this time!!)

On my Win7 system I was trying to watch some videos of format *.mkv, but 
I needed a new codec so went to https://www.windows7codecs.com/ and 
clicked on the Download button and got this message


"https://www.windows7codecs.com/G:\Temp\windows.7.codec.pack.v4.2.5.setup.exe.part 
could not be saved, because an unknown error occurred."


and my AVG anti-virus started up and opened a screen saying it had been 
quarantined 


"Threat secured.  We have moved qWtOEP1H.exe.part to your Quarantine 
because it was infected with Win32:Malware-gen."


My SM Download Manager shows that I've downloaded 10.6 MB of 44.3MB 
(over four attempts)!


Should I be worried??

If I should be thankful that AVG saved me from myself, does anyone have 
a suggestion as to how/what I can do so I can watch these (15GB of) 
video files??


TIA


Thanks, Guys!

I've installed vlc in my Windows 7 system and it works, thanks.

I've just used the Mageia Control Centre to download its vlc. Haven't 
tried it yet, but expect it to work, also!!


;-)

--
Daniel

Win7 User agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) 
Gecko/20100101 SeaMonkey/2.49.5 Build identifier: 20190609032134


Linux User agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) 
Gecko/20100101 SeaMonkey/2.49.1 Build identifier: 20171015235623

___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey


Re: Bookmarks corrupted...

2019-12-31 Thread Lee
On 12/30/19, sean   wrote:
> Frank-Rainer Grahl wrote on 12/30/19 3:26 PM:
>> sean wrote:
>>> I was sifting and sorting my bookmarks for the move from 2019 to 2020.
>>> I guess I overloaded the file, or Seamonkey's ability to handle a
>>> large html backup of bookmarks. When choosing to "manage bookmarks"
>>> now, I get a very slow to load blank page. Anyone know which file I
>>> need to rename or delete to get my bookmarks working once again?
>>
>> How many bookarks do you have? Any old add-ons managing bookmarks? The
>> bookmarks are now in the database places.sqlite. If you delete it as lee
>> suggested the last backup should be restored during startup. Please
>> close SeaMonkey before deleting the file and make sure you have a full
>> profile backup in case something goes wrong.
>>
>> FRG
>
> I have way too many bookmarks and am trying to delete/sift & sort
> them... deleting the trio of sqlites. made them visible again, but I
> guess the file size is too large to handle, even though I have plenty of
> memory.
>
> guess I need to walk away for a bit to let the whole "manage bookmarks"
> load.

Not a great solution, but better than nothing.. assuming "manage
bookmarks" eventually does load all your bookmarks and you can export
your bookmarks as html (tools / export html).  Run a script to show
all the dups so you know what can be deleted:

$ cat findDupBookmarks.sh
#!/bin/sh
# input: FF/SM 'Export Bookmarks to HTML' file

BMF="$1"
# bookmark file name, should at least make sure it exists

grep '[^>]*>//'  |\
 sort | uniq -d

$ findDupBookmarks.sh bookmarks.html
https://lite.qwant.com/


or you can list your bookmarks and run it thru a dead link checker or
somesuch to find things to be deleted or changed to point to
archive.org

$ cat listBookmarks.sh
#!/bin/sh
# input: FF/SM 'Export Bookmarks to HTML' file

BMF="$1"
# bookmark file name, should at least make sure it exists

egrep '( *//'\
 -e 's/^ *~~'\
 -e 's/">[^>]*>//'

$ listBookmarks.sh bookmarks.html | head -5
--SeaMonkey and Mozilla
http://www.seamonkey-project.org/
--mozilla.org
http://www.mozilla.org/
http://www.mozilla.org/projects/

Regards,
Lee
___
support-seamonkey mailing list
support-seamonkey@lists.mozilla.org
https://lists.mozilla.org/listinfo/support-seamonkey