Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
If you find these projects useful please consider becoming a sponsor with Patreon, GitHub or Liberapay.

Random crashes on 76.1.13

User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Random crashes on 76.1.13

Post by salvadordf »

You can also disable the images for one browser by setting TChromium.Options.ImageLoading to STATE_DISABLED before calling TChromium.CreateBrowser.
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Random crashes on 76.1.13

Post by dilfich »

A few days can not understand the reason. :(
Updated from version 72, there was no such problem.
Имя события проблемы: APPCRASH
****
Отметка времени приложения: 5d944f12
Имя модуля с ошибкой: libcef.dll
Версия модуля с ошибкой: 76.1.13.0
Отметка времени модуля с ошибкой: 5d5f72d0
Код исключения: c0000005
Смещение исключения: 00000000029ddb25
Версия ОС: 6.3.9600.2.0.0.272.7
Код языка: 1049
Дополнительные сведения 1: 6a5d
Дополнительные сведения 2: 6a5dc100fc8bc4937422858f3ea7f4d6
Дополнительные сведения 3: d99e
Дополнительные сведения 4: d99e6ea7c98e99ec954f04cd3f202fdf
Actively used only here this procedure and function.
SendMouseMoveEvent
ExecuteJavaScript
RetrieveText
RetrieveHTML
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Random crashes on 76.1.13

Post by salvadordf »

Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :

Code: Select all

GlobalCEFApp.DisableFeatures  := 'NetworkService,OutOfBlinkCors';
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Random crashes on 76.1.13

Post by dilfich »

I of course added this as and was shown in demo.
thefunkyjoint
Posts: 513
Joined: Thu Aug 10, 2017 12:40 pm

Re: Random crashes on 76.1.13

Post by thefunkyjoint »

salvadordf wrote: Wed Oct 02, 2019 4:29 pm Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :

Code: Select all

GlobalCEFApp.DisableFeatures  := 'NetworkService,OutOfBlinkCors';
What exactly would be the effect of the line above, please ?
dilfich
Posts: 368
Joined: Thu Nov 30, 2017 1:17 am

Re: Random crashes on 76.1.13

Post by dilfich »

Still, apparently this is a bug. Tried different versions up to 75, same thing. ((
In General, rolled back to 70.0.3538.102, the most stable yet + you can clean the cache.
thefunkyjoint
Posts: 513
Joined: Thu Aug 10, 2017 12:40 pm

Re: Random crashes on 76.1.13

Post by thefunkyjoint »

dilfich wrote: Fri Oct 04, 2019 6:21 pm Still, apparently this is a bug. Tried different versions up to 75, same thing. ((
In General, rolled back to 70.0.3538.102, the most stable yet + you can clean the cache.
+1 for some bug in the last versions...

I'm having random crashes that never happened until the last releases, maybe started in 3 or 4 previous versions. Still i'm not able to identify exactly the cause, but usually it happens in big pages, with heavy use of ajax (like Facebook groups).
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Random crashes on 76.1.13

Post by salvadordf »

thefunkyjoint wrote: Fri Oct 04, 2019 5:52 pm
salvadordf wrote: Wed Oct 02, 2019 4:29 pm Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :

Code: Select all

GlobalCEFApp.DisableFeatures  := 'NetworkService,OutOfBlinkCors';
What exactly would be the effect of the line above, please ?
Chromium 75 enabled a new feature called "Network service" by default and it caused some issues. All demos since then add that line to disable that service.

Chromium 77 removed the possibility of disabling that feature and now we have issues when you close the demos.
thefunkyjoint
Posts: 513
Joined: Thu Aug 10, 2017 12:40 pm

Re: Random crashes on 76.1.13

Post by thefunkyjoint »

salvadordf wrote: Fri Oct 04, 2019 7:14 pm
thefunkyjoint wrote: Fri Oct 04, 2019 5:52 pm
salvadordf wrote: Wed Oct 02, 2019 4:29 pm Check that you have this code line before the GlobalCEFApp.StartMainProcess call in the DPR file :

Code: Select all

GlobalCEFApp.DisableFeatures  := 'NetworkService,OutOfBlinkCors';
What exactly would be the effect of the line above, please ?
Chromium 75 enabled a new feature called "Network service" by default and it caused some issues. All demos since then add that line to disable that service.

Chromium 77 removed the possibility of disabling that feature and now we have issues when you close the demos.
Thanks for the info, i did not try the 77 beta yet.
User avatar
salvadordf
Posts: 4565
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: Random crashes on 76.1.13

Post by salvadordf »

This CEF issue might be related to your problems getting the HTML and text from some web pages :
https://bitbucket.org/chromiumembedded/ ... ce-and-get
Post Reply