Our site worked fine on the old server, but we've recently moved it to a new server, and immediately, everything on the site looked messed up (ie can't find the data it's looking for in the views).
Upon further investigation, what was previously returned like this:
$articles[0]['Article']['title']
Is now returning:
$articles[0][0]['title']
At first, we were told it was that PDO wasn't installed (or was corrupted or something), but we rerebuilt Apache with PDO over and over and it's showing PDO on for both PHP and MySQL.
I've tried searching, but either I'm searching for the wrong thing, or there's no good info out there. Any ideas what could be causing this and/or how we can fix it?
Edit:
It also worked on this server prior to an update, which updated it to 5.3 (not sure what the prev version was)
Edit 2
Per suggestion, I changed the datasource to HpMysql This makes it work. It doesn't answer my question though, as I see it as a temporary fix - I'd still like to know what the issue is, and how to fix it without having to use this workaround.
'level' => E_ALL)? Maybe via the errors and SQL dump you can pinpoint where the mess up begins. – Costa Apr 10 '12 at 23:41$namevar on your models. It might not be automatically populating for some reason. (This is a PHP 4 issue, so you shouldn't have problems with 5 but it's worth a check. Maybe you had an old model cache from 4?) – jeremyharris Apr 11 '12 at 14:37