Stuck on "Just a moment please"

telmo_ferreira

New member
Hi,
when i use the php_snmp extention the app frezzes on “Just a moment please” screen.
i already try the options “compile into the EXE” and “Copy in the Data\ext”.
Dont work…
i really need that extention for my software works.
Any idea whats going on ?

Capturar1

Capturar
 
Already have install and add the environment variable to windows. Don’t receive any error.
It as suppose to receive errors on root folder.
Capturar
 
In Windows 10 the application works normally, but in Windows 7 the application stucks on “just wait…”

I believe that if I install any microsoft framework the application will work. Any ExeToOutput developer there could tell me the exeoutput dependencies to work?
 
There is no dependency on the .net framework for ExeOutput itself. Maybe your Windows 7 is not up-to-date?
 
Got similar problem.
Tried a very simple script with phpinfo() on it.
5.6, 7.2 and 7.3 works fine, all with http or https.
7.4 and 8.0 does not work at all, http/https, stuck on “Just a moment” screen.
Project: https://drive.google.com/file/d/1qQYfBaeCdPSoIPc4zc2b64hzzonqAzMs/view?usp=sharing

The PHP compilation command for 5.6, 7.2 and 7.3:
5.6: cscript /nologo configure.js “–enable-snapshot-build” “–enable-debug-pack” “–disable-zts” “–disable-isapi” “–disable-nsapi” “–without-mssql” “–without-pdo-mssql” “–without-pi3web” “–with-pdo-oci=c:\php-sdk\oracle\x86\instantclient_12_1\sdk,shared” “–with-oci8-12c=c:\php-sdk\oracle\x86\instantclient_12_1\sdk,shared” “–with-enchant=shared” “–enable-object-out-dir=…/obj/” “–enable-com-dotnet=shared” “–with-mcrypt=static” “–without-analyzer” “–with-pgo”

7.2: cscript /nologo configure.js “–enable-snapshot-build” “–enable-debug-pack” “–disable-zts” “–with-pdo-oci=c:\php-snap-build\deps_aux\oracle\x86\instantclient_12_1\sdk,shared” “–with-oci8-12c=c:\php-snap-build\deps_aux\oracle\x86\instantclient_12_1\sdk,shared” “–enable-object-out-dir=…/obj/” “–enable-com-dotnet=shared” “–without-analyzer” “–with-pgo”

7.3: cscript /nologo /e:jscript configure.js “–enable-snapshot-build” “–enable-debug-pack” “–disable-zts” “–with-pdo-oci=c:\php-snap-build\deps_aux\oracle\x86\instantclient_12_1\sdk,shared” “–with-oci8-12c=c:\php-snap-build\deps_aux\oracle\x86\instantclient_12_1\sdk,shared” “–enable-object-out-dir=…/obj/” “–enable-com-dotnet=shared” “–without-analyzer” “–with-pgo”

Screenshot 2023-02-02 at 06.05.47

Screenshot 2023-02-02 at 06.07.29

A little frustrated with this simple test, should not be that hard to have it working. Only tested in Win7.
 
Verify that your VM has up-to-date Visual C++ Redistributable on Windows 7 and latest SPs. Otherwise, the PHP-CGI.EXE process will fail.
 
Back
Top