I am fairly new to ruby and padrino.
I have created a new padrino project and admin section using the out of the box generators with a postgres database running on a nginx webserver (on Ubuntu).
I can create a new user with out any problems. However when I try edit or delete them I am directed to a blank page (http://127.0.0.1:98/admin/accounts/destroy/1 or http://127.0.0.1:98/admin/accounts/update/1) and the database is not updated.
I also get the following in the logs
DEBUG - [22/Mar/2011 22:42:56] "(0.001609) SELECT "id", "name", "surname", "email", "crypted_password", "role" FROM "accounts" WHERE "id" = 1 LIMIT 1"
DEBUG - [22/Mar/2011 22:42:56] "127.0.0.1 - - POST /accounts/update/1 - 405 - 0.0503"
I am guessing that this might be a permissions issues but can not work out how to fix it. I can connect to the database and do selects and inserts - as I can see from the app. I can also log on to the database via a command prompt and perform updates when logged in as postgres, the same user as the padrino app. (in the app I use when :development then DataMapper.setup(:default, "postgres://postgres:pswd@127.0.0.1:5432/padrino")
Is there anywhere I should be allowing edits and deletes in the padrino code that is not set out of the box? Or how can I enable further debugging of datamapper to find out the error?
Using padrino 0.9.22, datamapper 1.1.0.
Thanks in advance for your help.