Tagged with " import"
Sep 4, 2013 - Wordpress    Comments Off on Migrate WordPress content between sites

Migrate WordPress content between sites

It’s (very) possible to migrate WordPress content (posts & pages) between different WordPress sites. In fact, WordPress has a native import/export plug-in.

You can select the entire site content or break it down by category (Warning: if your site is large, consider breaking it into smaller chunks to avoid PHP timeouts with your web host).

Read more »

Feb 22, 2013 - General Web Development, Wordpress    Comments Off on Increase Size of import File in phpMyAdmin

Increase Size of import File in phpMyAdmin

The default settings for PHP don’t allow for large file imports via phpMyAdmin. These settings can be adjusted as follows.

In the php.ini file, change these settings:

Find:

post_max_size = 8Mupload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M

Change to:

post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000memory_limit = 1000M