Search results

  1. fmcleod

    Exeoutput Version 2018.1 and SESSION Variables

    One more word … I usually go through all kinds of iterations of code and eventually always come back to the addage, “simper is better.” if ($_SERVER[‘SERVER_SOFTWARE’] == ‘ExeOutput for PHP’) { … yada yada yada } else { … yada yada yada } works cleanly and efficiently. Frank
  2. fmcleod

    Exeoutput Version 2018.1 and SESSION Variables

    Yes, the php.ini is the key. THANKS. I have some coding to fix and redo around it, but does the trick!
  3. fmcleod

    Exeoutput Version 2018.1 and SESSION Variables

    Intended location of my folder is C:\Musanizer\mystoragedir" for the exececutable which is in C:\Musanizer When clients use it on the web … it would be TheirTopPage/Musanizer/mystoragedir In every script (in various folders) I am referencing storage location with...
  4. fmcleod

    Exeoutput Version 2018.1 and SESSION Variables

    Thank you! That put me on the right track. I am still going to need to manipulate the $_SERVER[‘DOCUMENT_ROOT’] … in the ExeOuput EXE it throws “DATA” into the string … in my local web set up it only shows “C:\inetpub\wwwroot” … so in one case I will need to strip something out … the other I...
  5. fmcleod

    PHP Error Messaging Popup

    In your php.ini look under the ERROR CODES … you can easily get rid of warnings with ~ E_WARNINGS … which you would want to do when the application is live. Actually, once live, you should have cleared up all errors and remove all the error codes.
  6. 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...
  7. fmcleod

    Set silent print global variable

    Sorry, Raza, I can be of no help. I finally gave up on that issue after burning day upon day of development time. My clients are seeing PDF files which I wanted them to print silently … I gave up and have their default PDF viewer handling their print selection(s). I hope you come to some...
  8. fmcleod

    Failed to Load PDF Files in some user environments - SOLVED

    Finally got the word from my client. When using Phantom PDF or Adobe as default, all is fine. When he has problem is when “Nitro Pro 10” is his default PDF viewer. Seems that it is not cooperating with ExeOutput. Thanks for your help. It all goes back to his environment. Frank
  9. fmcleod

    Failed to Load PDF Files in some user environments - SOLVED

    Thanks, we have tried that. I have had the user put some of his pdfs in the folder, and I get the same result with just a regular pdf file name. I will continue to examine his system. I do not have access to it, so it is hard for me also. Answer this for me, please. Does EO use its own internal...
  10. fmcleod

    Failed to Load PDF Files in some user environments - SOLVED

    The user’s OS is Windows 10 and there is no virtual environment. In the EXE’s log file where the error comes up, the entries show: 6/8/17 4:09:35 PM Scheme Request URL start: http://heserver/RNHBconcert/RNH1010%20Accord/RNH1010%20Accord~fhorn1.pdf 6/8/17 4:09:35 PM Resource Request: The...
  11. fmcleod

    Failed to Load PDF Files in some user environments - SOLVED

    Thanks, but that is a standard character I use in distinquishing parts of a musical score. It is not in the path, it is part of the file name and I have used it in EO for two years now with no problem. On my system, what you see is a result of me removing permissions from that file to see the...
  12. fmcleod

    Failed to Load PDF Files in some user environments - SOLVED

    As an addendum to my issue, I have had the user check his file permissions. The error message in EO when a file permission is not set correctly is “FPDF error: Cannot open …/RNHBconcert/Fiddler On The Roof/Fiddler On The Roof~fhorn1.pdf !” on top of my page background. The reason I think this...
  13. 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...
  14. fmcleod

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

    Okay … got it. In Version 2, I had to do two things differently to make things work as they did in version 1. To make the “no file specified” go away, I had to change the “Use absolute path for virtual Data subfolder” to the top root folder. Then, the program was seeing my index.php files. I am...
  15. fmcleod

    Version 2 Beta - external datase locked for writing

    Thanks. I have not been able to test this because of being blocked by the other error message in my other post (no file specified) for the virtual index.php file. When (if) I get that one cleared up, how can I research v.1.7 of the SQLite extension to see if there is some restriction blocking...
  16. fmcleod

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

    Thanks. The General Demo EXE ran just fine with no issues. I have been trying other ideas to no avail. I can run the exact same project in my latest reiteration of v1 and all is well. Compiling the same code in v2 I get the error. Any other ideas where to look? Thanks, Frank
  17. 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...
  18. 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...
  19. fmcleod

    Javascript language for Ajax return in ExeOuptul

    I am using Trident. Would you recommend giving 2.00 Beta a shot now?
  20. 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) {...
Back
Top