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...
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...
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...
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...
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...
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...
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...
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...