Recent content by jayd

  1. J

    How do I access an exe file with popen?

    Hi, I’m trying to access an EXE file through popen but it doesn’t work. I already checked Unpack the file to virtual memory on startup. Command: if( ($fp = popen("7za.exe a -t7z -mx5 \"C:\Users\Me\Documents\f2fdabb5\" \"H:\\test\\\", "r")) ) But it doesnt work, it returns nothing. but...
  2. J

    How to change statusbar information ? [Solved]

    😮 Many thanks!! 🙂 I was looking for this for hours
  3. J

    How to change statusbar information ? [Solved]

    Hi, I’m wondering if it’s possible to change the status bar informations… not just the text, but adding an icon and manipulate the progress bar with HEScript. If not, is it possible to implement it in a future version ? 🙂 Thank you
  4. J

    $_POST is empty via Ajax

    Hahaha okay thanks for this valuable hint 😉 Useful! Well, at least we tried.
  5. J

    $_POST is empty via Ajax

    Oh ok sorry I though it was a couple of megabytes of data haha… I tried on my side, in a browser, it’s working, but inside EXEOutput, the only way I found is using the GET method… 😦 Maybe wait for the GDG admin or someone else to check this thread for you, someone must have a solution… I’m...
  6. J

    How to create a file when user closes the window

    Hmmm, maybe you can call a page on closing or omething like that and retrieve the information needed, and then parse it to HEScript… See http://davidwalsh.name/php-cookies for more informations about cookies and PHP… Or call a javascript code that read the cookie information and then parse it...
  7. J

    How to create a file when user closes the window

    Hi! I found this : http://www.htmlexe.com/help/samplescript3 - Maybe it can work, I didn’t test it, but it still a HEScript, so it worth a try 😉 Hope it will help ! Good luck
  8. J

    [SOLVED] $.ajax header is different

    It happen some times 😉 It would be a good idea to put (SOLVED) in the subject by editing the title in your first post if this problem is resolved. 🙂
  9. J

    $_POST is empty via Ajax

    Hmm… did you var_dump($_POST) on your PHP page? If the data is too big, maybe PHP timed out… try to put set_time_limit(0); on the first line of your PHP page (so it will never time out) and make sure upload_max_filesize (for input with type as “file”) and post_max_size are set properly in your...
Back
Top