Search results

  1. oldteacher

    Phishing url control

    Not totally clear what you’re asking/meaning. But if you are loading online webpage in exeout, you might try this to open users default browser: <a href="heexternal://http://moreonlineprofit.com"><b>CLICK HERE to Learn More</b></a> This of course assumes you have control of the targeted page.
  2. oldteacher

    Online Activation Laravel problem

    I no longer have access to the activation kit, but open up the guide (heak-guide.exe) and search for heactivate.php WARNING: the URL should be pointing to a directory, not a file. http://path/to/heakdist/mypublication/ is correct http://path/to/heakdist/mypublication/heactivate.php is wrong...
  3. oldteacher

    Referring domain name

    No issue for me any longer. Have found an alternative solution for the projects. But surely a feature that others (any me) will find useful.
  4. oldteacher

    Referring domain name

    It would be useful to set something 🙂 I am not sure what is best method but I have been experimenting with WebView2 for few months. WebView2 does not expose any direct API to set the Referrer-Policy header for every navigation. However, you have some options to influence referrer behavior when...
  5. oldteacher

    Connect from LAN or remote

    It’s really unprofessional for me to keep the desktop program open and then use it via the browser pages I am sorry, but not following what you are saying / meaning? These types of errors can be very tricky to troubleshoot. Without physically using the software, really hard to give solid advise.
  6. oldteacher

    Connect from LAN or remote

    First thing I would do is make sure dev tools is turned on: Then open dev tools in your app. In console see what the error says. I may lead you to the problem area. Another thing to try is different ports. Although port 7790 is unassigned (Service Name and Transport Protocol Port Number...
  7. oldteacher

    Referring domain name

    i am stumped after days of research to get the heserver sent as referrer. Not asking for a full all-out code example, but can you point me in the correct direction?
  8. oldteacher

    Connect from LAN or remote

    In all my tests I have never seen or experienced an error like: To get best assistance you should provide complete info like what Windows version, PHP versions and real screenshots. Your information is not enough for me to assist you. Very cryptic descriptions of issue. It may be best for...
  9. oldteacher

    Connect from LAN or remote

    No image / screenshot in post
  10. oldteacher

    Disable search box

    Might help in short term: window.addEventListener("keydown",function (e) { if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { e.preventDefault(); } })
  11. oldteacher

    Use of the program with multiple PCs connected to a network via LAN

    This may help you: Connect from LAN or remote - #2 by oldteacher
  12. oldteacher

    Referring domain name

    Will have to figure that out, thanks.
  13. oldteacher

    Referring domain name

    My bad, should have stated that:) WebView2
  14. oldteacher

    Referring domain name

    How to find the domain name sent by htmlexe to remote server? In past have simply used “heserver” in exeout with some success, htmlexe 2024 is not being friendly with me:) For instance, I have this on a server: function enableCORS(req, res, next) { const allowedDomains = ['example.net'...
  15. oldteacher

    Run PHP 7.4 in Exeoutput 2024

    I have never had to download a version of PHP and install it. The software automatically handles the complete process. I do not think manually installing a php version will work without issues. Think you need to wait on admin support to assist you.
  16. oldteacher

    Run PHP 7.4 in Exeoutput 2024

    I would make sure PHP 7.4 is installed: If you do not see PHP 7.4, check for updates and install: Also make sure that the same PHP extensions are compiled.
  17. oldteacher

    Connect from LAN or remote

    Try this on host machine: Use CMD and then “ipconfig” to get the host machine local ip. In my case 192.168.4.50:7790 I can reach the IP from any machine on the same network.
  18. oldteacher

    Curl error: SSL certificate problem: unable to get local issuer certificate

    Did you include / compile the openssl extension into your software? Been awhile since I have messed with exeout and curl, but if I recall, this may help: $url = "https://example.com"; // Replace with the desired URL $ch = curl_init(); // Initialize cURL session // Set cURL options...
  19. oldteacher

    2024 TrackingPrevention bug

    “I found a way around the error using a different method… Sorry for the false alarm.” Okie Dokie. Not a clue what you are talking about, but I am old 🙂 Just aksing what you used as your way around it. No big deal though.
  20. oldteacher

    Program created by version 2024 does not run on every computer

    Far from fool proof, but I have used something like below for my school software. I cannot post code here; it is forbidden for me: No way for me to add code here, so I have uploaded a text file here.
Back
Top