by H.Thirukkumaran | Aug 8, 2017 | tip of the day
If you are developing a CMS system make use of HTML5 semantic tags like article, aside, header, footer and others. Design properties for the semantic elements and show the users the properties while editing these contents.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use apt-cache search <package name> command to see if the package is there in list of repositories configured in your Ubuntu instance. Once you find the package then install it using apt-get install <package name>. Eg: apt-get install apache2
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use service <service name> status command to check the status of the service. This is useful to check status of Apache, Mysql services before developing applications using them.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
In Windows IIS C:\Inetpub\wwwroot is the default root folder of the IIS web server. The equivalent for that in Apache is /var/www/html. If your web application is outside of this directory then create a symbolic link to that directory to a path in /var/www/html.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
Once LAMP stack in installed and configured write a small PHP web page that calls phpinfo(); function and place it in /var/www/html folder and call it in browser http://localhost/index.php to verify the version and other details of PHP framework installed.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
To change the default startup document in Apache, edit the DirectoryIndex directive in httpd.conf file. The default document will be index.html. You can change the order as per your needs
Recent Comments