Search results

  1. dearnex

    Laravel example

    How did you solve the public path issue? I use Homestead for development which means the url is like this: http://foo.bar/path-to-my-page but in Exeoutput I have to do this: foobar.test/public/index.php/path-to-my-page There is no option to root to the public folder that I can find Because...
  2. dearnex

    Laravel example

    Is there any update for when this sample will be released or anyway to get just the sample files before the video and docs have been made?
  3. dearnex

    Securing the vendor folder in Data

    An issue I’ve come across when using ExeOutput is security, how do you protect the vendor folder without having to compile it directly into your exe? The reason for this question is: I’ve exported the vendor folder to Data and tried the encrypting option on compiling, however this causes...
  4. dearnex

    Need to allow users to select a custom folder to store data created by my app

    Hi Kim, I was in a similar situation to you, I found a solution to this by using the shell_exec function to get the users local app data directory, however you could use the selectDirectory function in the HEScripts (https://www.exeoutput.com/help/scripting/scriptreference/) this should return...
  5. dearnex

    Running Laravel's artisan schedule:run as a timer

    If like me you’re using Laravel, you will run into the issue of $_SERVER[‘argv’] not being set, however that’s easily fixed in the timer by doing $_SERVER['argv'] = ['artisan', 'myCommand', '--option=something']; include('artisan'); However if you’re really trying to make it production ready by...
  6. dearnex

    Running Laravel's artisan schedule:run as a timer

    I’ve attempted to solve this with this code: $_SERVER['argv'] = ['artisan', 'schedule:run']; include('artisan'); But this doesn’t seem to work, I’ve then proceeded to switch schedule:run with a test command which just uses the touch function to create a file in storage every minute but that...
  7. dearnex

    Background image or loading gif

    I’ve found a potential solution to this problem but not 100% it’s a suitable one. Going to this section and changing this setting When it’s set to index.html you can add a new file called index.html in your application root. Simply adding say a css background and animated gif, you can...
  8. dearnex

    Background image or loading gif

    I’ve been looking around the docs and forums trying to find a way to make this loading screen a little prettier. I would like to add an image with a loading gif in the middle or something similar, rather than just being able to add/change the text, since it’s quite bland and not very...
  9. dearnex

    How do you ignore a file/folder if it already exists when running the installation for a second time

    Hi, I’m trying to build an updater for my exeoutput application but in Paquet Builder i’m unable to figure out how to make the installer ignore existing files. For example: I don’t want the mysql folder to be overwritten if it already exists, however on the initial install I want it to be...
Back
Top