The Plesk upgrade went south (which was why the site was down entirely), and then when it came back up, there was strangeness.
For the techheads:
foreach($chunks as $chunk) {
$this->id = 0;
$this->content = $chunk;
$this->_save();
}
Broke, because $chunk was suddenly an array. No code changes, just a PHP upgrade to 4.3.10.
So I tweaked it to this:
foreach($chunks as $chunk) {
$this->id = 0;
$this->content = $chunk[0];
$this->_save();
}
But I don't like it because I don't
understand
it.
Yeah, it appears something changed in 4.3.10 re: foreach
[link]
[link]
Further reading indicates they backported some code from PHP 5.0. Your workaround is a solution to this problem.
How freaking irritating. I'll go back and change it to use the key/val logic, just so it doesn't seem so arbitrary.
Tossers.
Do you know if the server is running Zend Optimizer? It sounds like upgrading to ZO 2.5.7 fixes this issue as well.
I just got this:
To view a bookmark, just click on it. To delete a bookmark, click on delete. To change the description text, type in the textbox and click on OK.
There has been an error. It's of the type we call fatal. Please don't be scared. You're not the one that's going to die.
Okay, where the $$&#&(@#& are the developers?
when I tried to look at my bookmarks.
Probably the same sort of error. I'll have a look.
The jump to the first post on this date is not working for me in Natter. I tried a couple of different dates to see if that made a difference. Instead of taking me to the first post on the date I picked, it took me to the first post in the thread each time.
I tried a couple and it works for me ... what dates were you jumping to?