Franchesco Romero

Results 10 comments of Franchesco Romero

sounds more like a codeception issue than webception, you can report here: https://github.com/Codeception/Codeception/issues and try something like: http://stackoverflow.com/questions/27634821/codeception-run-acceptance-tests-in-multiple-environments

any chance you have php-curl installed?

that usually happens when codeception can't see/connect to the host. sounds more like a configuration issue with your environment or maybe codeception. you can read more here: https://github.com/Codeception/Codeception/issues/533 https://github.com/Codeception/Codeception/issues/320 https://github.com/Codeception/Codeception/issues/412...

are you running this through a VM? or installed it through something like XAMPP? does it make a difference pointing to 127.0.0.1 instead of localhost, have you verified your virtual...

there's a way around this, might not be optimal but I've done it in the past like this: open webception/App/Lib/Codeception.php look for getCommandPath around line 333 and add options as...

check this: https://github.com/jayhealey/Webception/issues/20

you could either set up and alias on your server to point to such location, point the webroot to your subfolder, see: http://help.slimframework.com/discussions/problems/6992-slim-in-a-subfolder-with-2-htaccess-files http://help.slimframework.com/discussions/problems/898-slim-on-subfolders or if you're lazy (i did...

try modifying your codeception.php file under webception/App/Config around line 45 there's something like this: ``` 'tests' => array( 'acceptance' => TRUE, 'functional' => TRUE, 'unit' => TRUE, 'api' => TRUE,...

I'd also like to see that too :) sometimes I end up using rewriting rules or even putting /index.php/actionHere to make it work