Symfttpd does not guess executable files
Closed this issue · 1 comments
benja-M-1 commented
As of the 2.0.2, Symfttpd does not guess that your project is a Symfony 2 one and have an app.php AND a app_dev.php. It only think you have the app.php file.
To make it works as expected add this to your symfttpd.conf.php
file:
<?php
$options['project_type'] = 'symfony';
$options['project_version'] = '2';
$options['project_readable_phpfiles'] = array('app.php', 'app_dev.php');
$options['project_readable_dirs'] = array('bundles', 'images', 'css', 'js');
I will make it more intelligent in few days.