You're wrong about River. River's not on the ship. They didn't want her here, but she couldn't make herself leave. So she melted... Melted away. They didn't know she could do that, but she did.

River ,'Objects In Space'


Buffistas Building a Better Board ++

Do you have problems, concerns, or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.


Lyra Jane - Sep 05, 2005 7:19:19 am PDT #491 of 4671
Up with the sun

Array

Edit: Okay, this is freaky. Every post I make is popping up saying "array," which is not what I'm typing. It's nowhere in my windows, so this isn't accidental cut and paste.

Help?


Lyra Jane - Sep 05, 2005 7:19:58 am PDT #492 of 4671
Up with the sun

Gris - Sep 05, 2005 7:21:08 am PDT #493 of 4671
Hey. New board.

Array


amych - Sep 05, 2005 7:21:36 am PDT #494 of 4671
Now let us crush something soft and watch it fountain blood. That is a girlish thing to want to do, yes?

Array


§ ita § - Sep 05, 2005 7:22:09 am PDT #495 of 4671
Well not canonically, no, but this is transformative fiction.

Support is bringing the site up bit by bit, I guess.


Topic!Cindy - Sep 05, 2005 7:22:14 am PDT #496 of 4671
What is even happening?

Array

eta: I posted the word "test". The board converted it to "Array". I'm seeing if this part holds, when I edit it in.

eta 2

ita, should we just stay out for longer?


§ ita § - Sep 05, 2005 7:58:20 am PDT #497 of 4671
Well not canonically, no, but this is transformative fiction.

Well, I kicked y'all out, so that should have answered that.


Tom Scola - Sep 05, 2005 8:08:43 am PDT #498 of 4671
Mr. Scola’s wardrobe by Botany 500

Are we OK now?


§ ita § - Sep 05, 2005 8:14:01 am PDT #499 of 4671
Well not canonically, no, but this is transformative fiction.

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.


Eddie - Sep 05, 2005 8:51:03 am PDT #500 of 4671
Your tag here.

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.