Search results

  1. webguy22

    Data folder (use of) clarification

    Two questions. (Using ExeOutput V2021.0) If everything is contained in the compiled exe, and the only calls outside the exe are to files located on an external web site, is a there any reason to deploy a Data folder with the application? If no, for a deployment using MySQL, then only the exe...
  2. webguy22

    Is there a way to check if MySQL server is connected (or not)?

    And avoid error message “WARNING: cannot start the portable MySql server…” when executing application. Application does proceed but, as expected, when trying to use MySQL get “PHP Fatal error: Uncaught Error: Call to a member function query()”. Connection can fail, for multiple reasons...
  3. webguy22

    Safe port to use for mySQL

    For setup, is there a port number, or a range, that’s pretty safe where a user will not be using (and to avoid a potential conflict)? I’m avoiding 3306. Thinking 3308 is probably ok. Assume there are better choices. Thanks
  4. webguy22

    UserMain - how to get a global variable

    Yes, but outside UserMain. I figured out an alternative that works. I set the global var inside a UserMain function: Result := SelectDirectory(“Choose a folder”, “”); if (Result <> “”) then SetGlobalVar(“defaultSearchFolder”, Result, true); Now I’m able to use it throughout the program.
  5. webguy22

    UserMain - how to get a global variable

    Figured out one thing - no script error when using double quotes around global var. defaultDirectory := GetGlobalVar(“defaultDirectory”, “C:\wamp64”); But it does not get the global variable “defaultDirectory”. It’s always set to C:\wamp64. Are UserMain functions able to pick up a global...
  6. webguy22

    UserMain - how to get a global variable

    How do I get a global variable in a UserMain function? Function AskFolder: String; Begin defaultDirectory := GetGlobalVar( ‘defaultDirectory’, “”); Result := SelectDirectory(“Choose a folder”, defaultDirectory); End; Did not work. Also tried exo_getglobalvariable. I’m probably missing...
  7. webguy22

    SelectDirectory - when setting a root, is it possible to select another folder?

    Is it possible to select another folder below the root in the folder selection dialog? Example: Result := SelectDirectory(“Choose a folder”, “C:\Users\Jim”); Will only show the Jim folder and it’s subfolders. But there’s no choice to go back to the Users and pick another folder, say Jean. 95%...
  8. webguy22

    PHP Debug Message

    My user is seeing it under version 2021.0. I have a setup that places my program in a user’s Program Files (x86) folder. No error log in the folder to see possible errors. Could it be somewhere else, if at all? This a question to anyone. Thanks
  9. webguy22

    PHP Debug Message

    I have a user getting the same error, but I cannot replicate on my end. Is there a way to get more info from the user’s computer to try to solve this? I know on my localhost I can see the php errors via php_errors.log. But looking through this forum I cannot find the best approach to solve the...
  10. webguy22

    After upgrade PHP Hook Error

    Ok, sorry for being cursed. I received a notification that the download file had yet to be pulled. Maybe that wasn’t true.
  11. webguy22

    After upgrade PHP Hook Error

    Never mind. Tired of waiting. I did what honest did (copying everything over to a new project in ver 2020) and it fixed the problem.
  12. webguy22

    After upgrade PHP Hook Error

    Will I get a reply soon? Or I need to wait a bit? Thanks
  13. webguy22

    After upgrade PHP Hook Error

    Zipped and sent to [email protected] (via wetransfer,com).
  14. webguy22

    After upgrade PHP Hook Error

    Yes. What’s the best way to get them to you? I know I can’t send an .exe via email. I could possibly provide a link for you to download.
  15. webguy22

    After upgrade PHP Hook Error

    Having same issue with 2020.2. Not using any anti-virus or security software. I tried the main demo and it worked with no problems. I did a Save As to a new project, but that did not solve the problem. I assume, to resolve, is to create a new project and copy everything over to it? If so, kind...
  16. webguy22

    ExeOutput and Windows 10 May Update

    Is there a patch for ExeOutput for PHP 2018 or do I have to update to ExeOutput for PHP 2020?
  17. webguy22

    GetGlobalVariable not working in JavaScript - SOLVED

    Initially it was not working, but I then added the DefaultValueIfNotFound and all is good now. exeoutput.GetGlobalVariable( ‘directories’, “”, DemoCallback); Thanks
  18. webguy22

    Conflict with Wamp server

    I’m using WAMP under Win 7 without issue. Not sure exactly what your issue is. For what I was doing, I had to convert my localhost path directory separator from “/” to “” to work under ExeOutput, else ExeOutput was not finding the path.
  19. webguy22

    GetGlobalVariable not working in JavaScript - SOLVED

    var dirs = exeoutput.GetGlobalVariable( ‘directories’, “”); alert(dirs); always returns undefined. exeoutput.SetGlobalVariable works fine in JS. Example: exeoutput.SetGlobalVariable( ‘directories’, “”, true ); Saw this post: Exeoutput.SetGlobalVariable problem where user said...
  20. webguy22

    Is there a step by step process to install a code signing certificate?

    Update… I originally downloaded my Code Signing Certificate using Chrome, which Comodo said was fine in their download page. Spoke to Comodo. They said Chrome does not support Private Key generation, so you can not use it for collecting or applying code signing certificate. When I tried to...
Back
Top