<div dir="ltr">When I try to execute this app:<br><br>#!/usr/bin/perl<br><br>use Dancer;<br>use Dancer::Plugin::SimpleCRUD;<br><br># Simple example:<br>simple_crud(<br>    record_title => 'Player',<br>    prefix => '/player',<br>    db_table => 'jugador',<br>    editable => 1,<br>);<br><br>dance;<br><br>I get as my result in the browser:<br><br>Error 404 <br><br>Unable to process your query<br><br>-- This is my config.yml file:<br><br>plugins:<br>    Database:<br>        driver: 'mysql'<br>        database: 'my_main_DB'<br>        host: 'localhost'<br>        port: 3306<br>        username: 'richard'<br>        password: 'mypass'<br>    #connection_check_threshold: 10<br>        dbi_params:<br>            RaiseError: 1<br>            AutoCommit: 1<br>        on_connect_do: ["SET NAMES 'utf8'", "SET CHARACTER SET 'utf8'" ]<br>        log_queries: 1<br><br><br>Any help is greatly appreciated. Thank you<br></div>