Recent content by Wukong

  1. W

    DOCUMMENT ROOT Changes

    Hi @oldteacher , you may try to echo $filename3 and see the result if the output is what you are loocking for.
  2. W

    Link to user Public Directory

    Hi @oldteacher, you might want to check this Environment.SpecialFolder Enum (System) | Microsoft Docs for SpecialFolder enum. Sorry, I’ve been pretty busy lately. I just tried your code above. You can also just go up one folder after reaching Public Documents via php by doing: $public =...
  3. W

    Replace white screen in case of error

    I see! I myself for the moment do not activate php_error.log in production for the same reason as mentioned. I usually just leave a form in a report section to describe what went wrong in order to try to reproduce the potential bug in dev (not very practical and professional). That’s why I was...
  4. W

    Replace white screen in case of error

    Hi Matthias, I think I understand your need better (I haven’t tested the new error page management style yet). If I’m not mistaken, the “Send debug info” button sends (or tries to send) the “error message” and not the “php_error.txt” file (which contains until now in my tests, the real error...
  5. W

    Replace white screen in case of error

    Hi, The real error message is stored in the “php_errors.log” file (provided that the PHP error logging option (in “PHP Settings / Debugging” in ExeOutput for PHP) is checked. Best regards!
  6. W

    Issue with PHP Sessions

    Hi, may be what you are looking for : About PHP Session and Cookies - ExeOutput for PHP Documentation
  7. W

    Export db using mysqldump

    Fixed with a library that doesn’t require to fill in the full path to mysqldump : GitHub - ifsnop/mysqldump-php: PHP version of mysqldump cli that comes with MySQL Regards!
  8. W

    Export db using mysqldump

    Hi all, I have in place a backup system (export/import) of the mysql database via php which works very well (apart from exeoutput). My code for the export (in local) exec (“D:/web/xampp_56/mysql/bin/mysqldump --routines -h $dbhost -u $dbuser -p$dbpass --single-transaction $dbname >...
  9. W

    Flash Workaround? Please help

    If it’s to create a custom menu, you can use the html “a” tag for each link and style them in css for a better look. You can also make it using the tag and handle the click function to redirect in js or jquery (but for a simple menu, the “a” tag already does it without much hassle. To handle...
  10. W

    Flash Workaround? Please help

    Hi richardwing! Can you explain what kind of button you are trying to add (what this is supposed to do).
  11. W

    PrintPDFFile function example

    Hi, I didn’t try the PrintPDFFile with ExeOutput but rather HTML2PDF which does the job just as well if you are used to it.
  12. W

    Flash Workaround? Please help

    Hi, It works perfectly here too (dll saved perfectly too ;)). If possible to manage .gif for the splashscreen, I’m not against it either 🙂 Regards!
  13. W

    I Need ExeOutput for PHP to access a Web Browser link

    Hi, I think at worst you can always point an index.php file as a landing page to Exeoutput, then put in as code, only a redirection to the desired link. Regards.
Back
Top