Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi abassade, have you purchased hosting from a provider? That would be your first step.

    there are some good youtube videos on the subject I have seen recently.

    A few steps here:

    First you need to register your domain name, in this case ibileproductions.com. This can be done via numerous means, but generally people use companies like MelbourneIT, GoDaddy, or 1and1 for this. Search domain registrars on google and it should bring up some decent results.

    Next you need to decide whether you want to buy hosting from a company, like Godaddy, 1and1, InMotion or the like, or host the website on your own server. Hosting with an external company is easier, and can be relatively cheap, however if you run your own server you have much more control over server configuration.

    Caveat to hosting your own server is that unless you have a dedicated IP from your ISP, you’ll be updating your DNS records any time your public IP address changes, and DNS changes can take anywhere from 4 to 24 hours to propagate through the DNS network.

    Assuming that you’re going to get server space with a hosting company, it should be as simple as uploading your actual wordpress files into the public_html folder on your account, then importing your database via phpMyAdmin or the like, and modifying your wp-config file to match the information that the imported MySQL db has (db name, user, and password). Some hosting companies will actually do this for you if you ask them to, and for free to boot since it’s a relatively quick process.

    Agreed. My hosting company LoftySights did it for free. That’s obviously the easiest way.

    Also!

    One thing I forgot to mention is that when you purchase hosting, they will take care of domain registration for you! Pretty freaking convenient I say.

    Thread Starter abassade

    (@abassade)

    Thanks all, I really appreciate….I already got a domain name and host….however, av wathing different videos on hosting but keep seen errors, so i removed all the php file and the files in file manager…I think i can troubleshoot again….
    its my school project and i will need help urgently

    Really appreciate your support.

    If you’ve got a clean public_html folder, here’s how I’ve always done my wp transfers:

    1: Upload all of your WP files and folders in to public_html.

    2: Create a NEW database via phpMyAdmin (or similar) via your web control panel, ex. cPanel or the like. Write down or copy and paste the databases name, user name, and password for reference (you’ll need that in a minute). When making that database, make sure the user has ALL permissions checked.

    3: Export the database from your local copy of WP via phpMyAdmin. Open that .sql file in Notepad or Notepad++, and do a find > replace all. I believe you’ll want to find localhost, and replace it with your websites url. Doing it via find > replace all will be MUCH faster than doing it bit by bit.

    4: Back on you cPanel or the like, use phpMyAdmin to import the .sql file you just modified into the new database you created in step 2.

    5: Find the wp-config file for your WP install on your server, and change the following fields in that file:

    define('DB_NAME', 'new db name');
    
    /** MySQL database username */
    define('DB_USER', 'new db user name');
    
    /** MySQL database password */
    define('DB_PASSWORD', 'new db password');

    Remember when I told you write down the new databases name, user name, and password? Insert those values where appropriate between the ‘ ‘ marks in wp-config and save it.

    If there aren’t any other problems, then that should do it!

    @spartand39 said

    Open that .sql file in Notepad or Notepad++, and do a find > replace all. I believe you’ll want to find localhost, and replace it with your websites url. Doing it via find > replace all will be MUCH faster than doing it bit by bit.

    Never do a find/replace in a database dump. That will break serialized data. You will lose your widgets, theme option and other settings. Use https://interconnectit.com/products/search-and-replace-for-wordpress-databases/

    Thread Starter abassade

    (@abassade)

    Thanks so much all!!!

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

The topic ‘Hosting’ is closed to new replies.