Hi. I have Limonade installed in a subfolder on my domain. Like:
.
The app is in a file called voice2.php:
<?php
require('./limonade/lib/limonade.php');
dispatch_post('/', 'app_start');
function app_start() {
...
}
dispatch_post('/', 'app_continue');
function app_continue() {
...
}
?>
I keep getting "Page Not Found". How can I fix?