Run Xojo Using Crontab -e

I would like to run the Xojo EXE using crontab
Exe name: test
Folder name: test
path: var/www/html
I try below command
0 4 * * * /var/www/html/test/./test

can anybody advice?

0 4 * * * /var/www/html/test/test

No need for the “./”
Make sure the app’s permissions are set to executable and the libraries/resources folders are included.

[quote=496782:@Pathma Mu.]I would like to run the Xojo EXE using crontab
Exe name: test
Folder name: test
path: var/www/html
I try below command
0 4 * * * /var/www/html/test/./test

can anybody advice?[/quote]
Let’s back up for a minute.

I’m assuming this is a web project because you’re putting it in a www directory, but is it cgi or standalone?

[quote=496827:@Greg O’Lone]Let’s back up for a minute.

I’m assuming this is a web project because you’re putting it in a www directory, but is it cgi or standalone?[/quote]

Ahh yeah guess I should have asked that first, never used CGI before. I assumed that it was a console app because once a web app is started there is not much need to run it again.