Known Karamelo problems
If you get the next message on cake 1.1.18:
Undefined index: name /cake/libs/model/datasources/dbo/dbo_postgres.php, line 350
open the file cake/libs/model/datasources/dbo/dbo_postgres.php and change:
foreach ($this->descriptions[$source] as $sourceinfo) {
if (strcasecmp($sourceinfo\['name'\], $field) == 0) {
to:
foreach ($this->descriptions[$source] as $name => $sourceinfo) {
if (strcasecmp($name, $field) == 0) {
