Search results

  1. I

    Beta - Request multiples pages cause error

    Imagine this: <a href="script1.php">Button</a> <a href="script2.php">Button2</a> Until the script1.php is loaded the end-user can click multiples time in “Button” or in “Button2”. If you click in “Button” and after click multiples times in “Button2” or in “Button”, the EXE will crash. Show a...
  2. I

    Windows 8/10 notification - SOLVED

    Windows 8+ have support to notification in the OS. This is used by many software, include the Outlook for example. A “small” “pop-up” in bottom-right. This have a icon, title and small text. Have a plan to support it in ExeOutput for PHP?
  3. I

    "Kiosk Mode" enable move window

    Is possible create a location to move the window in “Kiosk Mode”. Exemple: <div class="exe-move"> </div> If the user click and move the mouse the window will move. The same think when you move the window next to the “X” option.
  4. I

    Disable backspace

    In browser have some shortcut. Press backspace is one, on pressing this go previous page. I don’t try all the shortcut. How I can disable all shortcut?
  5. I

    CURLOPT_CAINFO and CURLOPT_CAPATH not work

    Is not possible use the: curl_setopt($ch, CURLOPT_CAINFO, $file); The error show is not possible find the certificate. curl_setopt($ch, CURLOPT_CAPATH, $file) with the curl_setopt($ch, CURLOPT_CAINFO, $file) get the same problem. If local file: -index.php (with curl) -certificate.crt Get...
  6. I

    Fixed width/height for pop-up

    How I can open one pop-up to a internal file with fixed width/height? The Javascript to open using: window.external.ShowPopup(Name, URL, Width, Height, Top, Left, Param); Not working the Beta. Using the common javascript window.open() this possible resize the window. 😦
  7. I

    Sugestion: Loading Page + Injected Javascript

    I’m testing the Beta, this is better than the old version. I have some sugestions and bugs to report. Allow create a "Loading Page" This page will show util the PHP load finished. The content of this page will load in the startup. Allow some javascript before the page load. This will work to...
  8. I

    Select input not move in Beta

    If you move the window the “option” from “select” will stay in the old position. If you start the exe from the center screen and move the window. The “options” will show in the center of the screen, not change based on windows move. Note: “select” = HTML Select Tag = "<select></select>"...
  9. I

    Exec() not working!

    I have this PHP: $param = (…) // The $param is correct, this is not a problem! // -re token=123456 exec('program.php -r '.$param. $output); var_dump($output); // If work: this will execute the program.php with -r -re token=123456 -u “abc” But not work! The var_dump(): array(2) { [0]=>...
Back
Top