PHP short_open_tag = On should not be used
After a fresh installation you could find that PHP short_open_tag disabled by default in php.ini file.   You can check by using phpinfo() PHP function. Under PHP Core setting you can find as below   Directive Local Value Master Value short_open_tag Off Off   If “short_open_tag” is found off in your php.ini file then you…

How to figure out whether PHP extension is loaded or not on your page?   Usually in phpinfo() doesn’t show you all the loaded extensions in one location, it has got a separate section for each loaded extension where it shows all of its variables, file paths, etc so if there is no section for…

PHP.ini is a configuration file that is used to customize behavior of PHP at runtime.   This enables you to easy administration in Apache web server using configuration files. The settings in which upload directory, register global variables, display errors, log errors, max uploading size setting, maximum time to execute a script, libraries available and… (1 comment)

Apache Server Configuration File Apache has a great number of directives which you can set and manipulate in order to set your server’s behavior.   Every server administrator will often update some of the directives, it all depends on their particular needs. Every person working with the Apache server is likely to encounter these directives.…

A .htaccess (hypertext access) file is a configuration file for use on web servers running the Apache Web Server.It is a directory-level configuration file,as the name .htaccess reflects – allow per-directory access control, e.g requiring a password to access the content.   When a .htaccess file is placed in a directory or folder, then the… (2 comments)