The latest version of WordPress requires that the PHP version be set to version 5.4 or higher. By default, new InMotion Hosting accounts are set to version PHP version 5.4. However, in some cases, this version may have been changed. For more information, please see how to change the PHP version in cPanel. The 500 Read More >
Product Guides
Be More Successful with our Product Guides
We want you and your business to be successful. This section of the Support Center will give you the tools you need to build and maintain a successful web presence. Learn how to get started with a reseller account, or how to add and configure weForms to your WordPress site. We’ve been in the web hosting business a while and want to share our expertise with you!
Our product guides are manuals that will help you successfully navigate your new hosting plan and the powerful tools that come with it. The guides will help you master the skills you need to create and maintain an online presence easily. Giving you more time to run your business!
Products
Dedicated Hosting
Dedicated Linux servers that are completely customizable to meet your enterprise level needs.
Business Shared Hosting
Quickly launch your web presence with our affordable Business Shared Hosting plans.
Reseller Hosting
Be your own web hosting provider to your customers with our affordable Reseller Hosting plans.
Reseller VPS Hosting
Be your own web hosting provider to your customers with our affordable Reseller VPS Hosting plans.
Managed VPS Hosting
Learn how to get the most out of your Managed VPS Hosting plan using cPanel/WHM or Control Web Panel.
Cloud Server
Learn how to configure and control your unmanaged Cloud Server with our guides.
WordPress Hosting
Our WordPress Hosting on cPanel is fine-tuned to deliver superior performance, security, and provide best-in-class hosting.
Platform InMotion
Our all-in-one WordPress hosting platform is the ultimate choice for website owners who want to simplify their hosting and management process for their high-performance servers.
Minecraft Server
Learn how to manage your Minecraft server instance using the Game Panel.
Backup Manager
Give yourself peace of mind with Backup Manager. Automatically backup your files, databases, email and cPanel account settings on an external server.
Softaculous
Easily install, upgrade, and manage over 400 web applications, site builders, and frameworks with Softaculous. Save time from manually uploading installation files and configuring databases with cPanel.
weForms
InMotion’s #1 recommended forms plugin for WordPress has an easy-to-use interface and pre-built form templates that let you quickly and easily build forms.
Creating a Page or Post in WordPress
When using WordPress, you’ll be working with Pages and Posts very often. For a photographer, you’ll generally want to use a page for your galleries or portfolio. If you want to highlight a specific image or have a set of images that you’ll continually update, a post may be better. There are more differences. Posts Read More >
Creating a Header Image for your WordPress Photo Site
Depending on your theme, you may need to create a header image that goes across the top of your website. Here’s an example: The following tutorial will show you how to create an easy header image or banner using a graphics tool. Login to the WordPress Administrator Dashboard. The first thing you should do is Read More >
Creating a Menu for your WordPress Photography Site
Before you create a menu for your website, you should consider how it will affect your website appearance and navigation. You should also have pages that can be used to build the menu. The following tutorial shows you how to build a menu in the twenty-fourteen theme. Login to the WordPress Administrator Dashboard. Click on Read More >
How to Install WordPress Manually
The easiest way to install WordPress is to use the WordPress Softaculous installation. This is available if you are an InMotion Hosting customer. If you are not, you must perform a manual installation. The following tutorial will walk you through a manual installation of WordPress. Create the Database Before we begin the installation of WordPress Read More >
Remove Comments from a WordPress Page or Post
WordPress was built for interaction with people in mind. All pages and posts can allow discussion in the form of comments. However, there are circumstances when comments are not welcome on a post. For example, the post may simply be an announcement or shared information. The WordPress interface does allow for the comment option to Read More >
Creating a Static Page in WordPress
A website that is used for displaying your photos will have pages that consist primarily of text and images. WordPress calls these pages, static pages. While all pages and posts within WordPress have the option to allow user interaction, static pages can be created with the option for user interactivity removed. The following tutorial will Read More >
How to use WordPress to Create a Photography Website
Install Working with Images Watermark Upload files Create gallery Remove comments As a photographer, there are many choices that one can make in order to create a website. One of most popular choices to create a website on the internet is the freeware known as WordPress. This tutorial will show you how to easily create Read More >
Editing your WordPress wp-config.php file
If you need to make changes to your WordPress installation, such as the site URL, database name, or many other things, you would typically do so within your wp-config.php file. If you are not familiar with the wp-config.php file, it defines the basic configuration of your WordPress site. Think of it as the basic blueprint that WordPress operates on. Read More >
Integrating Elasticsearch with WordPress using ElasticPress
If you’ve ever used Elasticsearch for managing your searchable content, you know that it is incredibly fast and scalable. If you’re a WordPress user, you likely also know that obtaining WP_Query objects can sometimes have a negaitve impact on your resource usage if you have a large database of center to search from. Thankfully, 10up Read More >
Adding a Spotify widget to WordPress with the Spotify Master Plugin
If you are a musician, you are certainly familiar with the streaming music service, Spotify and likely would want to promote your music on there. In this article, we will show you how to embed a link your Spotify profile into WordPress using the Spotify Master plugin. Installing the Spotify Master widget First, log into Read More >
WordPress Critical Security Announcement
As of today, several vulnerabilities were discovered and patched within WordPress. The most critical of these is a cross-site scripting vulnerability which allows malicious comments to be left, and when seen, can execute unauthorized code as the administrator user in versions 3.0-3.9.2. Although 4.0 is not affected by this particular vulnerability, several other vulnerabilities were Read More >
InMotion Hosting Shared Servers and Reseller servers Using SSD
InMotion Hosting servers regularly undergo maintenance and upgrades in order to keep them running optimally. The most recent notable update for InMotion Hosting servers is the move to use SSD (Solid State Drives). The following article lists the servers that have been updated to SSD. Read more about SSD Hosting. Shared Servers and Reseller Servers Read More >
Banning known hack sources from your WordPress site
Preventing malicious attacks before they are even attempted is often one of the best defenses against your website becoming hacked. Of course, there is no replacement for a securely developed site, but a large majority of attacks can be blocked by simply banning malicious sources from your WordPress site. In this article, we will show Read More >
Working with Images for your WordPress PortFolio Website
Workflow File format Image size Watermarking Uploading The most important thing that you as a photographer are going to want out of a website is its ability to showcase your images. The main problem is that the image produced by modern digital cameras are very large. This is important because, the larger the file, the Read More >
How to Create a Gallery in WordPress without a plugin
One of the strengths of WordPress is its ability to quickly handle images within its pages and posts. In fact, you can easily create a gallery to display images with little more than the default theme. No plugins are needed! The following article will walk you through the steps necessary to create a basic image Read More >
Creating a Child Theme in WordPress
If you want to modify a WordPress theme, you should create what’s called a child theme. A child theme allows you to make updates that would not be overwritten by updates to the theme. Theme updates occur on a regular basis, usually in response to updates to WordPress. If the modifications were made to the Read More >
The add_action WordPress function
The add_action function is arguably the most used function in WordPress. Simply put, it allows you to run a function when a particular hook occurs. In this article, we will introduce you to the add_action function and teach you how to use it in your first WordPress plugin. For example, if you wanted to add Read More >
The has_action() WordPress function
When writing a WordPress plugin or theme, you may need to check if an action hook exists before running additional code. In this article, we will show you the has_action WordPress function as well as how to use it. Usage <?php has_action( $tag, $function_to_check ) ?> Parameters The has_action function includes 2 parameters, on of Read More >
Preventing comment spam with the PlusCaptcha plugin for WordPress
Unprotected comment fields can be largely targeted for spam if left defenseless. One solution to ensure that the form is submitted by a real person is to use a captcha. In this article, we will show you how to install and configure the PlusCaptcha plugin on your WordPress site in which your users can complete Read More >