Support

Account

Forum Replies Created

  • I’m getting this in my log:

    [07-Jan-2014 08:06:21 America/Los_Angeles] PHP Warning:  PHP Startup: homeloader: Unable to initialize module
    Module compiled with module API=20060613
    PHP    compiled with module API=20090626
    These options need to match
     in Unknown on line 0
    [07-Jan-2014 08:06:21 America/Los_Angeles] PHP Warning:  PHP Startup: PDO: Unable to initialize module
    Module compiled with module API=20060613
    PHP    compiled with module API=20090626
    These options need to match
     in Unknown on line 0
    [07-Jan-2014 08:06:21 America/Los_Angeles] PHP Warning:  PHP Startup: pdo_sqlite: Unable to initialize module
    Module compiled with module API=20060613
    PHP    compiled with module API=20090626
    These options need to match
     in Unknown on line 0
    [07-Jan-2014 08:06:21 America/Los_Angeles] PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20060613/sqlite.so' - /usr/local/lib/php/extensions/no-debug-non-zts-20060613/sqlite.so: undefined symbol: third_arg_force_ref in Unknown on line 0
    [07-Jan-2014 08:06:21 America/Los_Angeles] PHP Warning:  PHP Startup: pdo_mysql: Unable to initialize module
    Module compiled with module API=20060613
    PHP    compiled with module API=20090626
    These options need to match
     in Unknown on line 0

    Google lead me here:
    http://stackoverflow.com/questions/2394532/apache-is-unable-to-initialize-module-because-of-modules-and-phps-api-dont

    I’ll give those suggestions a try and will post back if I get it working.

  • I’ve added these two bits to my functions file:

    //raise custom field limit
    function customfield_limit_increase( $limit ) {
        $limit = 60;
        return $limit;
    }
    add_filter( 'postmeta_form_limit' , 'customfield_limit_increase' );
    
    //raise post per page count for advanced custom fields
    function customize_admin(){
        global $per_page;
        global $post_type;
        if( $post_type == 'acf' ) $per_page = 500;
    }
    add_action('admin_head', 'customize_admin');

    and also raised my max_vars to 3000 (it was 1000)
    http://i.imgur.com/7TWSvld.png

    Unfortunately, it’s still only showing/accepting 20 entries.

    I’ll keep at it, but I’m still open to suggestions.

    Thanks again 🙂

Viewing 2 posts - 1 through 2 (of 2 total)