Search results

  1. fmcleod

    Exeoutput Version 2018.1 and SESSION Variables

    Prior to the version upgrade, I was using the standard in PHP, session_save_path("…/mystoragedir"); session_start(); It was working great. I did not want to use the ExeOutput method for storage because I also run this application on the web, so I am keeping the PHP (7.1) as clean as possible...
  2. fmcleod

    Failed to Load PDF Files in some user environments - SOLVED

    I compiled my application with EO 2.0x beta … a user was getting "Failed to load PDF document" for all PDFs he tested. I recompiled today with 2.1 and same results. I see online documentation that says Chrome is the culprit in most cases when opening PDFs directly in a Chrome browser. It seems...
  3. fmcleod

    A cryptic message in Version 2 --- No Input File

    I am not sure what this message is saying. The EXE opens, and it appears it hits the index.php as my starting page and then it says “No Input File” … I have checked all file permissions, paths, etc. I am not sure what is generating the message. (( Exact same file structure, etc. as used in my...
  4. fmcleod

    Version 2 Beta - external datase locked for writing

    I set up version 2 exactly as I did version 1 for my php files and an external database. On version 1, it opens and updates to the database perfectly, defining a virtual data path with the database in it (sqllite). Following the same procedure in version 2 … I am reading the database just fine...
  5. fmcleod

    Javascript language for Ajax return in ExeOuptul

    What is the clue I am missing in running Javascript code to have ajax return from the server? This is what I am using: var options; var XMLHttpRequestObject = false; if (window.XMLHttpRequest) { XMLHttpRequestObject = new XMLHttpRequest(); } else if (window.ActiveXObject) {...
  6. fmcleod

    Timestamp inaccurate ... Paquet Builder or ExeOutput?

    In writing entries to a text log file, for the time entry I am using fwrite($fhandle,date(‘H:i:s’)." "); The timestamp is off by +6 hours, sounding like it is a timezone issue. An entry I just did (9/17/2015 at 7:46) shows in the log written as 2015-09-18 01:46:16 +6 hours from my timezone. All...
  7. fmcleod

    Using a shell from ExeOutput's PHP to run a batch file

    Forget this … discovered the macro for running a shell command.
  8. fmcleod

    Set silent print global variable

    When I am finished with this project, I should have a decent grasp of ExeOutput … I do love it. However, I have little aggravating things pop up that I just can’t figure out. The latest: just before I print a pdf file I try to invoke the silent printing mode by assuring the global variable...
  9. fmcleod

    Write privileges to Sqlite database table from EXEOutput

    Haven’t had a lot of luck here, getting some discussion and help on problems, but going to try this again. I have used a whole weekend trying to unravel this problem and cannot find any reference to it. I have a Sqlite database to which I have write privileges as an IUSR when working from my...
  10. fmcleod

    Anyone getting SkinBuilder to work for you?

    I installed SinBuilder to see if I could customize a skin for my application. Nothing I do seem to have an afffect on any .skn file I open from the Exeoutput skin folder. I open a .skin file and nothing happens in SkinBilder. Has anyone been using SkindBuilder successfully? Do you have any...
  11. fmcleod

    Cannot find how to get Commercial version of EXEOutput

    In the building the “about” screen in ExeOutput, I cannot customize it complete without getting the message that I must purchase the Commercial version. I am missing something … I have been all over the GDG site and the ExeOutput for PHP site and cannot seem to find how to get the Commercial...
  12. fmcleod

    PHP array okay running direct PHP, but errors out in EXEOUTPUT

    I am building a utility program in PHP. I have it working perfectly well when running the PHP file in my browser. However, when I compile and run it in ExeOutput, I get a “PHP Notice: Unitialized string offset” when referencing an array. It is fine in PHP 5.3.17 running in my browser. It is in...
  13. fmcleod

    Embedding SQLite in the EXE

    Okay, call me dense! I want to embed a read-only database into my EXE output. I have read the documentation about using something like: $storagelocation = exo_getglobalvariable(‘HEPubStorageLocation’, ‘’); $dbname = $storagelocation.‘mysqlitedb.db’; and that the database will be in the ‘Data’...
  14. fmcleod

    Can EXEOUTPUT simulate the print.always_print_silent mode that can be set in Firefox?

    I know that silent printing without dialog is a security issue for websites, but I am creating a piece of software to be stand-alone on a PC, using EXEOUTPUT. There will be no security issue as the user will be running it on his own PC, not from online. SO, is there a way in EXEOUTPUT to...
Back
Top