List/Grid Computer Related Subscribe RSS feed of category Computer Related

Calculate week in PHP

Calculate week in PHP

Use this script to calculate a week in PHP <?php $date = mktime(0, 0, 0, 01,27, 2011); $week = (int)date(‘W’, $date); ?>

Fix wordpress plugin profile pic error

Fix wordpress plugin profile pic error

The error of the profile pic has been fix. The error was in the new version of wordpress is not upload the profile picture. Solution to resolve this problem Open… Read more »

Add a trailing slash to requested urls

Add a trailing slash to requested urls

Without trailing slash URL shows URL count as a page and with trailing slash it’s count as directory. Search engine gives the high priority to directory in comparision of page…. Read more »

How to redirect my website to be opened through HTTPS?

How to redirect my website to be opened through HTTPS?

In order to redirect your website to be opened through HTTPS, you should add the following rewrite rule in your .htaccess file:  RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule .* https://www.domain.com/%{REQUEST_URI}… Read more »

How to show the size of folder using PHP with progressbar

How to show the size of folder using PHP with progressbar

To show the details of folder, first of all we check that, it is folder of file. If it is a folder then we count the number of files present… Read more »

© 2012 Sumit Bansal. All rights reserved. XHTML / CSS Valid.