Showing posts with label PHP Tutorials. Show all posts
Showing posts with label PHP Tutorials. Show all posts

Tuesday, 10 February 2015

[How To] Add FTP details to WordPress Automatically

On some web server, we need to put username, password and server address when we need to enable automatically update our WordPress, plugin or themes. This is really bad if we must input this field each time updated.

Now I will show you How To Automatically added FTP detail on WordPress.

All need to do is put all parameters in our wp-config.php and all the field will be automatically passed by Web Server. Follow this guide how to do it.





  1. Open your wp-config.php via FTP Client or cPanel and use you favorite editor to edit it
  2. Add this code
    1
    2
    3
    4
    5
    define('FTP_HOST''Your_FTP_Hosting');
    define('FTP_USER''Your_FTP_Username');
    define('FTP_PASS', 'Your_FTP_Password);
    //If you use SSL connection, set this to true
    define('FTP_SSL', false);
  3. Done, now you are ready to auto update your plugins and themes

Introduction To PHP - A Complete PHP Tutorial for Absolute Beginners (Video)

This is an introduction to PHP. It is a part of a series of complete tutorials on learning PHP as an absolute beginner. If you're interested in becoming a professional PHP developer and don't have any prior programming experience these tutorials might help you on the fast track to becoming a professional PHP programmer.

Tutorial 1:

In this tutorial I will cover the basics such as what is PHP, some past, present and future notes on PHP and what it's used for as well as how it works. We'll also touch on a few topics to be discussed in further detail in the coming tutorials. Please feel free to leave your comments, questions, suggestions.



Introduction To PHP - A Complete PHP Tutorial for Absolute Beginners (Video)