This is a page for that and all its other awesomeness that it packs.
Below you can find Tips, Tricks, and Even some Help with your WordPress Site or Install
If your here to edit your wp-config Click this button >
You can make changes to your database through SSH, which you can use update your WordPress password.
Warning: The information in this article is advanced material we make available as a courtesy. Please be advised that you are responsible for properly following the procedures below. Customer Support can't assist with these topics.
You should always backup your site before performing any changes.
Connect to your server or shared hosting account with SSH
Connect to MySQL using the following command:
mysql -u username -h host database -P port -p
Enter the database information from your database as follows:
username is your database username
host is your database hostname or IP address
database is the database name
port is the port MySQL is running on (by default this is 3306)
When prompted, enter the password for that MySQL user.
Enter the following MySQL command to switch to your WordPress database:
use database
database is the database name
Enter the following command to see a list of the tables in the database. Make notes of the table containing "_users".
show tables;
Enter the following command to see the contents of your "users" table. Make note of the number in the "ID" column for the user you want to update.
SELECT * FROM table;
table is the name of your users table.
Use the following command to set your new password.
UPDATE table SET user_pass = MD5('password') WHERE ID = id;
table is the name of the users table.
password is your new password
id is the number you located in Step 7
You can now login with your new password
Just recently I ran into an issue where colleague and I spent quite a bit of time on a Technical Issue a ser was having
To get this to work (FINALLY!) I had to install an SSH/SFTP Plugin
SSH SFTP Updater Support
Once I installed the plugin I followed the steps it provided for setting the FS_Method as 'ssh2' in wp-config.php BUT I also added the credentials to make sure WP did not ask for it.
I added the following to the wp-config.php right after the WP_DEBUG:
define( 'WP_DEBUG', false );
define('FS_METHOD', 'ssh2');
define('FTP_USER', 'FTP-USER-HERE');
define('FTP_PASS', '*USERS-FTP-PASS*');
define('FTP_HOST', 'FTP-HOSTNAME:SSH-PORT');
EXAMPLE:
define( 'WP_DEBUG', false );
define('FS_METHOD', 'ssh2');
define('FTP_USER', 'fixstuff');
define('FTP_PASS', '@lway$f!x!ngTh!n@$');
define('FTP_HOST', 'fixyourwordpress.com:22');
I was then able to install plugins with Ease on the WP 4 Site.
I wanted to make note of this incase someone had/has this issue and somhow stumbled on this page.
I like WordPress and I like to think I know most the ins, out, and even in betweens, but this one near had me ready to learn Drupal..
I'm no longer mind boggled!! Thanks for the educational challenge BOSS!
<FilesMatch "xmlrpc.php">
order deny,allow
deny from all
allow from xxx.xxx.xxx.xxx
</FilesMatch>
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
More on this to come!
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi.
Not Sponsored by
YET.....