Search results

  1. I

    Windows 8/10 notification - SOLVED

    Sorry. You got it. Using the “Bitdefender” in “automatic mode”, the Bitdefender disable the notification. :S I don’t know why. But without the BitDefender it works.
  2. I

    Windows 8/10 notification - SOLVED

    The example not work. 😦 I try it only in my PC, on click in the button not display any notification. I don’t know why. I’m using Windows 10
  3. I

    PHP DLL Error while starting up the EXE

    You need to enable this DLL in “PHP Extensions”. Go to “PHP Settings” > “PHP Extensions” In the list find the “php_enchant.dll” (I think is in top of the list) and right-click in the “php_enchant.dll” and click in “Compile into EXE” I think that is all. See the image: Capturar.PNG585×436...
  4. 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...
  5. I

    Disable backspace

    This JQuery not work until the Jquery is loaded. Please GDG. Make a way to disable all shortcut in the “web browser”, without use any JQuery/Javascript.
  6. 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?
  7. I

    "Kiosk Mode" enable move window

    I think you don’t understand. I mean create a “area” to move the window. In all div area the user can move the window. :s Some think like that.
  8. 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.
  9. I

    Disable backspace

    SOLVED! I use this JQuery: $(document).on(‘keydown’,function(e){var $target=$(e.target||e.srcElement);if(e.keyCode==8&&!$target.is(‘input,[contenteditable=“true”],textarea’)) {e.preventDefault();}})
  10. 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?
  11. I

    CURLOPT_CAINFO and CURLOPT_CAPATH not work

    Using the “vitual path” (= ‘crt.crt’) is not possible to find the crt.crt. However. I’m using this: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, '10'); curl_setopt($ch, CURLOPT_USERAGENT, 'MyPHP/1.0')...
  12. 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...
  13. I

    V2 Beta ExoVerif.dll error

    What is the diference between the Full Build and “normal” Build? I get some errors without use the “Full Build”. I don’t know why. Show error with strange letters in PHP, in line 1. When use the Full this is fixed.
  14. 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. 😦
  15. 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...
  16. 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>"...
  17. I

    Class 'COM' not found [SOLVED]

    Thank you jdeel. This is a alternative to exec(). I don’t know how good it is, but this work (not 100%). 🙂
  18. I

    Exec() not working!

    In the BETA this show: “PHP Warning: exec(): Unable to fork […]”. I see the ExeOutput for PHP documentation using the “RunAProgram” but this is static. The $param change every time, how I can use the “RunAProgram” with php based param? I try use: procedure ff(Param: String); var...
  19. 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