• Resolved jroy

    (@jroy)


    hi all,
    today I try to export my WP data using the export page, I click on the “download export file” button and it doesn’t save the xml file… the file is directly open in the same windows, I run it under Google Chrome for Mac OS X.
    it’s a WorpPress 3.0.

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

    (@jroy)

    I also try on Firefox, same problem.

    I got these error messages:

    Warning: strip_tags() expects parameter 1 to be string, array given in /www/mydomainname/www/wp-includes/formatting.php on line 2773

    Warning: Cannot modify header information – headers already sent by (output started at /www/mydomainname/www/wp-includes/formatting.php:2773) in /www/mydomainname/www/wp-admin/includes/export.php on line 44

    Warning: Cannot modify header information – headers already sent by (output started at /www/mydomainname/www/wp-includes/formatting.php:2773) in /www/mydomainname/www/wp-admin/includes/export.php on line 45

    Warning: Cannot modify header information – headers already sent by (output started at /www/mydomainname/www/wp-includes/formatting.php:2773) in /www/mydomainname/www/wp-admin/includes/export.php on line 46

    Thread Starter jroy

    (@jroy)

    I fix the warning message and it works now :

    change
    $string = strip_tags($string);
    by
    $string = strip_tags((string)$string);

    it happens only if display_errors is ON.

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

The topic ‘WP3.0 : export doesn't works!’ is closed to new replies.