cPanel – setup email on an Android device

Bloom Email Optin Plugin
  1. Tap the Applications icon on the home screen
  2. Tap Email
  3.  Enter your email address and password and tap Manual setup
  4. Tap the account type
  5. Enter you account information and tap Next
    1. In the Username field, enter your email address
    2. In the Password field, enter the password for the email account
    3. In the IMAP server field, enter the domain for your email account
    4. In the security field, select SSL/TLS this setting will automatically set the correct port for you
  6. Enter your server information and tap Next
    1. In the SMTP server field, enter the domain for your email account
    2. In the Security field, select SSL/TLS, this setting will automatically set the port for you
    3. Select Require sign-in checkbox
    4. In the Username field, enter your email address
    5. in the password field, enter the password for your email account
  7. Select your email preferences and tap Next
  8. Enter your account and display names, and tap Next
  9. Now if you have entered everything in correctly your email will now be working on your Android device

 

Windows 7 – Copy file to flash drive

 

  1. Plug the flash drive into the computer
  2. Find the files that you would like to copy
  3. Right click on the file and select copy
  4. Open the start menu and click on computer
  5. Double click on the removable disk that is associated with the flash drive
  6. Right click in the white area of the window, then select paste

WordPress – Change the site URL in the database

For this tutorial we will be using cPanel for the web hosting platform, most of the steps will be the same on any of the hosting platforms that you will be using.

1. Log on to your cpanel server

2. Go down to the database section and click on phpMyadmin

3. Click on the link to your databases

4. All your databases will now be listed, select the database for the site that you wish to change the URL for

5. All the tables for that database will now be shown  on your screen

6. From this list look for wp_options

7. Click on browse next to wp_options to open the table

8. Under the field option_name look for siteurl and click edit

9. Now the edit field window will open

10. In the input box for option_value, change the URL to the new address

11. Verify that the URL that you have entered is correct and theirs no spelling mistakes, once to happy click Go to save the new URL

12. Now you should have been returned to your wp_options table

13. Look for the home field in the table and click edit

14. In the input box for option_value, change the URL to the new address

15. Verify that the URL that you have entered is correct and theirs no spelling mistakes, once to happy click Go to save the new URL

 

Sentora – Change max upload size on the server (Ubuntu)

Bloom Email Optin Plugin

For this easy tutorial you will need to have administrator access to the server its self .

 

1. Login to the server eather by SSH or locally on the host.

2. Change the directory to etc/php/apache2

cd /etc/php/apache2

3. Open the file php.ini

nano php.ini

4. Change the valve on the line contaning post_max_size =
5. Close and save the php.ini file
6. Now your Server runing Sentora should allow you to upload larger files up to the size you have now allowed.

WordPress – Create admin account via the database

Bloom Email Optin Plugin

 

If your WordPress site gets hacked and your password gets changed or you forget your administrator password dont fear as its easy to create a new admin user account from the database in this tutorial we will show you how easy this is with your web hosting control panel and PHPMyAdmin.

 

In this tutorial the we hosting control panel we will be using is cPanel.

If your website is being hosted with a different panel such as Sentora or Plesk please search our site for tutorial on how to access PHPMyAdmin on that panel.

 

1. Login to your cPanel account

2. Go to the Databases section and click on “PHPMyAdmin”

3. Select your WordPress Database

4. Go to the wp_users table and click on “insert”

5. Now fill in the table entry

  • ID – Keep the value of this field empty (the value will be automatically assigned)
  • user_login – insert the username you want to use
  • user_pass – add a password for the account. Select MD5 in the functions menu
  • user_nicename – you can leave this field empty
  • user_email – add the email address you want to use for this account.
  • user_url – you can leave this field empty
  • user_registered – select the date/time for when this user is registered
  • user_status – set this to 0
  • display_name – leave this field empty for now

6. Click on the “Go” Button, if successful you should receive a success message

7. Now you should be back at the wp_users table where you can see all the entries for this table, take note of value if the “ID” field as we will need it in the next step

8. Go the the wp_usermeta and click “insert”

9. Use the following values for the new table entry

  • unmeta_id – Keep the value of this field empty (the value will be automatically assigned)
  • user_id – This is the ID of the user we created in the previous step.
  • meta_key – Use wp_capabilities
  • meta_value – Use the following value for this field:  a:1:{s:13:”administrator”;s:1:”1″;

10. Click on the “Go” Button, if successful you should receive a success message. now you should be able to login to you WordPress site with the new account that you just set up