Tag Archives: file

How To Move WordPress On GoDaddy

Most Popular Video

How To Move WordPress On GoDaddy

Moving a WordPress website may seem like an impossible task but we make it step by step easy. Follow along with this video to learn how to move WordPress on GoDaddy including:

  • FTP Hostname, username and password
  • phpMyAdmin login information, username and password
  • Database Hostname, username and password
  • Database Connection String
  • Import and Export with phpMyAdmin
  • FTP Hostname, username and password
  • Use cPanel to connect WordPress files and database

We make it as easy as possible to follow along and move your WordPress blog from one host to another. Even though this video shows how to migrate between GoDaddy accounts, the basics of any WordPress migration are shown in this video. So even if you use Hostgator, Hostpapa, Bluehost, 1 and 1 or any other webhosting provider you will be able to move you WordPress files and database to any hosting account worldwide.

Gratitude For How To Move WordPress On GoDaddy

Thanks so much! I was having a hell of a time trying to figure all this out and finally Godaddy referred me to this video and just like that everything worked!! So much time could have been saved if I saw this earlier.

Thank you very much. Great Upload

Wonderful, just works great

I love you! Bless you. Great tutorial! You are a great person!

This really helped take away a major headache. Thanks!

So Many Successful Do It Yourself WordPress Migrations

Speaking of gratitude we are Thankful and Appreciative of all of the viewers support and kind comments while learning to move WordPress. Each time a viewer comments on our migration video thanking us for uploading it motivates us to keep making videos about advanced WordPress tasks like migrations.

Adjusting PHP Settings With GoDaddy cPanel

To correspond with our video on using the php.ini file, the phpinfo.php file and the Select PHP Version PHP Options in GoDaddy cPanel to adjust php settings; I have provided the code below to put in the files that you will upload to your root folder. In our case it is the public_html folder which is the root folder for GoDaddy cPanel hosting accounts.

As shown in the YouTube Video, you will create the php.ini file and the phpinfo.php file through FTP on the server. Then using your text editor you will edit the php.ini file and the phpinfo.php files. While Notepad or TextEdit are acceptable it is a better practice to use a code editor like Sublime Text, Coda or Notepad++. In our video you will see us use Sublime Text as our code editing program and Transmit for our FTP.

Creating the phpinfo.php File

First you’ll need the code that you will add to the phpinfo.php file after you create it on the server through FTP. Copy and paste the code into your phpinfo.php. After you have saved the file back to your hosting account be sure to Kill Processes on you cPanel. Type your domain into the URL bar of the browser and add /phpinfo.php to the end of your domain.

FILE NAME – phpinfo.php
TO VIEW THIS FILE – PasteYourDotWhateverHere/phpinfo.php
CODE-

<?php phpinfo(); ?>

Creating the php.ini File

Below is the code that you will need to add to the php.ini file after you create it on the server through FTP. Copy and paste the code into your php.ini. After you have saved the file back to your hosting account be sure to Kill Processes on you cPanel. Type your domain into the URL bar of the browser and add /phpinfo.php to the end of your domain. Find the settings that you have updated on the phpinfo.php table to be sure they have taken effect on the hosting account.

FILE NAME – php.ini
CODE-

upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300

These are just a few of the php settings that can be added to the php.ini file. For a full list of php directives check out the php.net manual.

Fixing common php website errors including php errors from WordPress, Drupal, Joomla!, OpenCart, PrestaShop, ZenCart, Magento, WooCommerce and more, can be easily solved with the php.ini file. Additionally these php website programs will run better after php settings adjustments are made.