Title: golderweb's Replies | WordPress.org

---

# golderweb

  [  ](https://wordpress.org/support/users/golderweb/)

 *   [Profile](https://wordpress.org/support/users/golderweb/)
 *   [Topics Started](https://wordpress.org/support/users/golderweb/topics/)
 *   [Replies Created](https://wordpress.org/support/users/golderweb/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/golderweb/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/golderweb/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/golderweb/engagements/)
 *   [Favorites](https://wordpress.org/support/users/golderweb/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] Does this work with version](https://wordpress.org/support/topic/does-this-work-with-version/)
 *  [golderweb](https://wordpress.org/support/users/golderweb/)
 * (@golderweb)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/does-this-work-with-version/#post-5246647)
 * I didn’t have any problems importing [theme-unit-test-data.xml](https://wpcom-themes.svn.automattic.com/demo/theme-unit-test-data.xml)
   with WordPress 4.0.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] PHP warnings with WordPress 4.0](https://wordpress.org/support/topic/php-warnings-with-wordpress-40/)
 *  [golderweb](https://wordpress.org/support/users/golderweb/)
 * (@golderweb)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/php-warnings-with-wordpress-40/#post-5254734)
 * For the first Error I suppose that swapping the order of the PHP5 and the old
   constructor in class WXR_Parser_Regex will help. (Maybe the old one could be 
   removed if PHP4.x isn’t supported anymore with this plugin.)
    parsers.php – Line
   396 and following would be
 *     ```
       class WXR_Parser_Regex {
       	var $authors = array();
       	var $posts = array();
       	var $categories = array();
       	var $tags = array();
       	var $terms = array();
       	var $base_url = '';
   
       	function __construct() {
       		$this->has_gzip = is_callable( 'gzopen' );
       	}
   
       	function WXR_Parser_Regex() {
       		$this->__construct();
       	}
       ```
   
 * For the second Error see [my reply this topic](http://wordpress.org/support/topic/got-php-warning-of-type-strict-standards?replies=2q#post-5977682).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] Got PHP warning of type "Strict Standards"](https://wordpress.org/support/topic/got-php-warning-of-type-strict-standards/)
 *  [golderweb](https://wordpress.org/support/users/golderweb/)
 * (@golderweb)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/got-php-warning-of-type-strict-standards/#post-5257163)
 * I also remarked this problem. A possible fix would be to add an (unused) parameter
   $val to this method.
 * File wordpress-importer.php – Line 1106 and following
 *     ```
       /**
       	 * Added to http_request_timeout filter to force timeout at 60 seconds during import
       	 * @param void $val Not used, only for compatibility with parent class WP_Importer
       	 * @return int 60
       	 */
       	function bump_request_timeout( $val ) {
       		return 60;
       	}
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)