Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. WebEngineCore crashes always
Qt 6.11 is out! See what's new in the release blog

WebEngineCore crashes always

Scheduled Pinned Locked Moved Unsolved General and Desktop
webwebenginewebenginecorehelpcrash app
6 Posts 3 Posters 129 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Joe von HabsburgJ Offline
    Joe von HabsburgJ Offline
    Joe von Habsburg
    wrote last edited by
    #1

    I use webengineview for web page , but usually I receive always crash. Just crash time changing.

    Faulting application name: MyApp.exe, version: 0.0.0.0, time stamp: 0x6a747042
    Faulting module name: Qt6WebEngineCore.dll, version: 6.9.3.0, time stamp: 0x68d5ad0f
    Exception code: 0xc0000005
    Fault offset: 0x0000000000f722d3
    Faulting process id: 0x5a94
    Faulting application start time: 0x01dd2596f0a700fe
    Faulting application path: C:\Users\X\Desktop\MyApp\build\Desktop_Qt_6_9_3_MSVC2022_64bit-Release\MyApp.exe
    Faulting module path: C:\Qt\6.9.3\msvc2022_64\bin\Qt6WebEngineCore.dll
    Report Id: 088e9cab-e362-41a9-b787-6659e799a6a8
    Faulting package full name: 
    Faulting package-relative application ID:
    

    Why its happening ?

    Any idea for helping ?

    jsulmJ 1 Reply Last reply
    0
    • Joe von HabsburgJ Joe von Habsburg

      I use webengineview for web page , but usually I receive always crash. Just crash time changing.

      Faulting application name: MyApp.exe, version: 0.0.0.0, time stamp: 0x6a747042
      Faulting module name: Qt6WebEngineCore.dll, version: 6.9.3.0, time stamp: 0x68d5ad0f
      Exception code: 0xc0000005
      Fault offset: 0x0000000000f722d3
      Faulting process id: 0x5a94
      Faulting application start time: 0x01dd2596f0a700fe
      Faulting application path: C:\Users\X\Desktop\MyApp\build\Desktop_Qt_6_9_3_MSVC2022_64bit-Release\MyApp.exe
      Faulting module path: C:\Qt\6.9.3\msvc2022_64\bin\Qt6WebEngineCore.dll
      Report Id: 088e9cab-e362-41a9-b787-6659e799a6a8
      Faulting package full name: 
      Faulting package-relative application ID:
      

      Why its happening ?

      Any idea for helping ?

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote last edited by
      #2

      @Joe-von-Habsburg Use a debugger to get stack trace.
      Try a more recent Qt version.

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      1
      • Joe von HabsburgJ Offline
        Joe von HabsburgJ Offline
        Joe von Habsburg
        wrote last edited by
        #3

        I cant receive crash on debug mode,

        My old topic

        I found the crash problem. WhenI write that topic, I think problem from socket, but I know now, problem is qwebengine.

        @jsulm said in WebEngineCore crashes always:

        Try a more recent Qt version.

        Can it solve the problem ?

        jsulmJ 1 Reply Last reply
        0
        • Joe von HabsburgJ Joe von Habsburg

          I cant receive crash on debug mode,

          My old topic

          I found the crash problem. WhenI write that topic, I think problem from socket, but I know now, problem is qwebengine.

          @jsulm said in WebEngineCore crashes always:

          Try a more recent Qt version.

          Can it solve the problem ?

          jsulmJ Offline
          jsulmJ Offline
          jsulm
          Lifetime Qt Champion
          wrote last edited by
          #4

          @Joe-von-Habsburg said in WebEngineCore crashes always:

          Can it solve the problem ?

          Maybe

          https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          2
          • Nils SjobergN Offline
            Nils SjobergN Offline
            Nils Sjoberg
            wrote last edited by
            #5

            You run the exe directly from build\Desktop_Qt_6_9_3_MSVC2022_64bit-Release, i.e. from a raw Qt Creator build folder — not from a build that has been windeployqt. QtWebEngine (based on Chromium) is not satisfied with the DLL itself: it also needs QtWebEngineProcess.exe, resources.pak/icudtl.dat files, and the translations/qtwebengine_locales folder alongside it. When they are missing, the renderer/GPU sub-process does not start correctly, and this manifests itself precisely as an access violation (0xc0000005) in Qt6WebEngineCore.dll at a variable time — not necessarily on the first run but at the point where the render is performed.

            "What's up, Doc?"

            1 Reply Last reply
            0
            • Nils SjobergN Offline
              Nils SjobergN Offline
              Nils Sjoberg
              wrote last edited by
              #6

              Run windeployqt.exe --webengine on your exe (from C:\Qt\6.9.3\msvc2022_64\bin), and check again if the crashes disappear.

              "What's up, Doc?"

              1 Reply Last reply
              0

              • Login

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • Users
              • Groups
              • Search
              • Get Qt Extensions
              • Unsolved