• Resolved erlendaakre

    (@erlendaakre)


    I’ve installed WordPress 2.8.5 on the Resin 3.1.9 webserver, and the install went smooth but both the front page and the admin page won’t load, and shows a StackOverflowError..

    This error can be traced to the do_action method: /wp-includes/plugin.php line 336:

    do {
       foreach ( (array) current($wp_filter[$tag]) as $the_ )
          if ( !is_null($the_['function']) )
             call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));
    } while ( next($wp_filter[$tag]) !== false );

    If I comment out this while loop, I can see the front page just fine and everything there seems to work.

    The admin area however does not use CSS anymore, maybe because of that loop I removed? but seems to work otherwise (adding/editing posts).
    I assume the lines I removed do something plugin related, so I guess plugins wont work with that loop removed?

    Anyone got any bright ideas on how to get it fully working?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter erlendaakre

    (@erlendaakre)

    Never mind, seems that it was a problem with Quercus (part of Resin)..

    If anyone else are trying to run WordPress (2.8.5) on Resin, use the resin development build (4.0)

    I tried this and it works. But the it appears the insert media (pictures) only supports full size. Thumbnail, Medium, etc. options are disabled. This is because GD appears to be broken in Resin 4.01. Hoping they will fix it so that we can run GD and WordPress at the same time.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WordPress 2.8.5 on Resin 3.1.9’ is closed to new replies.