Day: April 29, 2017

Setting Up ReCaptcha in Joomla 3.1

Log into your Joomla 3.0 admin In your Global Configuration settings, set ReCaptcha as your default captcha plugin (located in the Global Configuratio...Read More

Logging Into The Joomla 3.1 Administrator Dashboard

Visit your Joomla 3 site’s homepage, and add /administrator to the end of the URL. If you installed Joomla to http://domain.com, then you’...Read More

Fixing .htaccess Generation Issues Permalink Problems

Fixing .htaccess Generation Issues If your installation of WordPress does not generate a .htaccess file or if it does not write the new rules onto you...Read More

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