How To Import Large WordPress XML File Above Default Limit Size

WP – How To Import Large WordPress XML File Above Default Limit Size? I wanted to export the posts, comments, categories and tags of one WordPress blog and move the contents using the export option in WordPress Tools in Wp Admin.

I found out you can do this in .htaccess – just add the following:

#set max upload file size
php_value upload_max_filesize 25M
#set max post size
php_value post_max_size 25M

Where I have added “25m” you can edit this to abover whatever size your xml file is.

Now you can export a large xml file and upload the file to another wordpress blog.

If you enjoyed this post, please share :)

Written by Shaun Anderson