Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • in reply to: Unable to get galleries to work with new media uploads #236081
    tbolton
    Member
    Post count: 5

    Can anyone help me with this? I am really delayed an unable to continue building my site because of this issue. 🙁

    in reply to: Blog questions #136437
    tbolton
    Member
    Post count: 5

    Will try the above suggestions, thanks!

    in reply to: How long should it take for demo content to import? #129575
    tbolton
    Member
    Post count: 5

    Will do and will post back in case it may help someone else!

    in reply to: How long should it take for demo content to import? #129571
    tbolton
    Member
    Post count: 5

    I am running WP 4.0. Where would I find the php.ini file?

    I have found memory limits When I look in default-constants.php file. It says the following:

    // set memory limits
    if ( !defined(‘WP_MEMORY_LIMIT’) ) {
    if( is_multisite() ) {
    define(‘WP_MEMORY_LIMIT’, ’64M’);
    } else {
    define(‘WP_MEMORY_LIMIT’, ’40M’);
    }
    }

    if ( ! defined( ‘WP_MAX_MEMORY_LIMIT’ ) ) {
    define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ );
    }

    /**
    * The $blog_id global, which you can change in the config allows you to create a simple
    * multiple blog installation using just one WordPress and changing $blog_id around.
    *
    * @global int $blog_id
    * @since 2.0.0
    */
    if ( ! isset($blog_id) )
    $blog_id = 1;

    // set memory limits.
    if ( function_exists( ‘memory_get_usage’ ) ) {
    $current_limit = @ini_get( ‘memory_limit’ );
    $current_limit_int = intval( $current_limit );
    if ( false !== strpos( $current_limit, ‘G’ ) )
    $current_limit_int *= 1024;
    $wp_limit_int = intval( WP_MEMORY_LIMIT );
    if ( false !== strpos( WP_MEMORY_LIMIT, ‘G’ ) )
    $wp_limit_int *= 1024;

    if ( -1 != $current_limit && ( -1 == WP_MEMORY_LIMIT || $current_limit_int < $wp_limit_int ) )
    @ini_set( ‘memory_limit’, WP_MEMORY_LIMIT );
    }

    in reply to: How long should it take for demo content to import? #129566
    tbolton
    Member
    Post count: 5

    Update: After 8 hours of importing I get the following error message:
    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 72 bytes) in /home/explorew/public_html/wp-includes/wp-db.php on line 1977

    Here’s the link to the site I am trying to work with:
    http://www.explorewildly.com (you can see the error message here)

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