Search results

  1. gdgsupport

    Cannot create image files with WebView engine

    This problem with WebView could be related to: See https://www.exeoutput.com/help/rendering-engine
  2. gdgsupport

    Error when trying to Run AdminNeo

    Copy the EXE file you generated to "YOUR PROJECT FOLDER\MySQL\Adminer\adminer-mysql.exe". This is the path expected. Thus, the error "Warning: Cannot start the portable MySQL server. Try to restart the application or maybe the connection port is already taken" will disappear. Place a copy of...
  3. gdgsupport

    Error when trying to Run AdminNeo

    Try this: open the Adminneo EXOP project file in ExeOutput, select the older CEF version, and build it. After that, place the generated EXE in your project’s MySQL subfolder.
  4. gdgsupport

    Running Artisan commands

    We are reviewing this issue as it requires technical testing.
  5. gdgsupport

    Error when trying to Run AdminNeo

    Then, since Admineo was compiled with the latest CEF version, there are requirements: For applications using CEF version 139 or later: A minimum of Visual C++ 2022 Redistributable is now required. Higher versions are backward compatible. Can you please check if this component is correctly set up...
  6. gdgsupport

    Error when trying to Run AdminNeo

    So there is another CEF version installed by another software on your computer that could probably interfere. Can you try to search for all libcef.dll files on your computer? With a tool like UltraSearch Free?
  7. gdgsupport

    Running Artisan commands

    So artisan.exe queue:env works fine but not artisan.exe queue:listen ?
  8. gdgsupport

    Error when trying to Run AdminNeo

    Please make sure you downloaded https://download.exeoutput.com/2025/adminer-setup2025.exe Run it to install Adminer. Then, visit this folder with Windows Explorer C:\ProgramData\GDG Software\ExeOutput for PHP App Cache\CEF1390380 Do you see the libcef.dll file? Can you right click it and see...
  9. gdgsupport

    Running Artisan commands

    To pass commands you should change the 2nd parameter in RunAProgram: procedure RunArtisan; var EbookPath, MyProgram: String; begin EbookPath := GetGlobalVar("HEPublicationPath", ""); MyProgram := EbookPath + "artisan.exe"; RunAProgram(MyProgram, "queue:work", EbookPath, false, SW_SHOWNORMAL)...
  10. gdgsupport

    Running Artisan commands

    The laravel-artisan.exop package allows you to build a standalone Artisan console application. Once you have created the executable, simply place the .exe file in your Laravel application directory. Then, open a command prompt and you will be able to run Artisan commands directly from it...
  11. gdgsupport

    Error when trying to Run AdminNeo

    AdminNeo requires the CEF (Chromium Embedded Framework) files to be installed. Normally, these files are installed automatically when you install ExeOutput for PHP, so they should already be present on your system. However, if the installation did not complete properly, that could explain your...
  12. gdgsupport

    php protection

    It's still on the TODO list. We are making a lot of internal changes, including encryption, for the next release. So we'll have to fix this issue too.
  13. gdgsupport

    Change HTTP Server Port Dynamically

    That’s great to hear! Happy the solution worked for you. It did take some digging on our side, so your feedback means a lot Susan ;).
  14. gdgsupport

    Running Artisan commands

    The sole way is described here: https://www.gdgsoft.info/t/running-artisan-commands.7994/post-23015
  15. gdgsupport

    Change HTTP Server Port Dynamically

    Finally, we found a workaround. Please use this HEScript code in your UserMain script: procedure StartMyHTTPServer(portStr: String); var portNum: integer; begin StopHTTPServer; ShowMessage("SelectedPort = " + portStr); // debug portNum := StrToIntDef(portStr, 8142)...
  16. gdgsupport

    Change HTTP Server Port Dynamically

    We're trying to reproduce the issue here, I'll keep you in touch ;)
  17. gdgsupport

    Woocommerce integration kit does not activate the protected workbook

    In your XLS Padlock project settings, have you left the Application Title blank?
  18. gdgsupport

    Change HTTP Server Port Dynamically

    My bad, it's the " quote and not the '. procedure StartMyHTTPServer; var portStr: string; portNum: integer; begin portStr := GetGlobalVar("SelectedPort", "8142"); ShowMessage("SelectedPort = " + portStr); // debug portNum := StrToIntDef(portStr, 8142); StartHTTPServer(portNum)...
  19. gdgsupport

    Change HTTP Server Port Dynamically

    This is correct HEScript. If it is not working as expected, the problem is almost certainly somewhere else. In the PHP Settings → External HTTP Server page, you must: Check “Enable External HTTP Server”. Uncheck “Start and stop the HTTP server automatically” Please also try: procedure...
  20. gdgsupport

    php protection

    OK thanks for the sample, this time we were able to reproduce the problem. We'll study the issue now.
Back
Top