Page 2 of 2

Re: Random crashes on 76.1.13

Posted: Sat Sep 28, 2019 5:03 pm
by salvadordf
You can also disable the images for one browser by setting TChromium.Options.ImageLoading to STATE_DISABLED before calling TChromium.CreateBrowser.

Re: Random crashes on 76.1.13

Posted: Wed Oct 02, 2019 2:47 pm
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

Re: Random crashes on 76.1.13

Posted: Wed Oct 02, 2019 4:29 pm
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';

Re: Random crashes on 76.1.13

Posted: Wed Oct 02, 2019 6:19 pm
by dilfich
I of course added this as and was shown in demo.

Re: Random crashes on 76.1.13

Posted: Fri Oct 04, 2019 5:52 pm
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 ?

Re: Random crashes on 76.1.13

Posted: Fri Oct 04, 2019 6:21 pm
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.

Re: Random crashes on 76.1.13

Posted: Fri Oct 04, 2019 6:31 pm
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).

Re: Random crashes on 76.1.13

Posted: Fri Oct 04, 2019 7:14 pm
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.

Re: Random crashes on 76.1.13

Posted: Fri Oct 04, 2019 7:29 pm
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.

Re: Random crashes on 76.1.13

Posted: Sun Oct 06, 2019 6:27 am
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