2.5.13

Wordpress Installation

WordPress is a popular Blogging software, you can use to create a beautiful website or blog.
For enhancements of wordpress software, we can use plug-ins and themes for UI Design.

1. Download wordpress script from wordpress.org
2. extract the zip  / tar files in to the root folder (xampp->htdocs / wamp->www)
3. create a database for this application
4. Start the wordpress installation from Browser URL
5. It will show 'create configuraiton file' option, click on the button to create the file.
6. Enter database name, database username and password details to install the wordpress.
7. Enter the admin user details, to access admin system from back end.
* admin section is useful to manage the site functionality,  users and UI Design etc.,

Finally the installation is completed, you are ready to post the blog articles.

PHP Latest Version 5.4 features

PHP Latest Version 5.4 features
 
These are new features supported by php 5.4
  • Support for traits has been added.
  • Short array syntax has been added, e.g. $a = [1, 2, 3, 4]; or $a = ['one' => 1, 'two' => 2, 'three' => 3, 'four' => 4];.
  • Function array dereferencing has been added, e.g. foo()[0].
  • Closures now support $this.
  • Class member access on instantiation has been added, e.g. (new Foo)->bar().
  • Class::{expr}() syntax is now supported.
  • Binary number format has been added, e.g. 0b001001101.
  • Improved parse error messages and improved incompatible arguments warnings.
  • The session extension can now track the upload progress of files.
  • Built-in development web server in CLI mode.