ExeOutput 2 Beta

See
1_2.png
ExeOutput 2 Beta 2 is ready for Beta testers - 01/29/16 ExeOutput for PHP
The second Beta is ready for all Beta testers! What’s new in Beta 2: Chromium engine upgraded to Chromium version 45.0.2454.101 (CEF3 branch 2454, Bitbucket) NEW CONSOLE APPLICATIONS! You can now create CLI PHP apps by turning PHP scripts into stand-alone EXE files without any PHP dependencies. Code signing now supports SHA 256 and dual SHA1-SHA2 digital signatures. New Chromium rendering options (disable accelerated 2d canvas, disable Flash and so on). Print to PDF feature in addition to stan…
at the bottom
 
ok
la mia licenza però risulta essere scaduta:

Your maintenance expired on 2013-11-19. Your license key will not work with versions of ExeOutput released after this date

come faccio ad attivare la versione 2 beta 2?

grazie

Walter
 
System() do not work…

I tried to use the system() function for imagick(convert.exe) but it does not work.
how to execute “convert.exe” or imagick extension?

thank you…
 
Testing with Beta 2

Why this works:
Code:
<?php
    echo exo_return_hescriptcom("UserMain.ImportImage", "Error");
?>
And this not?
Code:
<script>
var image_path = exeoutput.runHEScriptCom('UserMain.ImportImage', false);
</script>
 
Last edited:
We’ll check system() but you can also use our HEScript script functions to run external programs. See the documentation.
 
Run the main demonstration that ships with Beta 2 and look for PHP/JavaScript topics. exeoutput.runHEScriptCom now requires a callback function. Nothing is returned, so image_path will always be empty in your example.
 
Last edited:
I found this in Beta 2 documentation:
Code:
function testRun() {
var s = exeoutput.RunHEScriptCom('usermain.getit|password1', 'none');
alert(s);
}
I don’t understand the difference compared to my code.
Thanks.
 
Documentation is not up-to-date, see the main demonstration that ships with Beta 2, it contains a working sample.
 
In my testing, if you click the title bar close X, the exe locks up. File -> Exit Application works fine (as long as you haven’t already clicked title bar close X).
 
Strange! Does it occur with the EXE demo that ships with Beta 2? We need to know whether this problem occurs on your computer for all EXE files or only with the EXE you built.
 
We’re updating the old website to offer activation keys for version 2 to registered users with an active maintenance first. We’ll also publish upgrade conditions later.
 
I did determine that when the external call (via script in the index.php file) to the 3rd party code file jQuery.js is removed, the close X works. I have yet to determine if there is some sort of conflict with the windows close.
 
Last edited:
No. No events have been added. Just attaching the script code, in the PHP source, to display a jquery version of a javascript alert.
 
Back
Top