Migrating a whole website to WordPress

Good decision to move to WordPress, you won’t regret the decision. The best way to get started is to find a good video tutorial and then to get started on your site. I recommend this tutorial by wpsculptor because it covers just about everything you will need to get started. You do not need to … Read more

Cannot combine two site’s pages together

1: Failed to import -> It must be some plugins not activated and demo is not imported. 2: Media already exist is of course media file is already there. 3: You need to increase PHP max execution time for this. Also how much is your demo import file size? Thanks.

Migrate wordpress server to localhost problems

I have not looked at the guide but chances are that it’s still looking for resources from the server URL. I would start by defining in your wp-config.php file the following: define(‘WP_HOME’, ‘YOUR_LOCAL_SITE_ADDRESS’); define(‘WP_SITEURL’, WP_HOME); And then do a search/replace using a plugin finding all instances of your server address by your local address. This … Read more

Update around 200,000 posts

You mentioned setting the memory limits and execution time to unlimited, so this may not be the right answer. I thought I’d mention it anyway since it may help. Since you have so much content, you’ll have to find ways to accomplish this in the background rather than during the request. This is the perfect … Read more

How do I move my WordPress domain to another domain?

You need to create a database (with the corresponding username and permissions) in the cPanel of yolo.com, so your blog won’t interfere with whatever you have in yolo.com. MySQL Assistant of cPanel is very easy and fast. You need to download and install WordPress in yolo.com/blog folder. In your cpanel this usually is public_html/blog. Install … Read more

White screen after moving site to new server

Check the wp-options table and fix the two URLs in there to your site’s URLs. Then remove the URLs you added to the wp-config.php file. (That setting in the wp-config.php file overrides the wp-options table, but I don’t recommend that way of setting up the site URLs – set the URLs in teh wp-options table. … Read more