Просмотр 2 ответов — с 1 по 2 (всего 2)
  • Связано со слишком медленной загрузкой обновления.
    Я бы на твоем месте обновился вручную.

    Модератор Sergey Biryukov

    (@sergeybiryukov)

    Live and Learn

    Можно попробовать небольшой плагин:

    <?php
    /*
    Plugin Name: More Time For Update
    Plugin URI: http://ru.forums.wordpress.org/topic/1034
    Description: Allows to increase the 60 seconds limit for downloading core updates.
    Author: Sergey Biryukov
    Version: 1.0
    Author URI: http://sergeybiryukov.ru/
    */
    
    function more_time_for_update($args) {
    	if ( 60 == $args['timeout'] )
    		$args['timeout'] = 600;
    	return $args;
    }
    add_filter('http_request_args', 'more_time_for_update');
    ?>

Просмотр 2 ответов — с 1 по 2 (всего 2)

Тема «Обновления» закрыта для новых ответов.