I'm trying to use WebTools with my web app, with baseUri = /.
My app works fine at: domain.com/
And I can see WebTools by going to: domain.com/webtools.php.
The problem comes when I try to create a model using WebTools. It sees the database fine, but when it tries to write the model file it is trying to write to: /var/www/html/projectDir/../app/models/Widgets.php
Which resolves to a non-existent directory (one level up too far): /var/www/html/app/models/Widgets.php
Either of these would work: /var/www/html/projectDir/app/models/Widgets.php /var/www/html/projectDir/public/../app/models/Widgets.php
Here is my config, in /index.php:
$config = new \Phalcon\Config(array(
        ...
        'application' => array(
            'controllersDir'    => __DIR__ . '/../app/controllers/',
            'modelsDir'     => __DIR__ . '/../app/models/',
            'viewsDir'          => __DIR__ . '/../app/views/',
            'pluginsDir'        => __DIR__ . '/../app/plugins/',
            'libraryDir'        => __DIR__ . '/../app/library/',
            'cacheDir'          => __DIR__ . '/../app/cache/',
            'baseUri'           => '/',
        ),
        ...
    ));Any suggestions?
Thanks