Search results

  1. jaydadhania08

    Command Line Argument --load-extension not working

    Hello, I developed a small chrome extension that lets webpages to call chrome extension APIs in the background (thus enabling me to run CDP commands), but am not able to load it with the EXE app created by ExeOutput. I am trying to load the unpacked extension from its folder, NOT the packed CRX...
  2. jaydadhania08

    Unable to use DevTools externally

    Using the latest ExeOutput / CEF versions. Also using the EXORun.dat patch provided by you. I have enabled Devtools and Devtools in Popup in my rendering engine properties. When I click Developer Tools from the context menu, it works fine (see below image). But when I visit...
  3. jaydadhania08

    [Urgent] Unable to run 2 EXEs at once

    Hello, Just upgraded to ExeOutput 2024.2.0, compiled 2 different projects. Now I cannot run both those EXEs at the same time - only one of them can run at a time. Notes: They are completely different projects with different application GUIDs. None of them use DevTools. Either of these apps...
  4. jaydadhania08

    PHP WebSocket - flush() Support

    Context: I want to develop a real-time web app that uses WebSocket. One app will be running on main PC (let’s call it server) - it will start a websocket listener in PHP. Other “client” app will be running on other PCs in the same network, and will connect to the main PC via javascript’s...
  5. jaydadhania08

    Change DevTools Port

    The Application Settings > Rendering Engine tab allows to turn on Developer Tools, and when the application starts, the chromium instance is started with arg --remote-debugging-port=9000 and devtools can be accessed at http://localhost:9000 My concern is this: I have developed an app (let’s...
  6. jaydadhania08

    JavaScript prompt() issue

    Hi, I am using ExeOutput 2020.2, we have an issue with javascript prompt() function. The input box in the prompt() function is not the fixed size, and gets longer with longer message. It also causes issues when we have new lines in the message. For example see these screenshots This...
  7. jaydadhania08

    Version 2020 issues

    Hi, in the recent 2020 version of Exeoutput I have some issues / suggestions. [1] Screen flashing / flicker After a dialog box like javascript alert() or confirm() there is a screen flash / flicker and it looks like the white status bar like thing becomes visible and then back hidden after...
  8. jaydadhania08

    Take Screenshot

    Hi, is there a way to programatically take a “screenshot” of the window contents? (Need to capture only Exe window’s contents, the entire screen is not needed). It could be any HEScript function/code or maybe any javascript thing. According to some SO posts, this is possible with some...
  9. jaydadhania08

    Chromium Args issue

    Hi, I want to pass --disable-web-security --user-data-dir=c:\my\data as additional chromium args, so that I can disable the web security. As https://stackoverflow.com/a/36939693/10038051 suggests, we also need to pass the user-data-dir value to make this flag work. I need this to do some...
  10. jaydadhania08

    HEScript PrintPDF prints the whole page - print only from frame

    Hi, I want to use the HEScript function PrintPDF, but it generates PDF of the whole webpage. I want to use it to generate PDF of a specific iFrame on my webpage. Basically, I am developing an application that has some settings on the left side and as the user changes them, the content in the...
  11. jaydadhania08

    Randomly appearing Access Violation

    Using ExeOutput4PHP 2019, licenced version. My application, when launched gives 4-5 errors saying “Access violation at address XXXX in module ‘test.exe’” The app also freezes for some time before these errors appear. I don’t know what causes these errors, my PHP files run just fine in my...
  12. jaydadhania08

    Php flush() not working

    I read that ExeOutput4PHP does not yet support PHP’s flush(). But your docs at https://www.exeoutput.com/help/globalvariables shows an example which has flush(). You may want to remove that example, or even better, work on supporting flush()? supporting flush() would solve many problems...
  13. jaydadhania08

    Php Content-Type header issue

    There is an issue with PHP Content-Type headers. when header() function is NOT USED, php returns 2 headers: 1: Content-Type: text/html; charset=UTF-8 2: Content-Type: text/html when header('Content-Type: text/html') is used, php returns 2 headers: 1: Content-Type: text/html; charset=UTF-8 2...
  14. jaydadhania08

    Issue with PHP Sessions

    Hello there, I tried fiddling with PHP Sessions but found some serious issues. With default settings, using PHP’s native function session_start() will create the session storage file in WINDOWS TEMP directory, which is highly unsecure. Anyone can read the files and is free to alter anything...
Back
Top