Search results

  1. gdgsupport

    Instructions for my clients to use the auto update function

    If the official documentation isn’t sufficient (link), here’s a video tutorial for another one of our products that uses the same mechanism. It should be helpful: https://www.htmlexe.com/video/tutorial-ebook-web-update The key point is to make sure you increase the EXE File Version Info, so...
  2. gdgsupport

    How to translate "Navigation" and "Help" into polish?

    Indeed, it's a problem that will be fixed into next release. As a workaround, you can change them yourself with the UI editor. Here are the steps to do so:
  3. gdgsupport

    Cannot create image files with WebView engine

    This problem with WebView could be related to: See https://www.exeoutput.com/help/rendering-engine
  4. 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...
  5. 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.
  6. gdgsupport

    Running Artisan commands

    We are reviewing this issue as it requires technical testing.
  7. 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...
  8. 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?
  9. gdgsupport

    Running Artisan commands

    So artisan.exe queue:env works fine but not artisan.exe queue:listen ?
  10. 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...
  11. 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)...
  12. 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...
  13. 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...
  14. 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.
  15. 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 ;).
  16. gdgsupport

    Running Artisan commands

    The sole way is described here: https://www.gdgsoft.info/t/running-artisan-commands.7994/post-23015
  17. 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)...
  18. gdgsupport

    Change HTTP Server Port Dynamically

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

    Woocommerce integration kit does not activate the protected workbook

    In your XLS Padlock project settings, have you left the Application Title blank?
  20. 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)...
Back
Top