WordPress

Using Permalinks

Default: “Ugly” The default looks like http://example.com/?p=N where N is the Post ID number. It works on all server environments, but it ...Read More

HTTP error when uploading files

1) Add this to your .htaccess file at the root of your WordPress installation just before the # BEGIN WordPress line: SetEnv MAGICK_THREAD_LIMIT 1 OR ...Read More

htaccess Force Require SSL

This will force SSL, and require the exact hostname or else it will redirect to the SSL version. Useful in a /wp-admin/.htaccess file. Replace “...Read More

htaccess | WordPress 3.4 and below

# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes...Read More

htaccess | Multisite WordPress 3.5 and Up

RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/...Read More

htaccess | Basic WP

# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f Rew...Read More

500 Internal Server Error

What causes 500 Internal Server Errors? Here are the three most common reasons: Incorrect file permissons – Most commonly having a file as ̶...Read More

Backup Database In CPanel

Login to your cPanel. Under the files section, click on Backup. Now under the Download a MySQL Database Backup section, click on your database name, i...Read More

Access CPanel Through Your Browser Address Bar

Visit the the following URL to get to your cPanel login: yoursitename.com/cpanel cpanel.yoursitename.com Note! Replace the term yoursitename.com with ...Read More