Categories
Server WordPress

If Your Permalinks Are Not Working

Be sure to have an .htaccess file in the root directory with the following in it:

RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

Categories
WordPress

Shortest Way to Change Your WordPress Password in MySQL

Run this query:

UPDATE `wp_users` SET `user_pass`= MD5('yourpassword') WHERE `user_login`='yourusername';
Categories
WordPress

Shortest Way to Change Your WordPress Password in MySQL

Run this query:

UPDATE `wp_users` SET `user_pass`= MD5('yourpassword') WHERE `user_login`='yourusername';
Categories
WordPress

Sometimes If WordPress is Failing, then Re-Install

Manually update, download a fresh copy and replace all files and folders. Backup everything before just in case.

Design a site like this with WordPress.com
Get started