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)

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)